RunWorkflow
Certified
Run a Mistral Workflow execution
RunWorkflow
Certified
Run a Mistral Workflow execution
yaml
type: io.kestra.plugin.mistral.RunWorkflowExamples
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
apiKey *Requiredstring
workflowIdentifier *Requiredstring
baseUrl string
Default
https://api.mistral.ai/v1deploymentName string
executionId string
input object
pollInterval string
Default
PT5Swait booleanstring
Default
truewaitTimeout string
Default
PT15M