less is more

This commit is contained in:
2024-11-01 09:32:23 -04:00
parent 9114211867
commit 47ce8069f5
+9 -9
View File
@@ -20,15 +20,15 @@ To specify a specific provider or model, you can use the `llm_provider` and `llm
The APIs remain identical between all supported providers / models:
| Name | `llm_provider` | Default `llm_model` | Notes |
|------|---------------|---------------------|--------|
| [Anthropic's Claude](https://www.anthropic.com/claude) | `"anthropic"` | `"claude-3-sonnet-20240229"` | |
| [Amazon's Bedrock](https://aws.amazon.com/bedrock/) | `"bedrock"` | `"anthropic.claude-3-sonnet-20240229-v1:0"` | use `settings.AMAZON_PROFILE_NAME` |
| [Google's Gemini](https://gemini.google/) | `"gemini"` | `"models/gemini-1.5-pro"` | |
| [Groq's Groq](https://groq.com/) | `"groq"` | `"mixtral-8x7b-32768"` | |
| [Ollama](https://ollama.com) | `"ollama"` | `"llama2"` | Run models locally! |
| [OpenAI's GPT](https://openai.com/gpt) | `"openai"` | `"gpt-4"` | |
| [xAI's Grok](https://x.ai/) | `"xai"` | `"grok-beta"` | No structured output support |
| Name | `llm_provider` | Default `llm_model` |
|------|---------------|---------------------|
| [Anthropic's Claude](https://www.anthropic.com/claude) | `"anthropic"` | `"claude-3-sonnet-20240229"` |
| [Amazon's Bedrock](https://aws.amazon.com/bedrock/) | `"bedrock"` | `"anthropic.claude-3-sonnet-20240229-v1:0"` |
| [Google's Gemini](https://gemini.google/) | `"gemini"` | `"models/gemini-1.5-pro"` |
| [Groq's Groq](https://groq.com/) | `"groq"` | `"mixtral-8x7b-32768"` |
| [Ollama](https://ollama.com) | `"ollama"` | `"llama2"` |
| [OpenAI's GPT](https://openai.com/gpt) | `"openai"` | `"gpt-4"` |
| [xAI's Grok](https://x.ai/) | `"xai"` | `"grok-1"` |
If you want to see Simplemind support additional providers or models, please send a pull request!