Replies: 1 comment 2 replies
-
Hi @rdecosta, the endpoint you describe does not exist in that form. The chat completion endpoint is Using this plugin you can make a request such as: var req = new CreateChatCompletionRequest
{
Model = "gpt-3.5-turbo",
Messages = new List<ChatMessage>()
{
new ChatMessage() { Role = "user", Content = "Hello!" }
}
};
var res = await openai.CreateChatCompletion(req); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to use 3.5-turbo, but there's no obvious method for setting this. If I use the url OpenAI suggests (https://api.openai.com/v1/chat/gpt-3.5-turbo/completions) I get Error Message: Cannot specify both model and engine
Beta Was this translation helpful? Give feedback.
All reactions