Registry / ai-ml / mistralai-workflows

mistralai-workflows

JSON →
library3.6.1pypypiunverified

Build reliable AI workflows with Python using Mistral's workflow orchestration. Current version 3.6.1, requires Python 3.12-3.14. Active development with monthly releases.

pip install mistralai-workflows
INSTALL
IMPORT
SIG · MISTRALAI-WORKFLOW
M
mistralai-workflows
ai-mlpythonv3.6.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Workflow
from mistralai.workflows import Workflow
from mistralai_workflows import Workflow

Initialize a workflow with an API key and run it with input data.

import os from mistralai_workflows import Workflow wf = Workflow( api_key=os.environ.get("MISTRAL_API_KEY", ""), workflow_id="your-workflow-id" ) result = wf.run(input_data={"prompt": "Hello"}) print(result)
Debug
Known issues
breakingMistralai-workflows v3.x completely replaced v2.x with a new API. The old mistralai package workflows are not compatible.
fix
Use `from mistralai_workflows import Workflow` and the new run method.
affects: >=3.0.0
gotchaThe package name `mistralai-workflows` is hyphenated, but the import uses underscores: `mistralai_workflows`.
fix
Always use underscores in import statements.
affects: all
deprecatedThe `api_key` parameter is being phased out in favor of `client` parameter passing a `MistralClient` instance.
fix
Use `from mistralai.client import MistralClient; client = MistralClient(api_key=...); wf = Workflow(client=client, workflow_id=...)`
affects: >=3.4.0
Upgrade
Version history
3.6.1latest on PyPI · released Jun 5, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
3 hits · last 30 days
node
2
Resources

No resource links recorded.

mistralai-workflows — pip install mistralai-workflows · libregistry