()
| 368 | # ============================================================ |
| 369 | |
| 370 | def render_help() -> str: |
| 371 | return ( |
| 372 | "Available commands:\n" |
| 373 | " /help Show this help message\n" |
| 374 | " /status Show session status\n" |
| 375 | " /compact Compact conversation history\n" |
| 376 | " /exit Exit the session\n" |
| 377 | ) |
| 378 | |
| 379 | |
| 380 | # ============================================================ |