Small fixes + use utf-8 in projects

This commit is contained in:
Simon Lübeß
2024-06-30 13:38:37 +02:00
parent 134d9399f7
commit 0f738b2264
15 changed files with 118 additions and 5 deletions

View File

@ -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" };
}

View File

@ -6,7 +6,7 @@
{
if (list.Count == 0)
{
throw new ArgumentException("List cannot be emtpy: ", nameof(list));
yield break;
}
if (n <= 0)
{

View File

@ -15,7 +15,6 @@
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\NewFolder\" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.1" />
</ItemGroup>

View File

@ -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">

View File

@ -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);