Unreal OpenAI API 1.0.0
ModelTypes.h
1// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "ModelTypes.generated.h"
7
8UENUM(BlueprintType)
9enum class EAllModelEnum : uint8
10{
11 Whisper_1,
12 GPT_3_5_Turbo,
13 GPT_3_5_Turbo_16k,
14 GPT_3_5_Turbo_Instruct_0914,
15 GPT_3_5_Turbo_Instruct,
16 Text_Embedding_Ada_002,
17 Babbage_002,
18 Davinci_002,
19 GPT_4,
20 GPT_4_0613,
21 GPT_4_0314,
22 DALL_E_2,
23 DALL_E_3,
24 GPT_4_1106_Preview,
25 GPT_3_5_Turbo_1106,
26 TTS_1,
27 TTS_1_HD,
28 TTS_1_1106,
29 TTS_1_HD_1106,
30 Text_Embedding_3_Large,
31 GPT_4_32K_0314,
32 GPT_3_5_Turbo_0125,
33 Text_Embedding_3_Small,
34 GPT_4_0125_Preview,
35 GPT_4_Turbo_Preview,
36 GPT_4O_2024_05_13,
37 GPT_4O,
38 GPT_4_Turbo_2024_04_09,
39 GPT_4_Turbo,
40 GPT_4O_Mini,
41 GPT_4O_Mini_2024_07_18,
42 ChatGPT_4O_Latest,
43 GPT_4O_2024_08_06,
44 O1_Preview,
45 O1_Preview_2024_09_12,
46 O1_Mini,
47 O1_Mini_2024_09_12,
48 GPT_4O_Audio_Preview,
49 GPT_4O_Audio_Preview_2024_10_01,
50 GPT_4O_Realtime_Preview,
51 GPT_4O_Realtime_Preview_2024_10_01,
52 GPT_4O_Mini_Realtime_Preview_2024_12_17,
53 GPT_4O_Mini_Realtime_Preview,
54 GPT_4O_Mini_Audio_Preview_2024_12_17,
55 GPT_4O_Mini_Audio_Preview,
56 Omni_Moderation_Latest,
57 Omni_Moderation_2024_09_26,
58 GPT_4O_Audio_Preview_2024_12_17,
59 O1,
60 O1_2024_12_17,
61 O3_Mini_2025_01_31,
62 O3_Mini,
63 GPT_4O_2024_11_20,
64 GPT_4O_Realtime_Preview_2024_12_17,
65 GPT_3_5_Turbo_16K_0613,
66 GPT_4_5_Preview,
67 GPT_4_5_Preview_2025_02_27
68};
69
70UENUM(BlueprintType)
71enum class EMainModelEnum : uint8
72{
73 GPT_4O,
74 GPT_4,
75 GPT_4_1106_Preview,
76 GPT_4_0613,
77 GPT_4_0314,
78 GPT_4O_Mini,
79 GPT_3_5_Turbo,
80 GPT_3_5_Turbo_Instruct,
81 O1_Mini,
82 O1,
83 O3_Mini,
84 GPT_4_5_Preview
85};
86
88// REQUEST TYPES
90
91// ... nothing
92
94// RESPONSE TYPES
96
97USTRUCT(BlueprintType)
99{
100 GENERATED_BODY()
104 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
105 FString ID;
106
110 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
111 int32 Created{};
112
116 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
117 FString Object;
118
122 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
123 FString Owned_By;
124};
125
126USTRUCT(BlueprintType)
128{
129 GENERATED_BODY()
130
131 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
132 FString Object;
133
134 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
135 TArray<FOpenAIModel> Data;
136};
137
138USTRUCT(BlueprintType)
140{
141 GENERATED_BODY()
142};
143
144USTRUCT(BlueprintType)
146{
147 GENERATED_BODY()
148
149 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
150 FString Id;
151
152 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
153 FString Object;
154
155 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
156 FString Deleted;
157};
Definition: OpenAI.Build.cs:6
Definition: ModelTypes.h:146
Definition: ModelTypes.h:128
Definition: ModelTypes.h:99
Definition: ModelTypes.h:140