2 instantiations of AspireChatCompletionsClientBuilder
Aspire.Azure.AI.Inference (2)
AspireAzureAIInferenceExtensions.cs (2)
61return new AspireChatCompletionsClientBuilder(builder, serviceKey: null, settings.DeploymentId, settings.DisableTracing); 98return new AspireChatCompletionsClientBuilder(builder, serviceKey: name, settings.DeploymentId, settings.DisableTracing);
9 references to AspireChatCompletionsClientBuilder
Aspire.Azure.AI.Inference (9)
AspireAzureAIInferenceExtensions.cs (9)
34/// <returns>An <see cref="AspireChatCompletionsClientBuilder"/> that can be used to further configure the client.</returns> 44public static AspireChatCompletionsClientBuilder AddAzureChatCompletionsClient( 71/// <returns>An <see cref="AspireChatCompletionsClientBuilder"/> that can be used to further configure the client.</returns> 81public static AspireChatCompletionsClientBuilder AddKeyedAzureChatCompletionsClient( 172/// <param name="builder">An <see cref="AspireChatCompletionsClientBuilder" />.</param> 175public static ChatClientBuilder AddChatClient(this AspireChatCompletionsClientBuilder builder, string? deploymentId = null) 186/// <param name="builder">An <see cref="AspireChatCompletionsClientBuilder" />.</param> 190public static ChatClientBuilder AddKeyedChatClient(this AspireChatCompletionsClientBuilder builder, string serviceKey, string? deploymentId = null) 201private static IChatClient CreateInnerChatClient(AspireChatCompletionsClientBuilder builder, IServiceProvider services, string? deploymentId)