Update ChatCompletionRequest.cs

This commit is contained in:
Serhii Shchoholiev 2023-11-15 15:15:48 -05:00 committed by GitHub
parent 49837d4f18
commit b17cbc05f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ namespace ShoppingAssistantApi.Application.Models.OpenAi;
public class ChatCompletionRequest
{
public string Model { get; set; } = "gpt-4";
public string Model { get; set; } = "gpt-4-1106-preview";
public List<OpenAiMessage> Messages { get; set; }