Unreal OpenAI API 1.0.0
BaseService.h
1// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UObject/NoExportTypes.h"
7#include "Dom/JsonObject.h"
8#include "Provider/Types/Chat/ChatCommonTypes.h"
9#include "BaseService.generated.h"
10
11DECLARE_MULTICAST_DELEGATE_OneParam(FOnServiceDataRecieved, const FMessage&);
12DECLARE_MULTICAST_DELEGATE_OneParam(FOnServiceDataError, const FString&);
13
14UCLASS()
15class OPENAI_API UBaseService : public UObject
16{
17 GENERATED_BODY()
18
19public:
20 /*
21 You can check some necessary conditions to enable the service, if there is no such condition just always return true.
22 */
23 virtual bool Init(const OpenAI::ServiceSecrets& Secrets);
24
25 /*
26 In most cases you won't need to override this function.
27 */
28 virtual FFunctionRequest Function() const;
29
30 /*
31 Description of your function for the ChatGPT.
32 */
33 virtual FString Description() const;
34
35 /*
36 Name of your function that ChatGPT will call.
37 */
38 virtual FString FunctionName() const;
39
40 /*
41 Actual call of your function.
42 */
43 virtual void Call(const TSharedPtr<FJsonObject>& Args, const FString& ToolID);
44
45 /*
46 Don't create long names. They will be truncated to [NameMaxLength = 8] in the UI. Use Description for more words.
47 */
48 virtual FString Name() const;
49
50 /*
51 Comes to UI tooltip, may be empty.
52 */
53 virtual FString TooltipDescription() const;
54
55 FOnServiceDataRecieved& OnServiceDataRecieved();
56 FOnServiceDataError& OnServiceDataError();
57
58protected:
59 /*
60 Call this delegate with a data that returns your function.
61 */
62 FOnServiceDataRecieved ServiceDataRecieved;
63
64 /*
65 Call this delegate when an error occurs during your function calculations.
66 */
67 FOnServiceDataError ServiceDataError;
68
69 FString ToolID{};
70
71 /*
72 Return a JSON with parameters that your function has.
73
74 Please use MakeFunctionsString to wrap your JSON object at the end:
75
76 TSharedPtr<FJsonObject> ParamsObj = MakeShareable(new FJsonObject());
77 ...
78 return UOpenAIFuncLib::MakeFunctionsString(ParamsObj);
79 */
80 virtual FString MakeFunction() const;
81
82 /*
83 Helper function that can be used in the child classes.
84 */
85 virtual FMessage MakeMessage(const FString& Content) const;
86};
Definition: BaseService.h:16
Definition: ToolsTypes.h:78
Definition: ChatCommonTypes.h:75