ChatClientBuilderServiceCollectionExtensions.AddKeyedChatClient Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a chat client to the IServiceCollection.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedChatClient(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey, Func<Microsoft::Extensions::AI::ChatClientBuilder ^, Microsoft::Extensions::AI::IChatClient ^> ^ clientFactory);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedChatClient (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object serviceKey, Func<Microsoft.Extensions.AI.ChatClientBuilder,Microsoft.Extensions.AI.IChatClient> clientFactory);
static member AddKeyedChatClient : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj * Func<Microsoft.Extensions.AI.ChatClientBuilder, Microsoft.Extensions.AI.IChatClient> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddKeyedChatClient (services As IServiceCollection, serviceKey As Object, clientFactory As Func(Of ChatClientBuilder, IChatClient)) As IServiceCollection
Parameters
- services
- IServiceCollection
The IServiceCollection to which the client should be added.
- serviceKey
- Object
The key with which to associate the client.
- clientFactory
- Func<ChatClientBuilder,IChatClient>
The factory to use to construct the IChatClient instance.
Returns
The services
collection.
Remarks
The client is registered as a scoped service.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET