docs: add more provider notes (#237)

This commit is contained in:
King 2025-01-29 04:24:42 +08:00 committed by GitHub
parent 6438fb4eda
commit 9638a14e8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -49,8 +49,11 @@ or just `full` to enable all features (`cargo add tokio --features macros,rt-mul
Rig supports the following LLM providers natively:
- OpenAI
- Cohere
- Anthropic
- Perplexity
- Google Gemini
- xAI
- DeepSeek
Additionally, Rig currently has the following integration sub-libraries:
- MongoDB vector store: `rig-mongodb`

View File

@ -63,7 +63,9 @@
//! - Cohere
//! - Anthropic
//! - Perplexity
//! - Gemini
//! - Google Gemini
//! - xAI
//! - DeepSeek
//!
//! You can also implement your own model provider integration by defining types that
//! implement the [CompletionModel](crate::completion::CompletionModel) and [EmbeddingModel](crate::embeddings::EmbeddingModel) traits.