Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ During chat, use these commands:
| `load-config` | `lc` | Load tool and model configuration from a file |
| `reset-config` | `rc` | Reset configuration to defaults (all tools enabled) |
| `reload-servers` | `rs` | Reload all MCP servers with current configuration |
| `quit`, `exit` | `q` or `Ctrl+D` | Exit the client |
| `quit`, `exit`,`bye` | `q` or `Ctrl+D` | Exit the client |


### Tool and Server Selection
Expand Down
2 changes: 1 addition & 1 deletion mcp_client_for_ollama/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ async def chat_loop(self):
# Use await to call the async method
query = await self.get_user_input()

if query.lower() in ['quit', 'q', 'exit']:
if query.lower() in ['quit', 'q', 'exit', 'bye', '/bye']:
self.console.print("[yellow]Exiting...[/yellow]")
break

Expand Down