Unreal OpenAI API 1.0.0
SpeechAction.h
1// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3#pragma once
4
5#include "Kismet/BlueprintAsyncActionBase.h"
6#include "Provider/Types/AudioTypes.h"
7#include "Provider/Types/CommonTypes.h"
8#include "Misc/Paths.h"
9#include "SpeechAction.generated.h"
10
11USTRUCT(BlueprintType)
13{
14 GENERATED_BODY()
15
16 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
17 FSpeechResponse Response;
18
19 UPROPERTY(BlueprintReadOnly, Category = "OpenAI")
20 FString FilePath{};
21};
22
23USTRUCT(BlueprintType)
25{
26 GENERATED_BODY()
27
28 UPROPERTY(BlueprintReadWrite, Category = "OpenAI")
29 FString AbsolutePath{FPaths::ProjectPluginsDir().Append("OpenAI/Saved")};
30
31 UPROPERTY(BlueprintReadWrite, Category = "OpenAI")
32 FString BaseName{"speech"};
33
34 UPROPERTY(BlueprintReadWrite, Category = "OpenAI")
35 bool AppendDate{true};
36
37 UPROPERTY(BlueprintReadWrite, Category = "OpenAI")
38 bool SaveToFile{true};
39};
40
41DECLARE_DYNAMIC_MULTICAST_DELEGATE_ThreeParams(
42 FOnSpeech, const FSpeechPayload&, Response, const FOpenAIResponseMetadata&, ResponseMetadata, const FOpenAIError&, RawError);
43
44class UOpenAIProvider;
45
46UCLASS()
47class USpeechAction : public UBlueprintAsyncActionBase
48{
49 GENERATED_BODY()
50
51public:
52 UPROPERTY(BlueprintAssignable)
53 FOnSpeech OnCompleted;
54
55 virtual void Activate() override;
56
57private:
62 UFUNCTION(BlueprintCallable, meta = (BlueprintInternalUseOnly = "true"), Category = "OpenAI | Audio")
64 const FSpeech& Speech, const FOpenAIAuth& Auth, const FString& URLOverride, const FSpeechSettings& Settings);
65
66 void TryToOverrideURL();
67
68 void OnCreateSpeechCompleted(const FSpeechResponse& Response, const FOpenAIResponseMetadata& ResponseMetadata);
69 void OnRequestError(const FString& URL, const FString& Content);
70
71private:
72 UPROPERTY()
73 TObjectPtr<UOpenAIProvider> Provider;
74
75 FSpeech Speech;
76 FOpenAIAuth Auth;
77 FString URLOverride{};
78 FSpeechSettings Settings;
79};
Definition: OpenAIProvider.h:45
void CreateSpeech(const FSpeech &Speech, const FOpenAIAuth &Auth)
Definition: OpenAIProvider.cpp:165
Definition: SpeechAction.h:48
Definition: CommonTypes.h:11
Definition: CommonTypes.h:28
Definition: CommonTypes.h:49
Definition: AudioTypes.h:133
Definition: SpeechAction.h:13
Definition: AudioTypes.h:325
Definition: SpeechAction.h:25