- Sep 16, 2021
- 1,054
- 892
I think you mean 10% bro bro!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?
Nope. Text-davinci-003 costs $0.02/1k tokens and the new model $0.002/1k tokens and has the same output quality lol.I think you mean 10% bro bro!
Oh wow, I read the email and thought even 10% cheaper would be amazing...Nope. Text-davinci-003 costs $0.02/1k tokens and the new model $0.002/1k tokens and has the same output quality lol.
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 timing couldn't have been betterToo cheap. Looks like all the free api keys that Sartre gave away will be used on this model.
You mean, the era returns!So, the era of autoblogs begin xD
I hope I also get some API keys from Sartre. I've been procrastinating it long enough.Too cheap. Looks like all the free api keys that Sartre gave away will be used on this model.
View attachment 244934
they got two of them
that works: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?
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"])