2 writes to _chatClient
Microsoft.Extensions.AI.OpenAI (2)
OpenAIChatClient.cs (2)
48_chatClient = openAIClient.GetChatClient(modelId); 66_chatClient = chatClient;
3 references to _chatClient
Microsoft.Extensions.AI.OpenAI (3)
OpenAIChatClient.cs (3)
96serviceType == typeof(ChatClient) ? _chatClient : 111var response = await _chatClient.CompleteChatAsync(openAIChatMessages, openAIOptions, cancellationToken).ConfigureAwait(false); 126var chatCompletionUpdates = _chatClient.CompleteChatStreamingAsync(openAIChatMessages, openAIOptions, cancellationToken);