fix: Clarified user text input interaction

This commit is contained in:
2026-03-30 16:27:22 -06:00
parent b19655087e
commit 41200a71f6
+1 -1
View File
@@ -181,7 +181,7 @@ fn handle_direct_input(args: &Value) -> Result<Value> {
.and_then(Value::as_str)
.ok_or_else(|| anyhow!("'question' is required"))?;
let answer = Text::new(question).prompt()?;
let answer = Text::new(&format!("{question}\nYour answer: ")).prompt()?;
Ok(json!({ "answer": answer }))
}