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
Copy file name to clipboardExpand all lines: packages/cli/README.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Command-line interface for AI-powered coding tasks.
4
4
5
5
## Features
6
6
7
-
- 🤖 **AI-Powered**: Leverages Anthropic's Claude, OpenAI models, and Ollama for intelligent coding assistance
7
+
- 🤖 **AI-Powered**: Leverages Anthropic's Claude, OpenAI models, xAI/Grok, Mistral AI, and Ollama for intelligent coding assistance
8
8
- 🛠️ **Extensible Tool System**: Modular architecture with various tool categories
9
9
- 🔄 **Parallel Execution**: Ability to spawn sub-agents for concurrent task processing
10
10
- 📝 **Self-Modification**: Can modify code, it was built and tested by writing itself
@@ -82,7 +82,7 @@ mycoder config set modelName gpt-4o-2024-05-13
82
82
83
83
### Model Selection
84
84
85
-
MyCoder supports Anthropic, OpenAI, and Ollama models. You can configure which model provider and model name to use with the following commands:
85
+
MyCoder supports Anthropic, OpenAI, xAI/Grok, Mistral AI, and Ollama models. You can configure which model provider and model name to use with the following commands:
86
86
87
87
```bash
88
88
# Use OpenAI models
@@ -93,6 +93,14 @@ mycoder config set modelName gpt-4o-2024-05-13 # or any other OpenAI model
93
93
mycoder config set modelProvider anthropic
94
94
mycoder config set modelName claude-3-7-sonnet-20250219 # or any other Anthropic model
95
95
96
+
# Use xAI/Grok models
97
+
mycoder config set modelProvider xai
98
+
mycoder config set modelName grok-1 # or any other xAI model
99
+
100
+
# Use Mistral AI models
101
+
mycoder config set modelProvider mistral
102
+
mycoder config set modelName mistral-large-latest # or any other Mistral model
103
+
96
104
# Use Ollama models (local)
97
105
mycoder config set modelProvider ollama
98
106
mycoder config set modelName llama3-groq-tool-use # or any other model available in your Ollama instance
@@ -135,6 +143,8 @@ mycoder config set ollamaBaseUrl http://your-ollama-server:11434/api
135
143
136
144
-`ANTHROPIC_API_KEY`: Your Anthropic API key (required when using Anthropic models)
137
145
-`OPENAI_API_KEY`: Your OpenAI API key (required when using OpenAI models)
146
+
-`XAI_API_KEY`: Your xAI API key (required when using xAI/Grok models)
147
+
-`MISTRAL_API_KEY`: Your Mistral AI API key (required when using Mistral models)
138
148
139
149
Note: Ollama models do not require an API key as they run locally or on a specified server.
0 commit comments