Skip to content

Commit

Permalink
Small fix for UE4.27 + Adjust description
Browse files Browse the repository at this point in the history
  • Loading branch information
lucoiso committed Apr 1, 2023
1 parent 1bf0f99 commit beeff08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HttpGPT.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Version": 13,
"VersionName": "1.5.0",
"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 the chatbot. HttpGPT also includes Editor Tools to integrate Chat GPT and DALL-E image generation directly in the Engine.",
"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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void SHttpGPTImageGenItemData::Construct(const FArguments& InArgs)
FReply SHttpGPTImageGenItemData::HandleSaveButton()
{
const FString AssetName = FString::FromInt(Texture->GetUniqueID());
FString TargetFilename = FPaths::Combine("/Game/", UHttpGPTSettings::Get()->GeneratedImagesDir, AssetName);
FString TargetFilename = FPaths::Combine(TEXT("/Game/"), UHttpGPTSettings::Get()->GeneratedImagesDir, AssetName);
FPaths::NormalizeFilename(TargetFilename);

UPackage* const Package = CreatePackage(*TargetFilename);
Expand Down

0 comments on commit beeff08

Please sign in to comment.