Skip to content

Is this feature from Open AI supported by Semantic Kernel - force the model to always call one or more functions, you can set tool_choice: "required". #6971

Closed Answered by dmytrostruk
EVENFLOW212 asked this question in Q&A
Discussion options

You must be logged in to vote

@EVENFLOW212 Yes, it is supported by using ToolCallBehavior.RequireFunction() in execution settings:

var executionSettings = new OpenAIPromptExecutionSettings
{
ToolCallBehavior = ToolCallBehavior.RequireFunction(function.Metadata.ToOpenAIFunction(), autoInvoke: true)
};

As for now it accepts only one function, but we are working on new function calling abstractions that will accept multiple required functions to call.

Thank you!

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@EVENFLOW212
Comment options

@SergeyMenshykh
Comment options

Answer selected by dmytrostruk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants