Need to disable parallel_tool_calling in .net too #9661
Closed
kenvanhyning
started this conversation in
General
Replies: 2 comments
-
Hi @kenvanhyning, thanks for your question. The ability to toggle You'll want to do the following: FunctionChoiceBehaviorOptions options = new() { AllowParallelCalls = false };
OpenAIPromptExecutionSettings settings = new() { FunctionChoiceBehavior = FunctionChoiceBehavior.Auto(options: options) }; |
Beta Was this translation helpful? Give feedback.
0 replies
-
Great - thank you! I'll try this out now. Appreciate the quick response. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My team is working on a .net SK application and we want to use gpt-4o mini but we're seeing the 'string does not match pattern' error regularly with that model.
I saw at the end of the thread on this issue: #8292
that support for .net to disable parallel tool calling is coming soon. I didn't see any issue for it though. Any idea on when it will be available?
Beta Was this translation helpful? Give feedback.
All reactions