Add approved dynamic tool arguments steering

This commit is contained in:
Qiyao Qin
2026-03-15 18:28:02 -07:00
parent d692b74007
commit 2aef39aac9
15 changed files with 1344 additions and 9 deletions

View File

@@ -29,6 +29,7 @@ pub struct DynamicToolCallRequest {
pub struct DynamicToolResponse {
pub content_items: Vec<DynamicToolCallOutputContentItem>,
pub success: bool,
pub approved_arguments: Option<JsonValue>,
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, JsonSchema, TS)]