explain what file was found in workspace

This commit is contained in:
Jochen
2025-11-26 21:43:59 +11:00
parent c6c35bf2ca
commit c58aa80932
3 changed files with 15 additions and 6 deletions

View File

@@ -1297,6 +1297,11 @@ impl<W: UiWriter> Agent<W> {
self.providers.get(None)
}
/// Get a reference to the UI writer
pub fn ui_writer(&self) -> &W {
&self.ui_writer
}
/// Get the current session ID for this agent
pub fn get_session_id(&self) -> Option<&str> {
self.session_id.as_deref()