Small fixes + use utf-8 in projects
This commit is contained in:
@ -4,5 +4,5 @@ namespace KIKunstKirstenKlöckner.Data;
|
||||
|
||||
public class ChatGPT
|
||||
{
|
||||
public static Model GPT4Turbo => new Model("gpt-4-1106-preview") { OwnedBy = "openai" };
|
||||
public static Model GPT4Turbo => new Model("gpt-4-turbo") { OwnedBy = "openai" };
|
||||
}
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
{
|
||||
if (list.Count == 0)
|
||||
{
|
||||
throw new ArgumentException("List cannot be emtpy: ", nameof(list));
|
||||
yield break;
|
||||
}
|
||||
if (n <= 0)
|
||||
{
|
||||
|
||||
@ -15,7 +15,6 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="wwwroot\NewFolder\" />
|
||||
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@
|
||||
}
|
||||
</style>
|
||||
|
||||
<PageTitle>AiArt</PageTitle>
|
||||
<PageTitle>Wunschbild Generator</PageTitle>
|
||||
|
||||
<section class="about_section" style="background-image: url('images/5KeineAngstvorFehlern2014.jpeg'); background-size: cover; background-repeat: no-repeat; background-blend-mode:lighten">
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
using DataAccess.Data;
|
||||
using DataAccess.DbAccess;
|
||||
using KIKunstKirstenKl<EFBFBD>ckner.Data;
|
||||
using KIKunstKirstenKlöckner.Data;
|
||||
using Radzen;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
Reference in New Issue
Block a user