Unreal OpenAI API 1.0.0
ChatGPT.h
1// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UObject/NoExportTypes.h"
7#include "Provider/Types/CommonTypes.h"
8#include "Provider/Types/Chat/ChatCommonTypes.h"
9#include "Logging/LogVerbosity.h"
10#include "Runtime/CoreUObject/Public/Templates/SubclassOf.h"
11#include "ChatGPT.generated.h"
12
13class UOpenAIProvider;
14class UBaseService;
15
16DECLARE_MULTICAST_DELEGATE(FOnChatGPTRequestCompleted);
17DECLARE_MULTICAST_DELEGATE_TwoParams(FOnChatGPTRequestUpdated, const FMessage&, bool);
18
19UCLASS()
20class OPENAI_API UChatGPT : public UObject
21{
22 GENERATED_BODY()
23
24public:
25 UChatGPT();
26
27 void SetAuth(const FOpenAIAuth& OpenAIAuth);
28 void SetModel(const FString& Model);
29 FString GetModel() const;
30 void SetMaxTokens(int32 Tokens);
31
32 void SetLogEnabled(bool Enabled);
33
34 bool RegisterService(const TSubclassOf<UBaseService>& ServiceClass, const OpenAI::ServiceSecrets& Secrets);
35 void UnRegisterService(const TSubclassOf<UBaseService>& ServiceClass);
36
37 void AddMessage(const FMessage& Message);
38 void SetAssistantMessage(const FMessage& Message);
39 FMessage GetAssistantMessage() const;
40
41 void MakeRequest();
42
43 void ClearHistory();
44 TArray<FMessage> GetHistory() const;
45
46 FOnChatGPTRequestCompleted& OnRequestCompleted() { return RequestCompleted; }
47 FOnChatGPTRequestUpdated& OnRequestUpdated() { return RequestUpdated; }
48
49private:
50 UPROPERTY()
51 TObjectPtr<UOpenAIProvider> Provider;
52
53 UPROPERTY()
54 TArray<TObjectPtr<UBaseService>> Services;
55
56 FOpenAIAuth Auth;
57 FString OpenAIModel;
58 int32 MaxCompletionTokens{100};
59
60 TArray<FMessage> ChatHistory;
61 FMessage AssistantMessage;
62
63private:
64 FOnChatGPTRequestCompleted RequestCompleted;
65 FOnChatGPTRequestUpdated RequestUpdated;
66
67 void HandleRequestCompletion();
68 void UpdateAssistantMessage(const FString& Message, bool WasError = false);
69
70 void HandleError(const FString& Content);
71 bool HandleFunctionCall(const FFunctionCommon& FunctionCall, const FString& ID);
72};
Definition: BaseService.h:16
Definition: ChatGPT.h:21
Definition: OpenAIProvider.h:45
Definition: ToolsTypes.h:11
Definition: ChatCommonTypes.h:75
Definition: CommonTypes.h:11