Skip to content

Commit b17ece7

Browse files
committed
chore: remove xai, grok and mistral from docs.
1 parent a0549e9 commit b17ece7

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Command-line interface for AI-powered coding tasks. Full details available on th
44

55
## Features
66

7-
- 🤖 **AI-Powered**: Leverages Anthropic's Claude, OpenAI models, xAI/Grok, Mistral AI, and Ollama for intelligent coding assistance
7+
- 🤖 **AI-Powered**: Leverages Anthropic's Claude, OpenAI models, and Ollama for intelligent coding assistance
88
- 🛠️ **Extensible Tool System**: Modular architecture with various tool categories
99
- 🔄 **Parallel Execution**: Ability to spawn sub-agents for concurrent task processing
1010
- 📝 **Self-Modification**: Can modify code, it was built and tested by writing itself

packages/cli/README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Command-line interface for AI-powered coding tasks. Full details available on th
44

55
## Features
66

7-
- 🤖 **AI-Powered**: Leverages Anthropic's Claude, OpenAI models, xAI/Grok, Mistral AI, and Ollama for intelligent coding assistance
7+
- 🤖 **AI-Powered**: Leverages Anthropic's Claude, OpenAI models, and Ollama for intelligent coding assistance
88
- 🛠️ **Extensible Tool System**: Modular architecture with various tool categories
99
- 🔄 **Parallel Execution**: Ability to spawn sub-agents for concurrent task processing
1010
- 📝 **Self-Modification**: Can modify code, it was built and tested by writing itself
@@ -117,23 +117,20 @@ export default {
117117
customPrompt: '',
118118
profile: false,
119119
tokenCache: true,
120-
121-
// API keys (better to use environment variables for these)
122-
// ANTHROPIC_API_KEY: 'your-api-key',
123120
};
124121
```
125122

126123
MyCoder will search for configuration in the following places (in order of precedence):
127124

128125
1. CLI options (e.g., `--githubMode true`)
129-
2. Configuration file (`mycoder.config.js`, `.mycoderrc`, etc.)
126+
2. Configuration file (`mycoder.config.js`)
130127
3. Default values
131128

132129
### Model Selection
133130

134131
NOTE: Anthropic Claude 3.7 works the best by far in our testing.
135132

136-
MyCoder supports Anthropic, OpenAI, xAI/Grok, Mistral AI, and Ollama models. You can configure which model provider and model name to use either via CLI options or in your configuration file:
133+
MyCoder supports Anthropic, OpenAI, and Ollama models. You can configure which model provider and model name to use either via CLI options or in your configuration file:
137134

138135
```bash
139136
# Via CLI options (overrides config file)
@@ -202,8 +199,6 @@ mycoder --userSession true "Your prompt here"
202199

203200
- `ANTHROPIC_API_KEY`: Your Anthropic API key (required when using Anthropic models)
204201
- `OPENAI_API_KEY`: Your OpenAI API key (required when using OpenAI models)
205-
- `XAI_API_KEY`: Your xAI API key (required when using xAI/Grok models)
206-
- `MISTRAL_API_KEY`: Your Mistral AI API key (required when using Mistral models)
207202

208203
Note: Ollama models do not require an API key as they run locally or on a specified server.
209204

packages/cli/src/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const sharedOptions = {
3535
provider: {
3636
type: 'string',
3737
description: 'AI model provider to use',
38-
choices: ['anthropic', 'ollama' /*, 'openai', 'xai', 'mistral'*/],
38+
choices: ['anthropic', 'ollama', 'openai' /*, 'xai', 'mistral'*/],
3939
} as const,
4040
model: {
4141
type: 'string',

0 commit comments

Comments
 (0)