5#include "CoreMinimal.h"
6#include "Kismet/BlueprintFunctionLibrary.h"
7#include "Provider/Types/AllTypesHeader.h"
8#include "OpenAIFuncLib.generated.h"
16 UFUNCTION(BlueprintPure, Category =
"OpenAI | Model")
17 static FString OpenAIAllModelToString(EAllModelEnum Model);
19 UFUNCTION(BlueprintPure, Category =
"OpenAI | Model")
20 static FString OpenAIMainModelToString(EMainModelEnum Model);
22 UFUNCTION(BlueprintPure, Category =
"OpenAI | Model")
23 static FString OpenAIModelToString(
const FOpenAIModel& OpenAIModel);
25 UFUNCTION(BlueprintPure, Category =
"OpenAI | Moderation")
26 static FString OpenAIModerationModelToString(EModerationsModelEnum Model);
28 UFUNCTION(BlueprintPure, Category =
"OpenAI | Moderations")
31 UFUNCTION(BlueprintPure, Category =
"OpenAI | Model | Vision")
32 static bool ModelSupportsVision(
const FString& Model);
34 UFUNCTION(BlueprintPure, Category =
"OpenAI| Audio")
35 static FString OpenAIAudioModelToString(EAudioModel Model);
37 UFUNCTION(BlueprintPure, Category =
"OpenAI| Audio")
38 static FString OpenAITTSModelToString(ETTSModel Model);
40 UFUNCTION(BlueprintPure, Category =
"OpenAI| Audio")
41 static FString OpenAIVoiceToString(EVoice Voice);
43 UFUNCTION(BlueprintPure, Category =
"OpenAI| Audio")
44 static FString OpenAITTSAudioFormatToString(ETTSAudioFormat Format);
46 UFUNCTION(BlueprintPure, Category =
"OpenAI | Audio")
47 static FString OpenAIAudioTranscriptToString(ETranscriptFormat TranscriptFormat);
49 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
50 static FString OpenAIImageModelToString(EImageModelEnum Model);
52 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
53 static EImageModelEnum StringToOpenAIImageModel(
const FString& Model);
55 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
56 static FString OpenAIImageSizeDalle2ToString(EImageSizeDalle2 ImageSize);
58 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
59 static EImageSizeDalle2 StringToOpenAIImageSizeDalle2(
const FString& ImageSize);
61 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
62 static FString OpenAIImageSizeDalle3ToString(EImageSizeDalle3 ImageSize);
64 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
65 static EImageSizeDalle3 StringToOpenAIImageSizeDalle3(
const FString& ImageSize);
67 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
68 static FString OpenAIImageFormatToString(EOpenAIImageFormat ImageFormat);
70 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
71 static EOpenAIImageFormat StringToOpenAIImageFormat(
const FString& ImageFormat);
73 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
74 static FString OpenAIImageQualityToString(EOpenAIImageQuality ImageQuality);
76 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
77 static EOpenAIImageQuality StringToOpenAIImageQuality(
const FString& ImageQuality);
79 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
80 static FString OpenAIImageStyleToString(EOpenAIImageStyle ImageStyle);
82 UFUNCTION(BlueprintPure, Category =
"OpenAI | Image")
83 static EOpenAIImageStyle StringToOpenAIImageStyle(
const FString& ImageStyle);
85 UFUNCTION(BlueprintPure, Category =
"OpenAI | Chat")
86 static FString OpenAIChatResponseFormatToString(EChatResponseFormat ChatResponseFormat);
88 UFUNCTION(BlueprintPure, Category =
"OpenAI | Chat")
89 static FString OpenAIMessageContentTypeToString(EMessageContentType MessageContentType);
91 UFUNCTION(BlueprintPure, Category =
"OpenAI | Chat")
92 static FString OpenAIServiceTierToString(EServiceTier ServiceTier);
94 UFUNCTION(BlueprintPure, Category =
"OpenAI | Embeddings")
95 static FString OpenAIEmbeddingsEncodingFormatToString(EEmbeddingsEncodingFormat EmbeddingsEncodingFormat);
97 UFUNCTION(BlueprintPure, Category =
"OpenAI | File")
98 static FString OpenAIUploadFilePurposeToString(EUploadFilePurpose UploadFilePurpose);
100 UFUNCTION(BlueprintPure, Category =
"OpenAI | Batch")
101 static FString OpenAIBatchEndpointToString(EBatchEndpoint BatchEndpoint);
103 UFUNCTION(BlueprintPure, Category =
"OpenAI | Batch")
104 static FString OpenAIBatchCompletionWindowToString(EBatchCompletionWindow BatchCompletionWindow);
106 UFUNCTION(BlueprintPure, Category =
"OpenAI | Upload")
107 static FString OpenAIUploadStatusToString(EUploadStatus UploadStatus);
109 UFUNCTION(BlueprintPure, Category =
"OpenAI | Upload")
110 static FString OpenAIAssistantToolTypeToString(EAssistantToolType AssistantToolType);
113 UFUNCTION(BlueprintPure, Category =
"OpenAI | Common")
114 static FString OpenAIRoleToString(ERole Role);
116 UFUNCTION(BlueprintPure, Category =
"OpenAI | Common")
117 static FString OpenAIFinishReasonToString(EOpenAIFinishReason FinishReason);
119 UFUNCTION(BlueprintPure, Category =
"OpenAI | Common")
120 static EOpenAIFinishReason StringToOpenAIFinishReason(
const FString& FinishReason);
122 UFUNCTION(BlueprintPure, Category =
"OpenAI | Common")
123 static ERole StringToOpenAIRole(
const FString& Role);
125 UFUNCTION(BlueprintPure, Category =
"OpenAI | Common")
126 static FString OpenAIHeaderTypeToString(EOpenAIHttpHeaderType Type);
128 UFUNCTION(BlueprintPure, Category =
"OpenAI | Common")
132 UFUNCTION(BlueprintPure, Category =
"OpenAI | Error")
133 static EOpenAIResponseError GetErrorCode(
const FString& RawError);
135 UFUNCTION(BlueprintPure, Category =
"OpenAI | Error")
136 static FString GetErrorMessage(
const FString& RawError);
138 UFUNCTION(BlueprintPure, Category =
"OpenAI | Error")
139 static FString ResponseErrorToString(EOpenAIResponseError Code);
142 UFUNCTION(BlueprintPure, Category =
"OpenAI | Base64")
143 static FString WrapBase64(
const FString& Base64String);
145 UFUNCTION(BlueprintPure, Category =
"OpenAI | Base64")
146 static FString UnWrapBase64(
const FString& Base64String);
148 UFUNCTION(BlueprintPure, Category =
"OpenAI | Base64")
149 static FString FilePathToBase64(
const FString& FilePath);
158 UFUNCTION(BlueprintPure, Category =
"OpenAI | API")
159 static FOpenAIAuth LoadAPITokensFromFile(
const FString& FilePath);
161 UFUNCTION(BlueprintPure, Category =
"OpenAI | API")
162 static FOpenAIAuth LoadAPITokensFromFileOnce(
const FString& FilePath);
165 static FString BoolToString(
bool Value);
166 static FString RemoveWhiteSpaces(
const FString& Input);
167 static OpenAI::ServiceSecrets LoadServiceSecretsFromFile(
const FString& FilePath);
168 static bool LoadSecretByName(
const OpenAI::ServiceSecrets& Secrets,
const FString& SecretName, FString& SecretValue);
169 static FString MakeURLWithQuery(
const FString& URL,
const OpenAI::QueryPairs& Args);
Definition: OpenAIFuncLib.h:12
Definition: ModerationTypes.h:126
Definition: CommonTypes.h:11
Definition: ModelTypes.h:99