-
Notifications
You must be signed in to change notification settings - Fork 581
/
Copy pathAspireOpenAIClientBuilder.cs
46 lines (39 loc) · 1.84 KB
/
AspireOpenAIClientBuilder.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Extensions.Hosting;
using OpenAI;
namespace Aspire.OpenAI;
/// <summary>
/// A builder for configuring an <see cref="OpenAIClient"/> service registration.
/// </summary>
public class AspireOpenAIClientBuilder
{
/// <summary>
/// Constructs a new instance of <see cref="AspireOpenAIClientBuilder"/>.
/// </summary>
/// <param name="hostBuilder">The <see cref="IHostApplicationBuilder"/> with which services are being registered.</param>
/// <param name="connectionName">The name used to retrieve the connection string from the ConnectionStrings configuration section.</param>
/// <param name="serviceKey">The service key used to register the <see cref="OpenAIClient"/> service, if any.</param>
public AspireOpenAIClientBuilder(IHostApplicationBuilder hostBuilder, string connectionName, string? serviceKey)
{
HostBuilder = hostBuilder;
ConnectionName = connectionName;
ServiceKey = serviceKey;
}
/// <summary>
/// Gets the <see cref="IHostApplicationBuilder"/> with which services are being registered.
/// </summary>
public IHostApplicationBuilder HostBuilder { get; }
/// <summary>
/// Gets the name used to retrieve the connection string from the ConnectionStrings configuration section.
/// </summary>
public string ConnectionName { get; }
/// <summary>
/// Gets the service key used to register the <see cref="OpenAIClient"/> service, if any.
/// </summary>
public string? ServiceKey { get; }
/// <summary>
/// Gets the name of the configuration section for this component type.
/// </summary>
public virtual string ConfigurationSectionName => AspireOpenAIExtensions.DefaultConfigSectionName;
}