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