Looks Like ChatGPT API Released!

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"])
Thanks! I figured it out in the meantime.
 
i haven't even spent a cent and already got tons of articles. this is going to be insane.
 
Any rate limits for the API? How many requests in parallel? WOW - chatgpt-turbo is dirt cheap and mind-blowing. Quick, guys and gals, act quickly ;)
 
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"])
Thanks. How to use it to auto-generate articles on WordPress?
 
I working fine? is getting down at any moment? they have the pro version but notice is sometimes not working because of too much traffic don't know if is the same with the API or if is working fine.
 
Back
Top