Skip to content

Commit ba9a4f4

Browse files
committed
improve README.md to mention Anthropic Claude works best so far.
1 parent 4792296 commit ba9a4f4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

packages/cli/README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,19 @@ mycoder config set modelName gpt-4o-2024-05-13
8282

8383
### Model Selection
8484

85+
NOTE: Anthropic Claude 3.7 works the best by far in our testing.
86+
8587
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:
8688

8789
```bash
90+
# Use Anthropic models [These work the best at this time]
91+
mycoder config set modelProvider anthropic
92+
mycoder config set modelName claude-3-7-sonnet-20250219 # or any other Anthropic model
93+
8894
# Use OpenAI models
8995
mycoder config set modelProvider openai
9096
mycoder config set modelName gpt-4o-2024-05-13 # or any other OpenAI model
9197

92-
# Use Anthropic models
93-
mycoder config set modelProvider anthropic
94-
mycoder config set modelName claude-3-7-sonnet-20250219 # or any other Anthropic model
95-
9698
# Use xAI/Grok models
9799
mycoder config set modelProvider xai
98100
mycoder config set modelName grok-1 # or any other xAI model
@@ -117,7 +119,7 @@ mycoder --modelProvider openai --modelName gpt-4o-2024-05-13 "Your prompt here"
117119

118120
### Available Configuration Options
119121

120-
- `githubMode`: Enable GitHub mode for working with issues and PRs (default: `false`)
122+
- `githubMode`: Enable GitHub mode (requires "gh" cli to be installed) for working with issues and PRs (default: `false`)
121123
- `headless`: Run browser in headless mode with no UI showing (default: `true`)
122124
- `userSession`: Use user's existing browser session instead of sandboxed session (default: `false`)
123125
- `pageFilter`: Method to process webpage content: 'simple', 'none', or 'readability' (default: `none`)

0 commit comments

Comments
 (0)