From 3721fa67135ca4d87e2a738278af3c445990cdf0 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 1 Nov 2024 09:44:54 -0400 Subject: [PATCH] Update table headers in README.md --- README.md | 59 ++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 48 insertions(+), 11 deletions(-) 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`. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Namellm_providerDefault 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"
If you want to see Simplemind support additional providers or models, please send a pull request!