@aiiware/aii 0.11.11 → 0.11.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +4 -4
  2. package/bin/aii +915 -838
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -67,9 +67,9 @@ You get a rich terminal UI with streaming responses, syntax highlighting, diff p
67
67
  ### Switch models on the fly
68
68
 
69
69
  ```bash
70
- aii --model ollama:llama3.1:8b write a bash one-liner to find large files
71
- aii --model deepseek:deepseek-chat explain this regex
72
- aii --model openai:gpt-4.1 refactor this function
70
+ aii --model ollama/llama3.1:8b write a bash one-liner to find large files
71
+ aii --model deepseek/deepseek-chat explain this regex
72
+ aii --model openai/gpt-4.1 refactor this function
73
73
  ```
74
74
 
75
75
  Or during a session: `/model anthropic:claude-sonnet-4`
@@ -326,7 +326,7 @@ Environment variables also work: `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `DEEPSEE
326
326
 
327
327
  | Flag | Description |
328
328
  |------|-------------|
329
- | `--model <name>` | Override model (e.g., `deepseek:deepseek-chat`) |
329
+ | `--model <name>` | Override model (e.g., `deepseek/deepseek-chat`) |
330
330
  | `--auto` | Auto-approve all tool actions |
331
331
  | `-y`, `--yes` | Auto-confirm prompts |
332
332
  | `-c`, `--continue-chat <id>` | Resume a specific session |