Sorry, but in my extension we have NO BLOCKS for VISION!
please , check the extension file, not in the AIA file ,
in the aia file is old version
You can PM me with your transaction payment ID and I will send the aix file for you
I have messaged you in PM
Tank you for reply. Do you have a simple demo to try?
Ok, but please could check the demo that you have already recived , I have added it in clear way
I was convinced that I had purchased the CHATGPT extension, but apparently I was wrong. How do I get the right extension?
Didnt you recive any files ?
I have just send the file for you , check your pm ,
And thanks for interesting with my extension I appreciate this !
I hope this extension take your apps to next level
Received! I try....
Hallo. Great Job! But where is the block to try analayze ChatGpt Image from File?
Did you imported the extension to the project
Also make sure to unzip the file to get the aix and the aia file
I see the .aia, but ..... sorry, I'm confused. I search the instructions to read an image from phone and describe it. To obtain it, I will use "RequestChatGPTVisionfromFile". Unfortunately, this command is only in your demo .aia. but it's impossible to use. Dou you have some help for me?
sorry @sparta for my late reply, And This is an example of how to use ChatGPT version with Themer chat Extension
Hello, I am trying to use RequestChatGPTVisionMultipleImagesFromFiles, but the ChatGPT keep saying it does not recognize my image type. I convert a jPEG image to base64 string then prefix with "data:image/jpeg;base64," before saving to the local file which will be provided to the imagePaths. Please can you help where it goes wrong?
Before sending the image, check the existence status of the image path or not,
If true, send it. Also make sure to send the whole list without empty item lists
@Black_Knight Thank you for the suggestion, I did the check of file path and completed the list (with the same image file), a couple initial times i was getting GPT response: "You uploaded an unsupported image. Please make sure your image has of one of the following formats: ['png', 'jpeg', 'gif', 'webp'']. code: invalide_image_format so apparently it is the file format i created... most of other times it just went silent after calling the vision request and no response is received...
I used TaifunFile.copy to copy image afterPicture to a local file, then convert the file to string using KIO4_Base641.FileToStringASD, in the end, i prefix the string with "data:image/jpeg;base64,", then save the final string to another local file using KIO4_Base641.StringToFileASD before passing it to the ChatGPT. RequestChatGPTVisionMultipleImagesFromFiles. Is there any example I can find that will be forming the proper input to GPT vision from a jpeg image?