Unreal OpenAI API 1.0.0
CommonTypes.h
1// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "ToolsTypes.h"
7#include "CommonTypes.generated.h"
8
9USTRUCT(BlueprintType)
11{
12 GENERATED_BODY()
13
14 UPROPERTY(BlueprintReadWrite, Category = "OpenAI")
15 FString APIKey{};
16
17 UPROPERTY(BlueprintReadWrite, Category = "OpenAI")
18 FString OrganizationID{};
19
20 UPROPERTY(BlueprintReadWrite, Category = "OpenAI")
21 FString ProjectID{};
22
23 bool IsEmpty() const { return APIKey.IsEmpty() || OrganizationID.IsEmpty() || ProjectID.IsEmpty(); }
24};
25
26USTRUCT(BlueprintType)
28{
29 GENERATED_BODY()
30
31 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
32 FString RawContent{};
33
34 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
35 bool WasError{false};
36};
37
38UENUM(BlueprintType)
39enum class EOpenAIHttpHeaderType : uint8
40{
41 XRequestId = 0,
42 OpenAIProcessingMS,
43 OpenAIOrganization,
44 OpenAIVersion
45};
46
47USTRUCT(BlueprintType)
49{
50 GENERATED_BODY()
51
52 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
53 TArray<FString> HttpHeaders{};
54};
55
56/*
57 @todo: add more errors https://platform.openai.com/docs/guides/error-codes
58*/
59UENUM(BlueprintType)
60enum class EOpenAIResponseError : uint8
61{
62 InvalidAPIKey = 0,
63 NetworkError,
64 ModelNotFound,
65 InsufficientQuota,
66 InvalidLanguageFormat,
67 Unknown
68};
69
70UENUM(BlueprintType)
71enum class ERole : uint8
72{
73 System,
74 User,
75 Assistant,
76 Function,
77 Tool
78};
79
80UENUM(BlueprintType)
81enum class EOpenAIFinishReason : uint8
82{
83 Stop = 0,
84 Length,
85 Content_Filter,
86 Tool_Calls,
87 Null
88};
89
90namespace OpenAI
91{
92using ServiceSecrets = TArray<TTuple<FString, FString>>;
93using QueryPairs = TArray<TTuple<FString, FString>>;
94
95} // namespace OpenAI
Definition: OpenAI.Build.cs:6
Definition: CommonTypes.h:11
Definition: CommonTypes.h:28
Definition: CommonTypes.h:49