├── Config ├── ChatPlugin.ini └── Defaultchat.ini ├── LICENSE ├── OpenAIAPI.uplugin ├── README.md ├── README_zh.md ├── Resources └── openai.png ├── Source └── OpenAIAPI │ ├── OpenAIAPI.Build.cs │ ├── Private │ ├── OpenAIAPI.cpp │ ├── OpenAICallDALLE.cpp │ ├── OpenAICallGPT.cpp │ ├── OpenAIDefinitions.cpp │ ├── OpenAIParser.cpp │ └── OpenAIUtils.cpp │ └── Public │ ├── OpenAIAPI.h │ ├── OpenAICallDALLE.h │ ├── OpenAICallGPT.h │ ├── OpenAIDefinitions.h │ ├── OpenAIParser.h │ └── OpenAIUtils.h ├── requirements.txt ├── src ├── bot.py ├── chatgptmain │ ├── Chatgpt.py │ ├── __init__.py │ ├── judgeuser.py │ └── ueChatgpt.py ├── receivewx │ ├── __init__.py │ ├── handle.py │ └── ierror.py ├── request.py └── sendwx │ └── __init__.py └── 使用虚幻引擎创建ChatGPT插件_files ├── 1e0fb01bd2649e0ed2866f9df1661a0d.png ├── 1f110208-44a6f43ddc5e9011.js.下载 ├── 271-47b1899a62a6d998.js.下载 ├── 424-7f7835d330adbaab.js.下载 ├── 544-ccb4bff59bd0ddde.js.下载 ├── 762-8a07cc8650f560d4.js.下载 ├── 798-92621067ddb78625.js.下载 ├── 814-8d3a02d11a708241.js.下载 ├── 875-7f46e56c461a6f28.js.下载 ├── 951-bd9986e20ec88428.js.下载 ├── 979-429205346ba16ee3.js.下载 ├── 9bdb59bfd94431fc.css ├── [[...chatId]]-06e3935c1288ab2c.js.下载 ├── _app-9701aac7bdaf106f.js.下载 ├── _buildManifest.js.下载 ├── _ssgManifest.js.下载 ├── framework-7a789ee31d2a7534.js.下载 ├── main-149b337e061b4d04.js.下载 ├── polyfills-c67a75d1b6f99dc8.js.下载 ├── saved_resource.html └── webpack-d1d18504c854ef8b.js.下载 /Config/ChatPlugin.ini: -------------------------------------------------------------------------------- 1 | [ChatPlugin] -------------------------------------------------------------------------------- /Config/Defaultchat.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Config/Defaultchat.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenAIAPI.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/OpenAIAPI.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/README_zh.md -------------------------------------------------------------------------------- /Resources/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Resources/openai.png -------------------------------------------------------------------------------- /Source/OpenAIAPI/OpenAIAPI.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/OpenAIAPI.Build.cs -------------------------------------------------------------------------------- /Source/OpenAIAPI/Private/OpenAIAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Private/OpenAIAPI.cpp -------------------------------------------------------------------------------- /Source/OpenAIAPI/Private/OpenAICallDALLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Private/OpenAICallDALLE.cpp -------------------------------------------------------------------------------- /Source/OpenAIAPI/Private/OpenAICallGPT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Private/OpenAICallGPT.cpp -------------------------------------------------------------------------------- /Source/OpenAIAPI/Private/OpenAIDefinitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Private/OpenAIDefinitions.cpp -------------------------------------------------------------------------------- /Source/OpenAIAPI/Private/OpenAIParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Private/OpenAIParser.cpp -------------------------------------------------------------------------------- /Source/OpenAIAPI/Private/OpenAIUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Private/OpenAIUtils.cpp -------------------------------------------------------------------------------- /Source/OpenAIAPI/Public/OpenAIAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Public/OpenAIAPI.h -------------------------------------------------------------------------------- /Source/OpenAIAPI/Public/OpenAICallDALLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Public/OpenAICallDALLE.h -------------------------------------------------------------------------------- /Source/OpenAIAPI/Public/OpenAICallGPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Public/OpenAICallGPT.h -------------------------------------------------------------------------------- /Source/OpenAIAPI/Public/OpenAIDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Public/OpenAIDefinitions.h -------------------------------------------------------------------------------- /Source/OpenAIAPI/Public/OpenAIParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Public/OpenAIParser.h -------------------------------------------------------------------------------- /Source/OpenAIAPI/Public/OpenAIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/Source/OpenAIAPI/Public/OpenAIUtils.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/src/bot.py -------------------------------------------------------------------------------- /src/chatgptmain/Chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/src/chatgptmain/Chatgpt.py -------------------------------------------------------------------------------- /src/chatgptmain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/chatgptmain/judgeuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/src/chatgptmain/judgeuser.py -------------------------------------------------------------------------------- /src/chatgptmain/ueChatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/src/chatgptmain/ueChatgpt.py -------------------------------------------------------------------------------- /src/receivewx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/receivewx/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/src/receivewx/handle.py -------------------------------------------------------------------------------- /src/receivewx/ierror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/src/receivewx/ierror.py -------------------------------------------------------------------------------- /src/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/src/request.py -------------------------------------------------------------------------------- /src/sendwx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/1e0fb01bd2649e0ed2866f9df1661a0d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/1e0fb01bd2649e0ed2866f9df1661a0d.png -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/1f110208-44a6f43ddc5e9011.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/1f110208-44a6f43ddc5e9011.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/271-47b1899a62a6d998.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/271-47b1899a62a6d998.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/424-7f7835d330adbaab.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/424-7f7835d330adbaab.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/544-ccb4bff59bd0ddde.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/544-ccb4bff59bd0ddde.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/762-8a07cc8650f560d4.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/762-8a07cc8650f560d4.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/798-92621067ddb78625.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/798-92621067ddb78625.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/814-8d3a02d11a708241.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/814-8d3a02d11a708241.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/875-7f46e56c461a6f28.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/875-7f46e56c461a6f28.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/951-bd9986e20ec88428.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/951-bd9986e20ec88428.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/979-429205346ba16ee3.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/979-429205346ba16ee3.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/9bdb59bfd94431fc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/9bdb59bfd94431fc.css -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/[[...chatId]]-06e3935c1288ab2c.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/[[...chatId]]-06e3935c1288ab2c.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/_app-9701aac7bdaf106f.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/_app-9701aac7bdaf106f.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/_buildManifest.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/_buildManifest.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/_ssgManifest.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/_ssgManifest.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/framework-7a789ee31d2a7534.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/framework-7a789ee31d2a7534.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/main-149b337e061b4d04.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/main-149b337e061b4d04.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/polyfills-c67a75d1b6f99dc8.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/polyfills-c67a75d1b6f99dc8.js.下载 -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/saved_resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/saved_resource.html -------------------------------------------------------------------------------- /使用虚幻引擎创建ChatGPT插件_files/webpack-d1d18504c854ef8b.js.下载: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemomi/UE-chatgpt/HEAD/使用虚幻引擎创建ChatGPT插件_files/webpack-d1d18504c854ef8b.js.下载 --------------------------------------------------------------------------------