2 writes to ConcurrentInvocation
Microsoft.Extensions.AI.Tests (2)
ChatCompletion\FunctionInvokingChatClientTests.cs (2)
114
Func<ChatClientBuilder, ChatClientBuilder> configure = b => b.Use(s => new FunctionInvokingChatClient(s) {
ConcurrentInvocation
= concurrentInvocation });
154
Func<ChatClientBuilder, ChatClientBuilder> configure = b => b.Use(s => new FunctionInvokingChatClient(s) {
ConcurrentInvocation
= true });
5 references to ConcurrentInvocation
Microsoft.Extensions.AI (4)
ChatCompletion\FunctionInvokingChatClient.cs (4)
32
/// The <see cref="
ConcurrentInvocation
"/> property can be used to control whether multiple function invocation
37
/// <see cref="
ConcurrentInvocation
"/> set to <see langword="false"/>, in case the inner client decided to issue multiple
122
/// By default, such function calls are processed serially. Set <see cref="
ConcurrentInvocation
"/> to
485
if (
ConcurrentInvocation
)
Microsoft.Extensions.AI.Tests (1)
ChatCompletion\FunctionInvokingChatClientTests.cs (1)
35
Assert.False(client.
ConcurrentInvocation
);