I am writing code where the ChatGPT API in Python responds to some questions. However, I noticed that when I asked these same questions in the ChatGPT website, I got answers which were more accurate on average and these answers also were longer and more detailed. Is there any way to fix this?
This is the current code I'm using.
completion = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[{"role": "user",
"content": questions[361]}
],
)