Kick off the full-screen chat UI (banner printed by the handler).
(
tool_manager,
*,
provider: str,
model: str,
)
| 255 | # specialised helpers (chat / interactive) # |
| 256 | # --------------------------------------------------------------------------- # |
| 257 | async def _enter_chat_mode( |
| 258 | tool_manager, |
| 259 | *, |
| 260 | provider: str, |
| 261 | model: str, |
| 262 | ) -> bool: |
| 263 | """Kick off the full-screen chat UI (banner printed by the handler).""" |
| 264 | from mcp_cli.chat.chat_handler import handle_chat_mode |
| 265 | |
| 266 | return await handle_chat_mode( |
| 267 | tool_manager, |
| 268 | provider=provider, |
| 269 | model=model, |
| 270 | ) |
| 271 | |
| 272 | |
| 273 | async def _enter_interactive_mode( |