You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update provider lists and add Chat Mode documentation
Problem: Documentation was missing new providers (Ollama Cloud, Z.AI) and
Chat Mode feature that were added in recent sessions.
Solution:
- Update provider counts from 10 to 13 across docs
- Add Ollama Cloud and Z.AI to all provider lists
- Add Ollama Cloud setup section to PROVIDERS.md
- Add Chat Mode documentation to FEATURES.md
- Add Chat Mode to SANDBOX.md and USER_GUIDE.md
Testing: Syntax checks pass on all modified files
Copy file name to clipboardExpand all lines: docs/ARCHITECTURE.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
## Quick Overview
8
8
9
-
CLIO is a **terminal-first AI code assistant** built in Perl. It integrates AI models (GitHub Copilot, OpenAI, Google, OpenRouter) with local tools (file operations, git, terminal) to help developers work more effectively.
9
+
CLIO is a **terminal-first AI code assistant** built in Perl. It integrates AI models (GitHub Copilot, OpenAI, Google, OpenRouter, Ollama Cloud, MiniMax, Z.AI) with local tools (file operations, git, terminal) to help developers work more effectively.
Copy file name to clipboardExpand all lines: docs/FEATURES.md
+22-1Lines changed: 22 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,24 @@ CLIO uses conservative sampling defaults tuned for reliable tool use. When worki
117
117
118
118
Overrides are saved globally and visible in `/api show`. Provider-recommended defaults (e.g. MiniMax's `temperature=1.0`) are applied automatically when no override is set - you only need to set these if you want to change from the provider recommendation.
119
119
120
+
### Chat Mode
121
+
122
+
For conversational AI without file modifications, use chat mode:
123
+
124
+
```
125
+
clio --chat --new
126
+
```
127
+
128
+
Chat mode:
129
+
- Auto-enables sandbox mode for safety
130
+
- Restricts tools to: web, file read, memory, interact, todos
131
+
- Uses a lighter system prompt optimized for chat
132
+
133
+
This is useful for:
134
+
- Quick questions without modifying code
135
+
- Web searches and research
136
+
- Explaining concepts or debugging help
137
+
120
138
### Iteration and Error Recovery
121
139
122
140
When something goes wrong - a syntax error, a failed test, an unexpected file structure - CLIO doesn't stop. It reads the error, adjusts its approach, and tries again. In interactive mode CLIO has no iteration limit. In non-interactive mode (scripting, sub-agents) a default of 75 iterations applies. Both are configurable.
@@ -241,7 +259,7 @@ Connect to external tool servers via the Model Context Protocol. See [MCP Integr
241
259
242
260
## 3. AI Providers
243
261
244
-
CLIO supports 10 AI providers out of the box. Switch between them at any time - even mid-session.
262
+
CLIO supports 13 AI providers out of the box. Switch between them at any time - even mid-session.
245
263
246
264
| Provider | Type | Authentication |
247
265
|----------|------|---------------|
@@ -250,7 +268,10 @@ CLIO supports 10 AI providers out of the box. Switch between them at any time -
250
268
|**Google Gemini**| Cloud | API key |
251
269
|**DeepSeek**| Cloud | API key |
252
270
|**OpenRouter**| Cloud | API key |
271
+
|**Ollama Cloud**| Cloud | API key |
253
272
|**MiniMax**| Cloud | API key (Token Plan support) |
0 commit comments