diff --git a/README.md b/README.md index 344660f..2ff5a73 100644 --- a/README.md +++ b/README.md @@ -16,19 +16,56 @@ With Simplemind, tapping into AI is as easy as a friendly conversation. ## Supported APIs +To specify a specific provider or model, you can use the `llm_provider` and `llm_model` parameters when calling: `generate_text`, `generate_data`, or `create_conversation`. + The APIs remain identical between all supported providers / models: -| | `llm_provider` | `llm_model` (default)| -|---------------|----------------|-----------------------| -| [Anthropic's Claude](https://www.anthropic.com/claude) | `"anthropic"` | `"claude-3-sonnet-20241022"` | -| [Amazon's Bedrock](https://aws.amazon.com/bedrock/) | `"amazon"` | `"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"` | `"llama3-8b-8192"` | -| [Ollama](https://ollama.com) | `"ollama"` | `"llama3.2"` | -| [OpenAI's GPT](https://openai.com/gpt) | `"openai"` | `"gpt-4o-mini"` | -| [xAI's Grok](https://x.ai/) | `"xai"` | `"grok-beta"` | - -To specify a specific provider or model, you can use the `llm_provider` and `llm_model` parameters when calling: `generate_text`, `generate_data`, or `create_conversation`. +
| Name | +llm_provider |
+ Default llm_model |
+
|---|---|---|
| Anthropic's Claude | +"anthropic" |
+ "claude-3-sonnet-20240229" |
+
| Amazon's Bedrock | +"bedrock" |
+ "anthropic.claude-3-sonnet-20240229-v1:0" |
+
| Google's Gemini | +"gemini" |
+ "models/gemini-1.5-pro" |
+
| Groq's Groq | +"groq" |
+ "mixtral-8x7b-32768" |
+
| Ollama | +"ollama" |
+ "llama2" |
+
| OpenAI's GPT | +"openai" |
+ "gpt-4" |
+
| xAI's Grok | +"xai" |
+ "grok-1" |
+