Metadata-Version: 2.4
Name: enthusiast-model-mistral
Version: 1.2.0
Summary: A plugin for Enthusiast that provides an Mistral connector.
Author: Damian Sowiński
Author-email: damian.sowinski@upsidelab.io
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: enthusiast-common (>=1.6.0,<2)
Requires-Dist: langchain-core (>=0.3.83,<0.4.0)
Requires-Dist: langchain-mistralai (>=0.2.11,<0.3.0)
Requires-Dist: mistralai (>=1.9.10,<2.0.0)
Description-Content-Type: text/markdown

# Mistral AI Models

This Enthusiast plugin enables Mistral AI models for generating embeddings and LLMs.

## Installation

Run the following command inside your application directory:

```shell
pip install enthusiast-model-mistral
```

## Configuration

Register the providers in your `settings_override.py`:

```python
CATALOG_LANGUAGE_MODEL_PROVIDERS = [
    'enthusiast_model_mistral.MistralAILanguageModelProvider',
]

CATALOG_EMBEDDING_PROVIDERS = [
    'enthusiast_model_mistral.MistralAIEmbeddingProvider',
]
```

Set the required environment variable:

```
MISTRAL_API_KEY=<your_mistral_api_key>
```

