-
Notifications
You must be signed in to change notification settings - Fork 430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Chat Completions #54
Comments
I am taking a stab at this, but I've hit a wall.
Anybody have any suggestions for why this might be happening? Here are my changes so far Edit; |
@megalon confirming your changes worked for me |
This is awesome! Thank you @megalon |
Can someone provide an example of calling the new ChatGPT completion? |
For testing I'm currently using: var req = new OpenAI_API.Chat.ChatRequest();
req.Model = OpenAI_API.Models.Model.ChatGPTTurbo;
req.Messages = new System.Collections.Generic.List<OpenAI_API.Chat.ChatMessage>();
req.Messages.Add(new OpenAI_API.Chat.ChatMessage("user", "Give me a list of 10 colors"));
req.Temperature = 0;
req.MaxTokens = 100;
var result = await client.Chat.CreateChatAsync(req);
foreach (var i in result.Choices)
{
Console.WriteLine("["+i.FinishReason+"] " + i.Message.Role + " => " + i.Message.Content);
} |
Amazing, thanks! |
Quick question, I'm being charged for gpt-3.5-turbo-0301, but I've even removed the model from the model list. Is anyone else running into the same issue? |
gpt-3.5-turbo-0301 is the only "chat" model available from the OpenAi API
right now.
gpt-3.5-turbo uses the latest model, and since 0301 is the only model
available, that's the one it uses.
"Developers who use the gpt-3.5-turbo model will always get our recommended
stable model, while still having the flexibility to opt for a specific
model version. For example, today we’re releasing gpt-3.5-turbo-0301, which
will be supported through at least June 1st, and we’ll update gpt-3.5-turbo
to a new stable release in April."
https://openai.com/blog/introducing-chatgpt-and-whisper-apis
If you want to use a different model like davinci, you need to use the old
"completions" API endpoint
…On Sat, Mar 4, 2023, 7:31 AM dexinhuang ***@***.***> wrote:
Quick question, I'm being charged for gpt-3.5-turbo-0301, but I've even
removed the model from the model list. Is anyone else running into the same
issue?
—
Reply to this email directly, view it on GitHub
<#54 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGTOITONJ4EEHG3W2KRSVWLW2NN3NANCNFSM6AAAAAAVMQVFGU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Great! I appreciate the information! Thanks! |
Could you advise that when it could come out? |
Today chat completions are now available:
https://platform.openai.com/docs/api-reference/chat/create
Uses a new end-point (https://api.openai.com/v1/chat/completions), and the latest model "gpt-3.5-turbo".
The text was updated successfully, but these errors were encountered: