Skip to content

Interactive Mode

Interactive mode provides a chat shell for multi-turn conversations with context preservation.

Starting Interactive Mode

janito

Without arguments, janito starts an interactive shell:

Welcome to janito! Type 'exit' to quit, 'restart' to clear history.
You: 

Available Commands

In interactive mode, these commands are available:

Command Description
exit / quit End the session
restart Clear conversation history and start fresh
Ctrl+D / Ctrl+Z Exit (EOF)
Ctrl+C Cancel current input
help Show available commands

Chat Commands

Additional commands available in chat:

Command Description
/help Show help information
/mcp add <name> stdio <cmd> Add MCP stdio service
/mcp add <name> http <url> Add MCP HTTP service
/mcp list List MCP services
/mcp remove <name> Remove MCP service

Examples

Basic Chat

$ janito
Welcome to janito! Type 'exit' to quit, 'restart' to clear history.
You: What is Python?
Assistant: Python is a high-level programming language...
You: Tell me more about it
Assistant: Python was created by Guido van Rossum...
You: exit
Goodbye!

Multi-turn with File Operations

$ janito
You: Read the README.md file and summarize it
Assistant: [File content summary]
You: Now create a similar file called backup.md
Assistant: [File created successfully]

Using Tools

$ janito --onedrive
You: List my files in Documents
Assistant: [Lists OneDrive files]
You: Upload notes.txt to the Documents folder
Assistant: [File uploaded]

Tips

  • Conversation History: Messages are kept in context during the session
  • Use restart: Clear history if you want a fresh start
  • Exit gracefully: Use exit or quit for clean exit

Exiting

To exit interactive mode:

# Method 1: Type exit
You: exit

# Method 2: Type quit
You: quit

# Method 3: Press Ctrl+D (Unix/macOS)

# Method 4: Press Ctrl+Z then Enter (Windows)