fix openai tool calls, also plan bug where plan is empty.

This commit is contained in:
Jochen
2026-03-23 20:49:58 +11:00
parent 98ca094be7
commit c343dfa2f0
2 changed files with 51 additions and 13 deletions

View File

@@ -815,7 +815,7 @@ pub async fn execute_plan_read<W: UiWriter>(
}
None => {
ctx.ui_writer.print_plan_compact(None, None, false);
Ok(String::new())
Ok("No plan exists yet. Use plan_write to create one.".to_string())
}
}
}