fix: 修复ai模型问题

This commit is contained in:
ccnetcore
2025-06-30 21:58:34 +08:00
parent ee53b3d9c4
commit 9a334101ca
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ public class AzureChatService : IChatService
var response = chatClient.CompleteChatStreamingAsync(messages, new ChatCompletionOptions()
{
MaxOutputTokenCount = 2048
// MaxOutputTokenCount = 2048
}, cancellationToken: cancellationToken);
await foreach (StreamingChatCompletionUpdate update in response)