2 writes to ConcurrentInvocation
Microsoft.Extensions.AI.Tests (2)
ChatCompletion\FunctionInvokingChatClientTests.cs (2)
114Func<ChatClientBuilder, ChatClientBuilder> configure = b => b.Use(s => new FunctionInvokingChatClient(s) { ConcurrentInvocation = concurrentInvocation }); 154Func<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 485if (ConcurrentInvocation)
Microsoft.Extensions.AI.Tests (1)
ChatCompletion\FunctionInvokingChatClientTests.cs (1)
35Assert.False(client.ConcurrentInvocation);