5 writes to AllowConcurrentInvocation
Microsoft.Extensions.AI.Tests (5)
ChatCompletion\FunctionInvokingChatClientTests.cs (5)
115s => new FunctionInvokingChatClient(s) { AllowConcurrentInvocation = concurrentInvocation }); 163s => new FunctionInvokingChatClient(s) { AllowConcurrentInvocation = true }); 261functionInvokingChatClient.AllowConcurrentInvocation = allowConcurrentInvocation; 342functionInvokingChatClient.AllowConcurrentInvocation = allowConcurrentInvocation; 913.UseFunctionInvocation(configure: c => { c.AllowConcurrentInvocation = true; c.IncludeDetailedErrors = true; });
5 references to AllowConcurrentInvocation
Microsoft.Extensions.AI (4)
ChatCompletion\FunctionInvokingChatClient.cs (4)
39/// The <see cref="AllowConcurrentInvocation"/> property can be used to control whether multiple function invocation 44/// <see cref="AllowConcurrentInvocation"/> set to <see langword="false"/>, in case the inner client decided to issue multiple 135/// By default, such function calls are processed serially. Set <see cref="AllowConcurrentInvocation"/> to 588if (AllowConcurrentInvocation)
Microsoft.Extensions.AI.Tests (1)
ChatCompletion\FunctionInvokingChatClientTests.cs (1)
36Assert.False(client.AllowConcurrentInvocation);