feat: enable parallel tool calls (#6796)

This commit is contained in:
jif-oai
2025-11-18 17:10:14 +00:00
committed by GitHub
parent 838531d3e4
commit f5d9939cda
4 changed files with 44 additions and 2 deletions
+8
View File
@@ -50,6 +50,8 @@ pub enum Feature {
RemoteCompaction,
/// Enable the default shell tool.
ShellTool,
/// Allow model to call multiple tools in parallel (only for models supporting it).
ParallelToolCalls,
}
impl Feature {
@@ -313,6 +315,12 @@ pub const FEATURES: &[FeatureSpec] = &[
stage: Stage::Experimental,
default_enabled: false,
},
FeatureSpec {
id: Feature::ParallelToolCalls,
key: "parallel",
stage: Stage::Experimental,
default_enabled: false,
},
FeatureSpec {
id: Feature::ShellTool,
key: "shell_tool",