Unreal OpenAI API
1.0.0
Source
OpenAI
Public
BlueprintAsyncActions
Files
RetrieveFileContentAction.h
1
// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3
#pragma once
4
5
#include "Kismet/BlueprintAsyncActionBase.h"
6
#include "Provider/Types/FileTypes.h"
7
#include "Provider/Types/CommonTypes.h"
8
#include "RetrieveFileContentAction.generated.h"
9
10
DECLARE_DYNAMIC_MULTICAST_DELEGATE_ThreeParams(FOnRetrieveFileContent,
const
FRetrieveFileContentResponse
&, Response,
11
const
FOpenAIResponseMetadata
&, ResponseMetadata,
const
FOpenAIError
&, RawError);
12
13
class
UOpenAIProvider
;
14
15
UCLASS()
16
class
URetrieveFileContentAction
: public UBlueprintAsyncActionBase
17
{
18
GENERATED_BODY()
19
20
public
:
21
UPROPERTY(BlueprintAssignable)
22
FOnRetrieveFileContent OnCompleted;
23
24
virtual
void
Activate()
override
;
25
26
private
:
31
UFUNCTION(BlueprintCallable, meta = (BlueprintInternalUseOnly =
"true"
), Category =
"OpenAI | Files"
)
32
static
URetrieveFileContentAction
*
RetrieveFileContent
(
const
FString& FileID,
const
FOpenAIAuth
& Auth,
const
FString& URLOverride);
33
34
void
TryToOverrideURL(
UOpenAIProvider
* Provider);
35
36
void
OnRetrieveFileContentCompleted(
const
FRetrieveFileContentResponse
& Response,
const
FOpenAIResponseMetadata
& ResponseMetadata);
37
void
OnRequestError(
const
FString& URL,
const
FString& Content);
38
39
private
:
40
FOpenAIAuth
Auth;
41
FString FileID;
42
FString URLOverride{};
43
};
UOpenAIProvider
Definition:
OpenAIProvider.h:45
UOpenAIProvider::RetrieveFileContent
void RetrieveFileContent(const FString &FileID, const FOpenAIAuth &Auth)
Definition:
OpenAIProvider.cpp:261
URetrieveFileContentAction
Definition:
RetrieveFileContentAction.h:17
FOpenAIAuth
Definition:
CommonTypes.h:11
FOpenAIError
Definition:
CommonTypes.h:28
FOpenAIResponseMetadata
Definition:
CommonTypes.h:49
FRetrieveFileContentResponse
Definition:
FileTypes.h:158