Skip to content

Commit

Permalink
Fix compile error in AzureOpenAITranslator
Browse files Browse the repository at this point in the history
  • Loading branch information
dogdie233 authored Nov 2, 2024
1 parent cdd086c commit 3cac418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TranslatorLibrary/AzureOpenAITranslator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private static ChatRequest CreateCompletionRequest(string sourceText, string des
public class ChatRequest
{
[JsonPropertyName("messages")] public List<MessageRequest> Messages { get; set; } = new();
[JsonPropertyName("stream")] public bool Stream { get; set; } = false
[JsonPropertyName("stream")] public bool Stream { get; set; } = false;
}

public class ChatResponse
Expand Down

0 comments on commit 3cac418

Please sign in to comment.