pub fn is_interactive_tool(tool_name: &str) -> boolExpand description
Return whether the tool requires interactive user input.
ยงExamples
use codetether_agent::session::helper::runtime::is_interactive_tool;
assert!(is_interactive_tool("question"));
assert!(!is_interactive_tool("read"));