This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
Releases: lucoiso/UEHttpGPT
Releases · lucoiso/UEHttpGPT
HttpGPT v1.4.7
- Pull Request: #38
Changes
- Better auto scrolling: Will auto scroll with the generated text only if the scroll bar is already in the end.
- Selectable messages: Now you can select and copy the texts
Known issues
- Weird selection if try to select the text while the text is being generated: UE4.27 & UE5.0
Screenshots
HttpGPT v1.4.6
- Pull Request: #35
Changes
- Add new C++ function to allow editor tasks
- Add new property to identify editor tasks and apply or not flags / PIE bindings
- Set the editor task & editor property handler object to receive the RF_Standalone flag to avoid being destroyed when editor context changes
Notes
- These changes fix the bug related to the editor tasks being canceled when these situations occur: Save, Play PIE or End PIE.
HttpGPT v1.4.5
- Pull Request: #31
Changes
- Configure the assistant (HttpGPT Chat) to notify the user in the chat when an error occurs and the request fails to be sent
- Adjust message update on HttpGPT Chat to avoid crashes when the editor context changes
New Functions
- IsTaskActive
- IsTaskReadyToDestroy
- IsTaskStillValid
HttpGPT v1.4.4
- Pull Request: #26
Changes
New system context message example:
You are an assistant that will help with the development of projects in Unreal Engine in general.
You are in the Unreal Engine 5.1 plugin HttpGPT version 1.4.4, which was developed by Lucas Vilas-Boas.
You can find the HttpGPT documentation at https://github.com/lucoiso/UEHttpGPT/wiki and support at https://github.com/lucoiso/UEHttpGPT/issues.
You're using the model gpt-4 and HttpGPT currently supports all these OpenAI Models: gpt-4, gpt-4-32k, gpt-3.5-turbo, text-davinci-003, text-davinci-002, code-davinci-002.
You can find the Unreal Engine 5.1 general documentation at https://docs.unrealengine.com/5.1/en-US/.
You can find the Unreal Engine 5.1 API documentation for C++ at https://docs.unrealengine.com/5.1/en-US/API/.
You can find the Unreal Engine 5.1 API documentation for Blueprints at https://docs.unrealengine.com/5.1/en-US/BlueprintAPI/.
HttpGPT v1.4.3
HttpGPT v1.4.2
HttpGPT v1.4.1
- Single commit: b9c6a55
Changes
- Bind PIE End to avoid crash on shutdown if there's an active task
- Bind Start & Fail delegates in Editor tool
HttpGPT v1.4.0
- Pull Request: #20
Changes
- New Editor Tool: ChatGPT integrated in the Engine!
- Set streamed responses to be entirely rewrited on updates toa void data loss
- Fix logit_bias parameter
- Add stop functions
- Fix endpoints of models that doesn't support Chat API
Screenshots
New Editor Tool: HttpGPT Chat
HttpGPT v1.3.0
- Pull Request: #14
Changes
- Add support for GPT-4
- Update description: Aiming Marketplace
- Add support for streamed content
- Add more options
- Made fixes
- Add better settings w/ support for mutable options
- Add more tasks w/ support for custom options
- Enhance logging
- Add more delegates
Screenshots
HttpGPT v1.2.0
- Pull Request: #7
Changes
- Create new structures: Options & Error
- Set all tasks to receive an options param
- Set settings to contain a default options object
- Set the response to contain the error object if bSuccess is false
- Transform the role param in an Enumeration
- Set the message body to use the options or the default options if no one was given to the task. Also allowing the usage of other models.
- Set the plugin to contains 2 functions to manage an entire chat or send a single message.