2 instantiations of AspireChatCompletionsClientBuilder
Aspire.Azure.AI.Inference (2)
AspireAzureAIInferenceExtensions.cs (2)
60return new AspireChatCompletionsClientBuilder(builder, serviceKey: null, settings.DeploymentId, settings.DisableTracing); 97return new AspireChatCompletionsClientBuilder(builder, serviceKey: name, settings.DeploymentId, settings.DisableTracing);
9 references to AspireChatCompletionsClientBuilder
Aspire.Azure.AI.Inference (9)
AspireAzureAIInferenceExtensions.cs (9)
33/// <returns>An <see cref="AspireChatCompletionsClientBuilder"/> that can be used to further configure the client.</returns> 43public static AspireChatCompletionsClientBuilder AddAzureChatCompletionsClient( 70/// <returns>An <see cref="AspireChatCompletionsClientBuilder"/> that can be used to further configure the client.</returns> 80public static AspireChatCompletionsClientBuilder AddKeyedAzureChatCompletionsClient( 159/// <param name="builder">An <see cref="AspireChatCompletionsClientBuilder" />.</param> 162public static ChatClientBuilder AddChatClient(this AspireChatCompletionsClientBuilder builder, string? deploymentId = null) 173/// <param name="builder">An <see cref="AspireChatCompletionsClientBuilder" />.</param> 177public static ChatClientBuilder AddKeyedChatClient(this AspireChatCompletionsClientBuilder builder, string serviceKey, string? deploymentId = null) 188private static IChatClient CreateInnerChatClient(AspireChatCompletionsClientBuilder builder, IServiceProvider services, string? deploymentId)