Hello - i try to answer some questions from a text using the following code / request
resp = openai.ChatCompletion.create(
model = "gpt-3.5-turbo",
messages=[{"role": "user", "content": wText}],
request_timeout = 60,
temperature = 0.5,
)
This works fine with this model - but i want to try also the model “gpt-3.5-turbo-instruct”
But when i try this i get this error message when running the program
Error happened: This is not a chat model and thus not supported in the v1/chat/completions endpoint. Did you mean to use v1/completions?
How can i use also the model “gpt-3.5-turbo-instruct”?