Skip to main content

is_interactive_tool

Function is_interactive_tool 

Source
pub fn is_interactive_tool(tool_name: &str) -> bool
Expand 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"));