forked from SciSharp/BotSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGpt4xModelConstants.cs
More file actions
18 lines (17 loc) · 921 Bytes
/
Gpt4xModelConstants.cs
File metadata and controls
18 lines (17 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace BotSharp.Abstraction.Models;
public static class Gpt4xModelConstants
{
public const string GPT_4o = "gpt-4o";
public const string GPT_4o_2024_11_20 = "gpt-4o-2024-11-20";
public const string GPT_4o_Mini = "gpt-4o-mini";
public const string GPT_4_1 = "gpt-4.1";
public const string GPT_4_1_Mini = "gpt-4.1-mini";
public const string GPT_4_1_Nano = "gpt-4.1-nano";
public const string GPT_4o_Mini_Realtime_Preview = "gpt-4o-mini-realtime-preview";
public const string GPT_4o_Realtime_Preview = "gpt-4o-realtime-preview";
public const string GPT_4o_Mini_Search_Preview = "gpt-4o-mini-search-preview";
public const string GPT_4o_Mini_Transcribe = "gpt-4o-mini-transcribe";
public const string GPT_4o_Transcribe = "gpt-4o-transcribe";
public const string GPT_4o_Mini_Tts = "gpt-4o-mini-tts";
public const string GPT_4o_Search_Preview = "gpt-4o-search-preview";
}