[FREE] ChatGPT with all text/voice models, Computer Vision and Dall-e 2 and 3 - Openai API

You go to Usage and register your credit card.

2 Likes

What should the model be to be setted because I does not accept any

Visit the openai website and see the list of available models

This is incredible. Thanks @Passos_0213 ! I’m a bit new to using ai, so sorry for the rookie question: I do know there is now GPT-4o. I’m a bit confused, what model (format) is expected for the text in SendResponse? Maybe something else is wrong. I did test my API key with the Thread create blocks and seems to be working.

Edit: I don’t have premium in order to test the aia (I have long reached my project number maximum).

Edit 2: I managed to get error 429 which I think just means no quota for usage. So there is no free model anymore?

image

1 Like

Yes! You will need to register your credit card. Don’t be afraid, it will only cost you a few cents.

1 Like

Thanks, been hectic 2 weeks only back now. But is that few cents just for 1 user once off, or is it cumulative for each user? I’m concerned to be paying hundreds/thousands of dollars if my app does take off. I think it’s the latter if I’m not mistaken.

On that note, shame that there is not free ai option, even if it’s not as functional as GPT can still be very useful. Do you know of any other comparable GPT apis that could possibly have an exxtension made for?

2 Likes

You can check chat gpt extension it only costs 2$ for limited period of time

Or you can check Gemini model and use it via Gemini extension , you can only buy the extension and for the free plane it has a big quote of use :

3 Likes

The Openai platform has tools to help you limit your spending. If you optimize your app and Token amounts, I’m sure your requests will cost just a few cents.

2 Likes

New version V7 added with computer vision with newest chatGPT models.

image

Hi, does the extension support receiving of text streams?

1 Like

I will add it in the next update.

1 Like

Thanks! Do you know of any extensions that support WebSockets and headers?
Is your extension free or a sponsor version?

Try this

Hi, thanks! I got it. It looks like what I was looking for :slight_smile:

1 Like

Thanks, I hope so ,
And I I am waiting for your feedback :sparkles:

Hi, do you have a demo.aia? the one in the download can’t load in kodular as a project.
I’m focused in the gpt stream part.
image

Br Teddy

Try with MIT app inventor the aia file originally for AI2 not kodular

It’s loading perfectly in App Inventor - Thx.

1 Like

17. UploadTrainingFile (NEW)

  • Description: Uploads a JSONL file for use in fine-tuning.

  • Parameters:

    • apiKey (Text): Your OpenAI API key.
    • filePath (Text): Path to the JSONL file to upload.
  • Returns: Triggers FileUploaded event with the file ID or ReportError if an error occurs.

  • How it works: This method sends a multipart/form-data HTTP POST request to OpenAI’s API to upload the specified JSONL file for fine-tuning purposes.

18. StartFineTuningJob (NEW)

  • Description: Starts a fine-tuning job using an uploaded JSONL file.

  • Parameters:

    • apiKey (Text): Your OpenAI API key.
    • trainingFileId (Text): The ID of the uploaded JSONL file.
    • model (Text): The base model to fine-tune (e.g., gpt-4o-mini or gpt-3.5-turbo).
    • suffix (Text): Optional suffix to append to the fine-tuned model’s name.
  • Returns: Triggers FineTuningJobStarted event with job details or ReportError if an error occurs.

  • How it works: This method sends an HTTP POST request to OpenAI’s fine-tuning endpoint, creating a fine-tuning job using the provided file and model.

3 Likes

Thanks, Ahemed, I have pm’d you.