2 writes to ConcurrentInvocation
Microsoft.Extensions.AI.Tests (2)
ChatCompletion\FunctionInvokingChatClientTests.cs (2)
83], configurePipeline: b => b.Use(s => new FunctionInvokingChatClient(s) { ConcurrentInvocation = concurrentInvocation })); 113], configurePipeline: b => b.Use(s => new FunctionInvokingChatClient(s) { ConcurrentInvocation = true }));
5 references to ConcurrentInvocation
Microsoft.Extensions.AI (4)
ChatCompletion\FunctionInvokingChatClient.cs (4)
28/// The <see cref="ConcurrentInvocation"/> property may be used to control whether multiple function invocation 33/// <see cref="ConcurrentInvocation"/> set to <see langword="false"/>, in case the inner client decided to issue multiple 106/// By default, such function calls are processed serially. Set <see cref="ConcurrentInvocation"/> to 418if (ConcurrentInvocation)
Microsoft.Extensions.AI.Tests (1)
ChatCompletion\FunctionInvokingChatClientTests.cs (1)
21Assert.False(client.ConcurrentInvocation);