2 writes to _chatClient
Microsoft.Extensions.AI.OpenAI (2)
OpenAIChatClient.cs (2)
45
_chatClient
= openAIClient.GetChatClient(modelId);
63
_chatClient
= chatClient;
3 references to _chatClient
Microsoft.Extensions.AI.OpenAI (3)
OpenAIChatClient.cs (3)
95
serviceType == typeof(ChatClient) ?
_chatClient
:
110
var response = await
_chatClient
.CompleteChatAsync(openAIChatMessages, openAIOptions, cancellationToken).ConfigureAwait(false);
125
var chatCompletionUpdates =
_chatClient
.CompleteChatStreamingAsync(openAIChatMessages, openAIOptions, cancellationToken);