forked from lucoiso/UEHttpGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HttpGPT.uplugin
65 lines (65 loc) · 1.6 KB
/
HttpGPT.uplugin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"FileVersion": 3,
"Version": 20,
"VersionName": "1.5.7",
"FriendlyName": "HttpGPT - GPT Integration",
"Description": "HttpGPT is an Unreal Engine plugin that facilitates integration with OpenAI's GPT based services (ChatGPT and DALL-E) through asynchronous REST requests, making it easy for developers to communicate with these services. HttpGPT also includes new Editor Tools to integrate Chat GPT and DALL-E image generation directly in the Engine.",
"Category": "Game Features",
"CreatedBy": "Lucas Vilas-Boas",
"CreatedByURL": "https://github.com/lucoiso",
"DocsURL": "https://github.com/lucoiso/UEHttpGPT/wiki",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/433c180835184aeca0172680a69497ee",
"SupportURL": "https://github.com/lucoiso/UEHttpGPT/issues",
"CanContainContent": false,
"IsBetaVersion": true,
"IsExperimentalVersion": false,
"Installed": false,
"Modules": [
{
"Name": "HttpGPTChatModule",
"Type": "Runtime",
"LoadingPhase": "Default",
"PlatformAllowList": [
"Win64",
"Mac",
"Linux",
"IOS",
"Android"
]
},
{
"Name": "HttpGPTImageModule",
"Type": "Runtime",
"LoadingPhase": "Default",
"PlatformAllowList": [
"Win64",
"Mac",
"Linux",
"IOS",
"Android"
]
},
{
"Name": "HttpGPTCommonModule",
"Type": "Runtime",
"LoadingPhase": "Default",
"PlatformAllowList": [
"Win64",
"Mac",
"Linux",
"IOS",
"Android"
]
},
{
"Name": "HttpGPTEditorModule",
"Type": "Editor",
"PlatformAllowList": [
"Win64",
"Mac",
"Linux"
],
"LoadingPhase": "Default"
}
]
}