Feat: add isOther to question returned by request user input tool (#9890)

### Summary
Add `isOther` to question object from request_user_input tool input and
remove `other` option from the tool prompt to better handle tool input.
This commit is contained in:
Shijie Rao
2026-01-26 09:52:38 -08:00
committed by GitHub
parent 6316e57497
commit 3ba702c5b6
8 changed files with 25 additions and 2 deletions

View File

@@ -2420,6 +2420,8 @@ pub struct ToolRequestUserInputQuestion {
pub id: String,
pub header: String,
pub question: String,
#[serde(default)]
pub is_other: bool,
pub options: Option<Vec<ToolRequestUserInputOption>>,
}