Unreal OpenAI API 1.0.0
DownloadImageAction.h
1// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3#pragma once
4
5#include "Kismet/BlueprintAsyncActionBase.h"
6#include "HTTP.h"
7#include "DownloadImageAction.generated.h"
8
9class UTexture2DDynamic;
10
11DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnDownloadImage, UTexture2D*, Texture);
12
13UCLASS()
14class UDownloadImageAction : public UBlueprintAsyncActionBase
15{
16 GENERATED_BODY()
17
18public:
19 UPROPERTY(BlueprintAssignable)
20 FOnDownloadImage OnCompleted;
21
22 virtual void Activate() override;
23
24private:
25 UFUNCTION(BlueprintCallable, meta = (BlueprintInternalUseOnly = "true"), Category = "OpenAI | Utils")
26 static UDownloadImageAction* DownloadImage(const FString& URL);
27
28 void HandleImageRequest(FHttpRequestPtr HttpRequest, FHttpResponsePtr HttpResponse, bool bSucceeded);
29
30private:
31 FString URL{};
32};
Definition: DownloadImageAction.h:15