Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Once that is saved to a file, you can run it with `uv run script.py` where

### Agents extra dependencies

When using the agents related feature it is required to add the `agents` extra dependencies. This can be added when
When using the agents related feature it is required to add the `agents` extra dependencies. This can be added when
installing the package:

```bash
Expand All @@ -127,6 +127,14 @@ pip install "mistralai[agents]"

> Note: These features require Python 3.10+ (the SDK minimum).

### Additional packages

Additional `mistralai-*` packages (e.g. `mistralai-workflows`) can be installed separately and are available under the `mistralai` namespace:

```bash
pip install mistralai-workflows
```

<!-- Start SDK Example Usage [usage] -->
## SDK Example Usage

Expand Down Expand Up @@ -410,7 +418,7 @@ gcloud auth application-default login
Install the extras dependencies specific to Google Cloud:

```bash
pip install mistralai[gcp]
pip install "mistralai[gcp]"
```

**Step 2: Example Usage**
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies = [
"opentelemetry-sdk (>=1.33.1,<2.0.0)",
"opentelemetry-api (>=1.33.1,<2.0.0)",
"opentelemetry-exporter-otlp-proto-http (>=1.37.0,<2.0.0)",
"opentelemetry-semantic-conventions (>=0.59b0,<0.60)",
"opentelemetry-semantic-conventions (>=0.59b0,<0.61)",
]

[project.optional-dependencies]
Expand Down
Loading