RunWorkflow

RunWorkflow

Certified

Run a Mistral Workflow execution

yaml
type: io.kestra.plugin.mistral.RunWorkflow
yaml
id: mistral_run_workflow
namespace: company.team

tasks:
  - id: run_workflow
    type: io.kestra.plugin.mistral.RunWorkflow
    apiKey: "{{ secret('MISTRAL_API_KEY') }}"
    workflowIdentifier: "my-summarization-workflow"
    input:
      text: "Kestra is an open-source orchestration platform."
      language: "en"
    wait: true
    waitTimeout: PT15M
    pollInterval: PT5S

yaml
id: mistral_fire_and_forget
namespace: company.team

tasks:
  - id: start_workflow
    type: io.kestra.plugin.mistral.RunWorkflow
    apiKey: "{{ secret('MISTRAL_API_KEY') }}"
    workflowIdentifier: "my-long-running-workflow"
    input:
      dataset: "kestra://namespace/files/data.csv"
    wait: false
Properties
Defaulthttps://api.mistral.ai/v1
DefaultPT5S
Defaulttrue
DefaultPT15M