KI-Kunst-Kirsten-Kloeckner/KIKunstKirstenKlöckner/Data/ChatGPT.cs

10 lines
258 B
C#
Raw Permalink Normal View History

2023-11-10 13:57:21 +01:00
using OpenAI_API.Models;
namespace KIKunstKirstenKlöckner.Data;
2023-10-11 14:41:43 +02:00
public class ChatGPT
{
2024-06-30 13:38:37 +02:00
public static Model GPT4Turbo => new Model("gpt-4-turbo") { OwnedBy = "openai" };
2024-06-30 14:16:16 +02:00
public static Model GPT4o => new Model("gpt-4o") { OwnedBy = "openai" };
2023-10-11 14:41:43 +02:00
}