Looks Like ChatGPT API Released!

The new model is called gpt-3.5-turbo but doesn't work yet.

Cool thing it's 10x cheaper than davinci.

Anyone managed to call it via API yet?
 
The new model is called gpt-3.5-turbo but doesn't work yet.

Cool thing it's 10x cheaper than davinci.

Anyone managed to call it via API yet?
I think you mean 10% bro bro!
 
Nope. Text-davinci-003 costs $0.02/1k tokens and the new model $0.002/1k tokens and has the same output quality lol.
Oh wow, I read the email and thought even 10% cheaper would be amazing...

Mind is blown, thanks for correcting me and not being cheesy
 
The new model is called gpt-3.5-turbo but doesn't work yet.

Cool thing it's 10x cheaper than davinci.

Anyone managed to call it via API yet?

That's crazy considering davinci is dirt cheap alright
 
This is the bit where our hero Google, has taken a sword to the stomach … and the villain (OpenAI) walks up, smirks to the crowd … and violently rips the sword back out, exposing a giant, fatal gash …

Good night sweet prince Google … your time is over.
 
I really look forward to using an API to create services for ChatGPT
 
The new model is called gpt-3.5-turbo but doesn't work yet.

Cool thing it's 10x cheaper than davinci.

Anyone managed to call it via API yet?
that works:

Code:
import os
import openai
openai.api_key = "sk-gggggggggggggggggggggggggggggggggggg"


response = openai.ChatCompletion.create(
  model="gpt-3.5-turbo",
  messages=[
    {"role": "system", "content" : "you are an expert in ?????  "  },
    {"role": "user", "content": " provide ?????????? "},
    ],
   temperature=0.3,
)
print(response["choices"][0]["message"]["content"])
 
Back
Top