
Mistral
Installation
Run the following command inside your application directory.
If you're using Enthusiast Starter, that's inside enthusiast-starter/src/
poetry add enthusiast-model-mistralSet variables inside .env file.
MISTRAL_API_KEY=<value_here>Then, register the integration in your config/settings_override.py.
CATALOG_LANGUAGE_MODEL_PROVIDERS = {
...
"Mistral": "enthusiast_model_mistral.MistralAILanguageModelProvider",
}CATALOG_EMBEDDING_PROVIDERS = {
...
"Mistral": "enthusiast_model_mistral.MistralAIEmbeddingProvider",
}Last updated on