KosmoKrator

productivity

Mistral AI Lua API for KosmoKrator Agents

Agent-facing Lua documentation and function reference for the Mistral AI KosmoKrator integration.

Lua Namespace

Agents call this integration through app.integrations.mistral.*. Use lua_read_doc("integrations.mistral") inside KosmoKrator to discover the same reference at runtime.

Call Lua from the Headless CLI

Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic Mistral AI workflow without starting an interactive agent session.

Inline Lua call
kosmo integrations:lua --eval 'dump(app.integrations.mistral.agents_completions({}))' --json
Read Lua docs headlessly
kosmo integrations:lua --eval 'print(docs.read("mistral"))' --json
kosmo integrations:lua --eval 'print(docs.read("mistral.agents_completions"))' --json

Workflow file

Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.

workflow.lua
local mistral = app.integrations.mistral
local result = mistral.agents_completions({})

dump(result)
Run the workflow
kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json
Namespace note. integrations:lua exposes app.integrations.mistral, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.mistral.default.* or app.integrations.mistral.work.* when you configured named credential accounts.

MCP-only Lua

If the script only needs configured MCP servers and does not need Mistral AI, use the narrower mcp:lua command.

MCP Lua command
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json

Agent-Facing Lua Docs

This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.

Mistral AI

Namespace: mistral

Mistral AI provides language models, agents, conversations, OCR, files, fine-tuning, batch inference, audio, and document libraries. This integration uses the Mistral REST API with Authorization: Bearer <api_key>.

Default API URL: https://api.mistral.ai

Usage notes

  • Write endpoints accept a body object that matches the official Mistral API request schema. This keeps the tools aligned with the current OpenAPI spec as fields change.
  • List endpoints accept a query object for pagination and filters.
  • Multipart endpoints use file_path plus optional body fields: mistral_upload_file and mistral_upload_library_document.
  • Binary responses such as generated speech, file downloads, and voice samples are returned as a body string with content_type and status metadata when the API does not return JSON.
  • Stream-style endpoints are exposed as normal request/response tools that return the response body. Hosts that need incremental streaming should wrap those endpoints with a streaming transport outside the Lua bridge.

Core inference

  • mistral_list_models, mistral_retrieve_model, mistral_delete_model
  • mistral_chat_completions, mistral_fim_completions, mistral_agents_completions
  • mistral_embeddings
  • mistral_moderations, mistral_chat_moderations
  • mistral_ocr
  • mistral_classifications, mistral_chat_classifications

Agents and conversations

  • mistral_start_conversation, mistral_list_conversations, mistral_get_conversation, mistral_delete_conversation, mistral_append_conversation, mistral_conversation_history, mistral_conversation_messages, mistral_restart_conversation
  • mistral_create_agent, mistral_list_agents, mistral_get_agent, mistral_update_agent, mistral_delete_agent, mistral_update_agent_version, mistral_list_agent_versions, mistral_get_agent_version, mistral_upsert_agent_alias, mistral_list_agent_aliases, mistral_delete_agent_alias

Files, fine-tuning, and batch

  • mistral_upload_file, mistral_list_files, mistral_retrieve_file, mistral_delete_file, mistral_download_file, mistral_get_file_url
  • mistral_list_fine_tuning_jobs, mistral_create_fine_tuning_job, mistral_get_fine_tuning_job, mistral_cancel_fine_tuning_job, mistral_start_fine_tuning_job, mistral_update_fine_tuned_model, mistral_archive_fine_tuned_model, mistral_unarchive_fine_tuned_model
  • mistral_list_batch_jobs, mistral_create_batch_job, mistral_get_batch_job, mistral_cancel_batch_job

Audio and libraries

  • mistral_transcribe_audio, mistral_speech
  • mistral_list_voices, mistral_create_voice, mistral_get_voice, mistral_update_voice, mistral_delete_voice, mistral_get_voice_sample
  • mistral_list_libraries, mistral_create_library, mistral_get_library, mistral_update_library, mistral_delete_library
  • mistral_list_library_documents, mistral_upload_library_document, mistral_get_library_document, mistral_update_library_document, mistral_delete_library_document, mistral_get_library_document_text, mistral_get_library_document_status, mistral_get_library_document_signed_url, mistral_get_library_document_extracted_text_url, mistral_reprocess_library_document
  • mistral_list_library_shares, mistral_create_library_share, mistral_delete_library_share

Observability and workflows

  • Chat completion event search, ID search, event lookup, similar events, field lookup, field option lookup, option counting, and live event judging.
  • Judges: create, list, get, update, delete, and live judging.
  • Campaigns: create, list, get, delete, status, and selected events.
  • Observability datasets: create, list, get, update, delete, records, imports, JSONL export, import task lookup, record lookup, bulk delete, live judging, payload update, and property update.
  • Workflows: executions, history, signals, queries, terminate/cancel/reset, trace endpoints, event streams, metrics, runs, schedules, deployments, registrations, execute, update, archive, and unarchive.

Examples

Chat completion:

local response = mistral_chat_completions({
  body = {
    model = "mistral-small-latest",
    messages = {
      { role = "user", content = "Write a concise status update." }
    }
  }
})

OCR from a document URL:

local result = mistral_ocr({
  body = {
    model = "mistral-ocr-latest",
    document = {
      type = "document_url",
      document_url = "https://example.test/sample.pdf"
    }
  }
})

Upload a batch JSONL file:

local uploaded = mistral_upload_file({
  file_path = "/tmp/batch.jsonl",
  body = { purpose = "batch" }
})

Create a batch job:

local job = mistral_create_batch_job({
  body = {
    input_files = { "file-id" },
    endpoint = "/v1/chat/completions",
    model = "mistral-small-latest"
  }
})

Upload a library document:

local document = mistral_upload_library_document({
  library_id = "library-id",
  file_path = "/tmp/knowledge.pdf",
  body = { name = "Knowledge PDF" }
})

Coverage notes

This package maps the current official OpenAPI REST surface into one operation per tool, excluding duplicate documentation-only anchors where the spec repeats the same path for streaming examples. High-risk workflow and observability write tools are exposed because they are official API operations; configure host write policies accordingly.

Raw agent markdown
# Mistral AI

Namespace: `mistral`

Mistral AI provides language models, agents, conversations, OCR, files,
fine-tuning, batch inference, audio, and document libraries. This integration
uses the Mistral REST API with `Authorization: Bearer <api_key>`.

Default API URL: `https://api.mistral.ai`

## Usage notes

- Write endpoints accept a `body` object that matches the official Mistral API
  request schema. This keeps the tools aligned with the current OpenAPI spec as
  fields change.
- List endpoints accept a `query` object for pagination and filters.
- Multipart endpoints use `file_path` plus optional `body` fields:
  `mistral_upload_file` and `mistral_upload_library_document`.
- Binary responses such as generated speech, file downloads, and voice samples
  are returned as a `body` string with `content_type` and `status` metadata when
  the API does not return JSON.
- Stream-style endpoints are exposed as normal request/response tools that
  return the response body. Hosts that need incremental streaming should wrap
  those endpoints with a streaming transport outside the Lua bridge.

## Core inference

- `mistral_list_models`, `mistral_retrieve_model`, `mistral_delete_model`
- `mistral_chat_completions`, `mistral_fim_completions`,
  `mistral_agents_completions`
- `mistral_embeddings`
- `mistral_moderations`, `mistral_chat_moderations`
- `mistral_ocr`
- `mistral_classifications`, `mistral_chat_classifications`

## Agents and conversations

- `mistral_start_conversation`, `mistral_list_conversations`,
  `mistral_get_conversation`, `mistral_delete_conversation`,
  `mistral_append_conversation`, `mistral_conversation_history`,
  `mistral_conversation_messages`, `mistral_restart_conversation`
- `mistral_create_agent`, `mistral_list_agents`, `mistral_get_agent`,
  `mistral_update_agent`, `mistral_delete_agent`,
  `mistral_update_agent_version`, `mistral_list_agent_versions`,
  `mistral_get_agent_version`, `mistral_upsert_agent_alias`,
  `mistral_list_agent_aliases`, `mistral_delete_agent_alias`

## Files, fine-tuning, and batch

- `mistral_upload_file`, `mistral_list_files`, `mistral_retrieve_file`,
  `mistral_delete_file`, `mistral_download_file`, `mistral_get_file_url`
- `mistral_list_fine_tuning_jobs`, `mistral_create_fine_tuning_job`,
  `mistral_get_fine_tuning_job`, `mistral_cancel_fine_tuning_job`,
  `mistral_start_fine_tuning_job`, `mistral_update_fine_tuned_model`,
  `mistral_archive_fine_tuned_model`, `mistral_unarchive_fine_tuned_model`
- `mistral_list_batch_jobs`, `mistral_create_batch_job`,
  `mistral_get_batch_job`, `mistral_cancel_batch_job`

## Audio and libraries

- `mistral_transcribe_audio`, `mistral_speech`
- `mistral_list_voices`, `mistral_create_voice`, `mistral_get_voice`,
  `mistral_update_voice`, `mistral_delete_voice`, `mistral_get_voice_sample`
- `mistral_list_libraries`, `mistral_create_library`, `mistral_get_library`,
  `mistral_update_library`, `mistral_delete_library`
- `mistral_list_library_documents`, `mistral_upload_library_document`,
  `mistral_get_library_document`, `mistral_update_library_document`,
  `mistral_delete_library_document`, `mistral_get_library_document_text`,
  `mistral_get_library_document_status`,
  `mistral_get_library_document_signed_url`,
  `mistral_get_library_document_extracted_text_url`,
  `mistral_reprocess_library_document`
- `mistral_list_library_shares`, `mistral_create_library_share`,
  `mistral_delete_library_share`

## Observability and workflows

- Chat completion event search, ID search, event lookup, similar events, field
  lookup, field option lookup, option counting, and live event judging.
- Judges: create, list, get, update, delete, and live judging.
- Campaigns: create, list, get, delete, status, and selected events.
- Observability datasets: create, list, get, update, delete, records, imports,
  JSONL export, import task lookup, record lookup, bulk delete, live judging,
  payload update, and property update.
- Workflows: executions, history, signals, queries, terminate/cancel/reset,
  trace endpoints, event streams, metrics, runs, schedules, deployments,
  registrations, execute, update, archive, and unarchive.

## Examples

Chat completion:

```lua
local response = mistral_chat_completions({
  body = {
    model = "mistral-small-latest",
    messages = {
      { role = "user", content = "Write a concise status update." }
    }
  }
})
```

OCR from a document URL:

```lua
local result = mistral_ocr({
  body = {
    model = "mistral-ocr-latest",
    document = {
      type = "document_url",
      document_url = "https://example.test/sample.pdf"
    }
  }
})
```

Upload a batch JSONL file:

```lua
local uploaded = mistral_upload_file({
  file_path = "/tmp/batch.jsonl",
  body = { purpose = "batch" }
})
```

Create a batch job:

```lua
local job = mistral_create_batch_job({
  body = {
    input_files = { "file-id" },
    endpoint = "/v1/chat/completions",
    model = "mistral-small-latest"
  }
})
```

Upload a library document:

```lua
local document = mistral_upload_library_document({
  library_id = "library-id",
  file_path = "/tmp/knowledge.pdf",
  body = { name = "Knowledge PDF" }
})
```

## Coverage notes

This package maps the current official OpenAPI REST surface into one operation
per tool, excluding duplicate documentation-only anchors where the spec repeats
the same path for streaming examples. High-risk workflow and observability write
tools are exposed because they are official API operations; configure host write
policies accordingly.
Metadata-derived Lua example
local result = app.integrations.mistral.agents_completions({})
print(result)

Functions

agents_completions Read

Mistral Agents Completions

Lua path
app.integrations.mistral.agents_completions
Full name
mistral.mistral_agents_completions
ParameterTypeRequiredDescription
No parameters.
append_conversation Read

Mistral Append Conversation

Lua path
app.integrations.mistral.append_conversation
Full name
mistral.mistral_append_conversation
ParameterTypeRequiredDescription
No parameters.
archive_fine_tuned_model Write

Mistral Archive Fine Tuned Model

Lua path
app.integrations.mistral.archive_fine_tuned_model
Full name
mistral.mistral_archive_fine_tuned_model
ParameterTypeRequiredDescription
No parameters.
archive_workflow Write

Mistral Archive Workflow

Lua path
app.integrations.mistral.archive_workflow
Full name
mistral.mistral_archive_workflow
ParameterTypeRequiredDescription
No parameters.
batch_cancel_workflow_executions Write

Mistral Batch Cancel Workflow Executions

Lua path
app.integrations.mistral.batch_cancel_workflow_executions
Full name
mistral.mistral_batch_cancel_workflow_executions
ParameterTypeRequiredDescription
No parameters.
batch_terminate_workflow_executions Read

Mistral Batch Terminate Workflow Executions

Lua path
app.integrations.mistral.batch_terminate_workflow_executions
Full name
mistral.mistral_batch_terminate_workflow_executions
ParameterTypeRequiredDescription
No parameters.
bulk_delete_observability_dataset_records Write

Mistral Bulk Delete Observability Dataset Records

Lua path
app.integrations.mistral.bulk_delete_observability_dataset_records
Full name
mistral.mistral_bulk_delete_observability_dataset_records
ParameterTypeRequiredDescription
No parameters.
cancel_batch_job Write

Mistral Cancel Batch Job

Lua path
app.integrations.mistral.cancel_batch_job
Full name
mistral.mistral_cancel_batch_job
ParameterTypeRequiredDescription
No parameters.
cancel_fine_tuning_job Write

Mistral Cancel Fine Tuning Job

Lua path
app.integrations.mistral.cancel_fine_tuning_job
Full name
mistral.mistral_cancel_fine_tuning_job
ParameterTypeRequiredDescription
No parameters.
cancel_workflow_execution Write

Mistral Cancel Workflow Execution

Lua path
app.integrations.mistral.cancel_workflow_execution
Full name
mistral.mistral_cancel_workflow_execution
ParameterTypeRequiredDescription
No parameters.
chat_classifications Read

Mistral Chat Classifications

Lua path
app.integrations.mistral.chat_classifications
Full name
mistral.mistral_chat_classifications
ParameterTypeRequiredDescription
No parameters.
chat_completions Read

Mistral Chat Completions

Lua path
app.integrations.mistral.chat_completions
Full name
mistral.mistral_chat_completions
ParameterTypeRequiredDescription
No parameters.
chat_moderations Read

Mistral Chat Moderations

Lua path
app.integrations.mistral.chat_moderations
Full name
mistral.mistral_chat_moderations
ParameterTypeRequiredDescription
No parameters.
classifications Read

Mistral Classifications

Lua path
app.integrations.mistral.classifications
Full name
mistral.mistral_classifications
ParameterTypeRequiredDescription
No parameters.
conversation_history Read

Mistral Conversation History

Lua path
app.integrations.mistral.conversation_history
Full name
mistral.mistral_conversation_history
ParameterTypeRequiredDescription
No parameters.
conversation_messages Read

Mistral Conversation Messages

Lua path
app.integrations.mistral.conversation_messages
Full name
mistral.mistral_conversation_messages
ParameterTypeRequiredDescription
No parameters.
count_chat_completion_field_options Read

Mistral Count Chat Completion Field Options

Lua path
app.integrations.mistral.count_chat_completion_field_options
Full name
mistral.mistral_count_chat_completion_field_options
ParameterTypeRequiredDescription
No parameters.
create_agent Write

Mistral Create Agent

Lua path
app.integrations.mistral.create_agent
Full name
mistral.mistral_create_agent
ParameterTypeRequiredDescription
No parameters.
create_batch_job Write

Mistral Create Batch Job

Lua path
app.integrations.mistral.create_batch_job
Full name
mistral.mistral_create_batch_job
ParameterTypeRequiredDescription
No parameters.
create_campaign Write

Mistral Create Campaign

Lua path
app.integrations.mistral.create_campaign
Full name
mistral.mistral_create_campaign
ParameterTypeRequiredDescription
No parameters.
create_fine_tuning_job Write

Mistral Create Fine Tuning Job

Lua path
app.integrations.mistral.create_fine_tuning_job
Full name
mistral.mistral_create_fine_tuning_job
ParameterTypeRequiredDescription
No parameters.
create_judge Write

Mistral Create Judge

Lua path
app.integrations.mistral.create_judge
Full name
mistral.mistral_create_judge
ParameterTypeRequiredDescription
No parameters.
create_library Write

Mistral Create Library

Lua path
app.integrations.mistral.create_library
Full name
mistral.mistral_create_library
ParameterTypeRequiredDescription
No parameters.
create_library_share Write

Mistral Create Library Share

Lua path
app.integrations.mistral.create_library_share
Full name
mistral.mistral_create_library_share
ParameterTypeRequiredDescription
No parameters.
create_observability_dataset Write

Mistral Create Observability Dataset

Lua path
app.integrations.mistral.create_observability_dataset
Full name
mistral.mistral_create_observability_dataset
ParameterTypeRequiredDescription
No parameters.
create_observability_dataset_record Write

Mistral Create Observability Dataset Record

Lua path
app.integrations.mistral.create_observability_dataset_record
Full name
mistral.mistral_create_observability_dataset_record
ParameterTypeRequiredDescription
No parameters.
create_voice Write

Mistral Create Voice

Lua path
app.integrations.mistral.create_voice
Full name
mistral.mistral_create_voice
ParameterTypeRequiredDescription
No parameters.
delete_agent Write

Mistral Delete Agent

Lua path
app.integrations.mistral.delete_agent
Full name
mistral.mistral_delete_agent
ParameterTypeRequiredDescription
No parameters.
delete_agent_alias Write

Mistral Delete Agent Alias

Lua path
app.integrations.mistral.delete_agent_alias
Full name
mistral.mistral_delete_agent_alias
ParameterTypeRequiredDescription
No parameters.
delete_campaign Write

Mistral Delete Campaign

Lua path
app.integrations.mistral.delete_campaign
Full name
mistral.mistral_delete_campaign
ParameterTypeRequiredDescription
No parameters.
delete_conversation Write

Mistral Delete Conversation

Lua path
app.integrations.mistral.delete_conversation
Full name
mistral.mistral_delete_conversation
ParameterTypeRequiredDescription
No parameters.
delete_file Write

Mistral Delete File

Lua path
app.integrations.mistral.delete_file
Full name
mistral.mistral_delete_file
ParameterTypeRequiredDescription
No parameters.
delete_judge Write

Mistral Delete Judge

Lua path
app.integrations.mistral.delete_judge
Full name
mistral.mistral_delete_judge
ParameterTypeRequiredDescription
No parameters.
delete_library Write

Mistral Delete Library

Lua path
app.integrations.mistral.delete_library
Full name
mistral.mistral_delete_library
ParameterTypeRequiredDescription
No parameters.
delete_library_document Write

Mistral Delete Library Document

Lua path
app.integrations.mistral.delete_library_document
Full name
mistral.mistral_delete_library_document
ParameterTypeRequiredDescription
No parameters.
delete_library_share Write

Mistral Delete Library Share

Lua path
app.integrations.mistral.delete_library_share
Full name
mistral.mistral_delete_library_share
ParameterTypeRequiredDescription
No parameters.
delete_model Write

Mistral Delete Model

Lua path
app.integrations.mistral.delete_model
Full name
mistral.mistral_delete_model
ParameterTypeRequiredDescription
No parameters.
delete_observability_dataset Write

Mistral Delete Observability Dataset

Lua path
app.integrations.mistral.delete_observability_dataset
Full name
mistral.mistral_delete_observability_dataset
ParameterTypeRequiredDescription
No parameters.
delete_observability_dataset_record Write

Mistral Delete Observability Dataset Record

Lua path
app.integrations.mistral.delete_observability_dataset_record
Full name
mistral.mistral_delete_observability_dataset_record
ParameterTypeRequiredDescription
No parameters.
delete_voice Write

Mistral Delete Voice

Lua path
app.integrations.mistral.delete_voice
Full name
mistral.mistral_delete_voice
ParameterTypeRequiredDescription
No parameters.
download_file Read

Mistral Download File

Lua path
app.integrations.mistral.download_file
Full name
mistral.mistral_download_file
ParameterTypeRequiredDescription
No parameters.
embeddings Read

Mistral Embeddings

Lua path
app.integrations.mistral.embeddings
Full name
mistral.mistral_embeddings
ParameterTypeRequiredDescription
No parameters.
execute_workflow Read

Mistral Execute Workflow

Lua path
app.integrations.mistral.execute_workflow
Full name
mistral.mistral_execute_workflow
ParameterTypeRequiredDescription
No parameters.
execute_workflow_registration Read

Mistral Execute Workflow Registration

Lua path
app.integrations.mistral.execute_workflow_registration
Full name
mistral.mistral_execute_workflow_registration
ParameterTypeRequiredDescription
No parameters.
export_observability_dataset_jsonl Read

Mistral Export Observability Dataset Jsonl

Lua path
app.integrations.mistral.export_observability_dataset_jsonl
Full name
mistral.mistral_export_observability_dataset_jsonl
ParameterTypeRequiredDescription
No parameters.
fim_completions Read

Mistral Fim Completions

Lua path
app.integrations.mistral.fim_completions
Full name
mistral.mistral_fim_completions
ParameterTypeRequiredDescription
No parameters.
get_agent Read

Mistral Get Agent

Lua path
app.integrations.mistral.get_agent
Full name
mistral.mistral_get_agent
ParameterTypeRequiredDescription
No parameters.
get_agent_version Read

Mistral Get Agent Version

Lua path
app.integrations.mistral.get_agent_version
Full name
mistral.mistral_get_agent_version
ParameterTypeRequiredDescription
No parameters.
get_batch_job Read

Mistral Get Batch Job

Lua path
app.integrations.mistral.get_batch_job
Full name
mistral.mistral_get_batch_job
ParameterTypeRequiredDescription
No parameters.
get_campaign Read

Mistral Get Campaign

Lua path
app.integrations.mistral.get_campaign
Full name
mistral.mistral_get_campaign
ParameterTypeRequiredDescription
No parameters.
get_campaign_selected_events Read

Mistral Get Campaign Selected Events

Lua path
app.integrations.mistral.get_campaign_selected_events
Full name
mistral.mistral_get_campaign_selected_events
ParameterTypeRequiredDescription
No parameters.
get_campaign_status Read

Mistral Get Campaign Status

Lua path
app.integrations.mistral.get_campaign_status
Full name
mistral.mistral_get_campaign_status
ParameterTypeRequiredDescription
No parameters.
get_chat_completion_event Read

Mistral Get Chat Completion Event

Lua path
app.integrations.mistral.get_chat_completion_event
Full name
mistral.mistral_get_chat_completion_event
ParameterTypeRequiredDescription
No parameters.
get_chat_completion_field_options Read

Mistral Get Chat Completion Field Options

Lua path
app.integrations.mistral.get_chat_completion_field_options
Full name
mistral.mistral_get_chat_completion_field_options
ParameterTypeRequiredDescription
No parameters.
get_conversation Read

Mistral Get Conversation

Lua path
app.integrations.mistral.get_conversation
Full name
mistral.mistral_get_conversation
ParameterTypeRequiredDescription
No parameters.
get_file_url Read

Mistral Get File URL

Lua path
app.integrations.mistral.get_file_url
Full name
mistral.mistral_get_file_url
ParameterTypeRequiredDescription
No parameters.
get_fine_tuning_job Read

Mistral Get Fine Tuning Job

Lua path
app.integrations.mistral.get_fine_tuning_job
Full name
mistral.mistral_get_fine_tuning_job
ParameterTypeRequiredDescription
No parameters.
get_judge Read

Mistral Get Judge

Lua path
app.integrations.mistral.get_judge
Full name
mistral.mistral_get_judge
ParameterTypeRequiredDescription
No parameters.
get_library Read

Mistral Get Library

Lua path
app.integrations.mistral.get_library
Full name
mistral.mistral_get_library
ParameterTypeRequiredDescription
No parameters.
get_library_document Read

Mistral Get Library Document

Lua path
app.integrations.mistral.get_library_document
Full name
mistral.mistral_get_library_document
ParameterTypeRequiredDescription
No parameters.
get_library_document_extracted_text_url Read

Mistral Get Library Document Extracted Text URL

Lua path
app.integrations.mistral.get_library_document_extracted_text_url
Full name
mistral.mistral_get_library_document_extracted_text_url
ParameterTypeRequiredDescription
No parameters.
get_library_document_signed_url Read

Mistral Get Library Document Signed URL

Lua path
app.integrations.mistral.get_library_document_signed_url
Full name
mistral.mistral_get_library_document_signed_url
ParameterTypeRequiredDescription
No parameters.
get_library_document_status Read

Mistral Get Library Document Status

Lua path
app.integrations.mistral.get_library_document_status
Full name
mistral.mistral_get_library_document_status
ParameterTypeRequiredDescription
No parameters.
get_library_document_text Read

Mistral Get Library Document Text

Lua path
app.integrations.mistral.get_library_document_text
Full name
mistral.mistral_get_library_document_text
ParameterTypeRequiredDescription
No parameters.
get_observability_dataset Read

Mistral Get Observability Dataset

Lua path
app.integrations.mistral.get_observability_dataset
Full name
mistral.mistral_get_observability_dataset
ParameterTypeRequiredDescription
No parameters.
get_observability_dataset_record Read

Mistral Get Observability Dataset Record

Lua path
app.integrations.mistral.get_observability_dataset_record
Full name
mistral.mistral_get_observability_dataset_record
ParameterTypeRequiredDescription
No parameters.
get_observability_dataset_task Read

Mistral Get Observability Dataset Task

Lua path
app.integrations.mistral.get_observability_dataset_task
Full name
mistral.mistral_get_observability_dataset_task
ParameterTypeRequiredDescription
No parameters.
get_similar_chat_completion_events Read

Mistral Get Similar Chat Completion Events

Lua path
app.integrations.mistral.get_similar_chat_completion_events
Full name
mistral.mistral_get_similar_chat_completion_events
ParameterTypeRequiredDescription
No parameters.
get_voice Read

Mistral Get Voice

Lua path
app.integrations.mistral.get_voice
Full name
mistral.mistral_get_voice
ParameterTypeRequiredDescription
No parameters.
get_voice_sample Read

Mistral Get Voice Sample

Lua path
app.integrations.mistral.get_voice_sample
Full name
mistral.mistral_get_voice_sample
ParameterTypeRequiredDescription
No parameters.
get_workflow Read

Mistral Get Workflow

Lua path
app.integrations.mistral.get_workflow
Full name
mistral.mistral_get_workflow
ParameterTypeRequiredDescription
No parameters.
get_workflow_deployment Read

Mistral Get Workflow Deployment

Lua path
app.integrations.mistral.get_workflow_deployment
Full name
mistral.mistral_get_workflow_deployment
ParameterTypeRequiredDescription
No parameters.
get_workflow_execution Read

Mistral Get Workflow Execution

Lua path
app.integrations.mistral.get_workflow_execution
Full name
mistral.mistral_get_workflow_execution
ParameterTypeRequiredDescription
No parameters.
get_workflow_execution_history Read

Mistral Get Workflow Execution History

Lua path
app.integrations.mistral.get_workflow_execution_history
Full name
mistral.mistral_get_workflow_execution_history
ParameterTypeRequiredDescription
No parameters.
get_workflow_execution_trace_events Read

Mistral Get Workflow Execution Trace Events

Lua path
app.integrations.mistral.get_workflow_execution_trace_events
Full name
mistral.mistral_get_workflow_execution_trace_events
ParameterTypeRequiredDescription
No parameters.
get_workflow_execution_trace_otel Read

Mistral Get Workflow Execution Trace Otel

Lua path
app.integrations.mistral.get_workflow_execution_trace_otel
Full name
mistral.mistral_get_workflow_execution_trace_otel
ParameterTypeRequiredDescription
No parameters.
get_workflow_execution_trace_summary Read

Mistral Get Workflow Execution Trace Summary

Lua path
app.integrations.mistral.get_workflow_execution_trace_summary
Full name
mistral.mistral_get_workflow_execution_trace_summary
ParameterTypeRequiredDescription
No parameters.
get_workflow_metrics Read

Mistral Get Workflow Metrics

Lua path
app.integrations.mistral.get_workflow_metrics
Full name
mistral.mistral_get_workflow_metrics
ParameterTypeRequiredDescription
No parameters.
get_workflow_registration Read

Mistral Get Workflow Registration

Lua path
app.integrations.mistral.get_workflow_registration
Full name
mistral.mistral_get_workflow_registration
ParameterTypeRequiredDescription
No parameters.
get_workflow_run Read

Mistral Get Workflow Run

Lua path
app.integrations.mistral.get_workflow_run
Full name
mistral.mistral_get_workflow_run
ParameterTypeRequiredDescription
No parameters.
get_workflow_run_history Write

Mistral Get Workflow Run History

Lua path
app.integrations.mistral.get_workflow_run_history
Full name
mistral.mistral_get_workflow_run_history
ParameterTypeRequiredDescription
No parameters.
get_workflow_worker_info Read

Mistral Get Workflow Worker Info

Lua path
app.integrations.mistral.get_workflow_worker_info
Full name
mistral.mistral_get_workflow_worker_info
ParameterTypeRequiredDescription
No parameters.
import_observability_dataset_from_campaign Read

Mistral Import Observability Dataset From Campaign

Lua path
app.integrations.mistral.import_observability_dataset_from_campaign
Full name
mistral.mistral_import_observability_dataset_from_campaign
ParameterTypeRequiredDescription
No parameters.
import_observability_dataset_from_dataset Read

Mistral Import Observability Dataset From Dataset

Lua path
app.integrations.mistral.import_observability_dataset_from_dataset
Full name
mistral.mistral_import_observability_dataset_from_dataset
ParameterTypeRequiredDescription
No parameters.
import_observability_dataset_from_explorer Read

Mistral Import Observability Dataset From Explorer

Lua path
app.integrations.mistral.import_observability_dataset_from_explorer
Full name
mistral.mistral_import_observability_dataset_from_explorer
ParameterTypeRequiredDescription
No parameters.
import_observability_dataset_from_file Read

Mistral Import Observability Dataset From File

Lua path
app.integrations.mistral.import_observability_dataset_from_file
Full name
mistral.mistral_import_observability_dataset_from_file
ParameterTypeRequiredDescription
No parameters.
import_observability_dataset_from_playground Read

Mistral Import Observability Dataset From Playground

Lua path
app.integrations.mistral.import_observability_dataset_from_playground
Full name
mistral.mistral_import_observability_dataset_from_playground
ParameterTypeRequiredDescription
No parameters.
judge_chat_completion_event Read

Mistral Judge Chat Completion Event

Lua path
app.integrations.mistral.judge_chat_completion_event
Full name
mistral.mistral_judge_chat_completion_event
ParameterTypeRequiredDescription
No parameters.
judge_conversation Read

Mistral Judge Conversation

Lua path
app.integrations.mistral.judge_conversation
Full name
mistral.mistral_judge_conversation
ParameterTypeRequiredDescription
No parameters.
judge_observability_dataset_record Read

Mistral Judge Observability Dataset Record

Lua path
app.integrations.mistral.judge_observability_dataset_record
Full name
mistral.mistral_judge_observability_dataset_record
ParameterTypeRequiredDescription
No parameters.
list_agent_aliases Read

Mistral List Agent Aliases

Lua path
app.integrations.mistral.list_agent_aliases
Full name
mistral.mistral_list_agent_aliases
ParameterTypeRequiredDescription
No parameters.
list_agent_versions Read

Mistral List Agent Versions

Lua path
app.integrations.mistral.list_agent_versions
Full name
mistral.mistral_list_agent_versions
ParameterTypeRequiredDescription
No parameters.
list_agents Read

Mistral List Agents

Lua path
app.integrations.mistral.list_agents
Full name
mistral.mistral_list_agents
ParameterTypeRequiredDescription
No parameters.
list_batch_jobs Read

Mistral List Batch Jobs

Lua path
app.integrations.mistral.list_batch_jobs
Full name
mistral.mistral_list_batch_jobs
ParameterTypeRequiredDescription
No parameters.
list_campaigns Read

Mistral List Campaigns

Lua path
app.integrations.mistral.list_campaigns
Full name
mistral.mistral_list_campaigns
ParameterTypeRequiredDescription
No parameters.
list_chat_completion_fields Read

Mistral List Chat Completion Fields

Lua path
app.integrations.mistral.list_chat_completion_fields
Full name
mistral.mistral_list_chat_completion_fields
ParameterTypeRequiredDescription
No parameters.
list_conversations Read

Mistral List Conversations

Lua path
app.integrations.mistral.list_conversations
Full name
mistral.mistral_list_conversations
ParameterTypeRequiredDescription
No parameters.
list_files Read

Mistral List Files

Lua path
app.integrations.mistral.list_files
Full name
mistral.mistral_list_files
ParameterTypeRequiredDescription
No parameters.
list_fine_tuning_jobs Read

Mistral List Fine Tuning Jobs

Lua path
app.integrations.mistral.list_fine_tuning_jobs
Full name
mistral.mistral_list_fine_tuning_jobs
ParameterTypeRequiredDescription
No parameters.
list_judges Read

Mistral List Judges

Lua path
app.integrations.mistral.list_judges
Full name
mistral.mistral_list_judges
ParameterTypeRequiredDescription
No parameters.
list_libraries Read

Mistral List Libraries

Lua path
app.integrations.mistral.list_libraries
Full name
mistral.mistral_list_libraries
ParameterTypeRequiredDescription
No parameters.
list_library_documents Read

Mistral List Library Documents

Lua path
app.integrations.mistral.list_library_documents
Full name
mistral.mistral_list_library_documents
ParameterTypeRequiredDescription
No parameters.
list_library_shares Read

Mistral List Library Shares

Lua path
app.integrations.mistral.list_library_shares
Full name
mistral.mistral_list_library_shares
ParameterTypeRequiredDescription
No parameters.
list_models Read

Mistral List Models

Lua path
app.integrations.mistral.list_models
Full name
mistral.mistral_list_models
ParameterTypeRequiredDescription
No parameters.
list_observability_dataset_records Read

Mistral List Observability Dataset Records

Lua path
app.integrations.mistral.list_observability_dataset_records
Full name
mistral.mistral_list_observability_dataset_records
ParameterTypeRequiredDescription
No parameters.
list_observability_dataset_tasks Read

Mistral List Observability Dataset Tasks

Lua path
app.integrations.mistral.list_observability_dataset_tasks
Full name
mistral.mistral_list_observability_dataset_tasks
ParameterTypeRequiredDescription
No parameters.
list_observability_datasets Read

Mistral List Observability Datasets

Lua path
app.integrations.mistral.list_observability_datasets
Full name
mistral.mistral_list_observability_datasets
ParameterTypeRequiredDescription
No parameters.
list_voices Read

Mistral List Voices

Lua path
app.integrations.mistral.list_voices
Full name
mistral.mistral_list_voices
ParameterTypeRequiredDescription
No parameters.
list_workflow_deployments Read

Mistral List Workflow Deployments

Lua path
app.integrations.mistral.list_workflow_deployments
Full name
mistral.mistral_list_workflow_deployments
ParameterTypeRequiredDescription
No parameters.
list_workflow_events Read

Mistral List Workflow Events

Lua path
app.integrations.mistral.list_workflow_events
Full name
mistral.mistral_list_workflow_events
ParameterTypeRequiredDescription
No parameters.
list_workflow_registrations Read

Mistral List Workflow Registrations

Lua path
app.integrations.mistral.list_workflow_registrations
Full name
mistral.mistral_list_workflow_registrations
ParameterTypeRequiredDescription
No parameters.
list_workflow_runs Read

Mistral List Workflow Runs

Lua path
app.integrations.mistral.list_workflow_runs
Full name
mistral.mistral_list_workflow_runs
ParameterTypeRequiredDescription
No parameters.
list_workflow_schedules Read

Mistral List Workflow Schedules

Lua path
app.integrations.mistral.list_workflow_schedules
Full name
mistral.mistral_list_workflow_schedules
ParameterTypeRequiredDescription
No parameters.
moderations Read

Mistral Moderations

Lua path
app.integrations.mistral.moderations
Full name
mistral.mistral_moderations
ParameterTypeRequiredDescription
No parameters.
ocr Read

Mistral Ocr

Lua path
app.integrations.mistral.ocr
Full name
mistral.mistral_ocr
ParameterTypeRequiredDescription
No parameters.
query_workflow_execution Read

Mistral Query Workflow Execution

Lua path
app.integrations.mistral.query_workflow_execution
Full name
mistral.mistral_query_workflow_execution
ParameterTypeRequiredDescription
No parameters.
reprocess_library_document Read

Mistral Reprocess Library Document

Lua path
app.integrations.mistral.reprocess_library_document
Full name
mistral.mistral_reprocess_library_document
ParameterTypeRequiredDescription
No parameters.
reset_workflow_execution Read

Mistral Reset Workflow Execution

Lua path
app.integrations.mistral.reset_workflow_execution
Full name
mistral.mistral_reset_workflow_execution
ParameterTypeRequiredDescription
No parameters.
restart_conversation Read

Mistral Restart Conversation

Lua path
app.integrations.mistral.restart_conversation
Full name
mistral.mistral_restart_conversation
ParameterTypeRequiredDescription
No parameters.
retrieve_file Read

Mistral Retrieve File

Lua path
app.integrations.mistral.retrieve_file
Full name
mistral.mistral_retrieve_file
ParameterTypeRequiredDescription
No parameters.
retrieve_model Read

Mistral Retrieve Model

Lua path
app.integrations.mistral.retrieve_model
Full name
mistral.mistral_retrieve_model
ParameterTypeRequiredDescription
No parameters.
schedule_workflow Read

Mistral Schedule Workflow

Lua path
app.integrations.mistral.schedule_workflow
Full name
mistral.mistral_schedule_workflow
ParameterTypeRequiredDescription
No parameters.
search_chat_completion_event_ids Read

Mistral Search Chat Completion Event Ids

Lua path
app.integrations.mistral.search_chat_completion_event_ids
Full name
mistral.mistral_search_chat_completion_event_ids
ParameterTypeRequiredDescription
No parameters.
search_chat_completion_events Read

Mistral Search Chat Completion Events

Lua path
app.integrations.mistral.search_chat_completion_events
Full name
mistral.mistral_search_chat_completion_events
ParameterTypeRequiredDescription
No parameters.
signal_workflow_execution Read

Mistral Signal Workflow Execution

Lua path
app.integrations.mistral.signal_workflow_execution
Full name
mistral.mistral_signal_workflow_execution
ParameterTypeRequiredDescription
No parameters.
speech Read

Mistral Speech

Lua path
app.integrations.mistral.speech
Full name
mistral.mistral_speech
ParameterTypeRequiredDescription
No parameters.
start_conversation Read

Mistral Start Conversation

Lua path
app.integrations.mistral.start_conversation
Full name
mistral.mistral_start_conversation
ParameterTypeRequiredDescription
No parameters.
start_fine_tuning_job Read

Mistral Start Fine Tuning Job

Lua path
app.integrations.mistral.start_fine_tuning_job
Full name
mistral.mistral_start_fine_tuning_job
ParameterTypeRequiredDescription
No parameters.
stream_workflow_events Read

Mistral Stream Workflow Events

Lua path
app.integrations.mistral.stream_workflow_events
Full name
mistral.mistral_stream_workflow_events
ParameterTypeRequiredDescription
No parameters.
stream_workflow_execution Read

Mistral Stream Workflow Execution

Lua path
app.integrations.mistral.stream_workflow_execution
Full name
mistral.mistral_stream_workflow_execution
ParameterTypeRequiredDescription
No parameters.
terminate_workflow_execution Read

Mistral Terminate Workflow Execution

Lua path
app.integrations.mistral.terminate_workflow_execution
Full name
mistral.mistral_terminate_workflow_execution
ParameterTypeRequiredDescription
No parameters.
transcribe_audio Read

Mistral Transcribe Audio

Lua path
app.integrations.mistral.transcribe_audio
Full name
mistral.mistral_transcribe_audio
ParameterTypeRequiredDescription
No parameters.
unarchive_fine_tuned_model Read

Mistral Unarchive Fine Tuned Model

Lua path
app.integrations.mistral.unarchive_fine_tuned_model
Full name
mistral.mistral_unarchive_fine_tuned_model
ParameterTypeRequiredDescription
No parameters.
unarchive_workflow Read

Mistral Unarchive Workflow

Lua path
app.integrations.mistral.unarchive_workflow
Full name
mistral.mistral_unarchive_workflow
ParameterTypeRequiredDescription
No parameters.
unschedule_workflow Read

Mistral Unschedule Workflow

Lua path
app.integrations.mistral.unschedule_workflow
Full name
mistral.mistral_unschedule_workflow
ParameterTypeRequiredDescription
No parameters.
update_agent Write

Mistral Update Agent

Lua path
app.integrations.mistral.update_agent
Full name
mistral.mistral_update_agent
ParameterTypeRequiredDescription
No parameters.
update_agent_version Write

Mistral Update Agent Version

Lua path
app.integrations.mistral.update_agent_version
Full name
mistral.mistral_update_agent_version
ParameterTypeRequiredDescription
No parameters.
update_fine_tuned_model Write

Mistral Update Fine Tuned Model

Lua path
app.integrations.mistral.update_fine_tuned_model
Full name
mistral.mistral_update_fine_tuned_model
ParameterTypeRequiredDescription
No parameters.
update_judge Write

Mistral Update Judge

Lua path
app.integrations.mistral.update_judge
Full name
mistral.mistral_update_judge
ParameterTypeRequiredDescription
No parameters.
update_library Write

Mistral Update Library

Lua path
app.integrations.mistral.update_library
Full name
mistral.mistral_update_library
ParameterTypeRequiredDescription
No parameters.
update_library_document Write

Mistral Update Library Document

Lua path
app.integrations.mistral.update_library_document
Full name
mistral.mistral_update_library_document
ParameterTypeRequiredDescription
No parameters.
update_observability_dataset Write

Mistral Update Observability Dataset

Lua path
app.integrations.mistral.update_observability_dataset
Full name
mistral.mistral_update_observability_dataset
ParameterTypeRequiredDescription
No parameters.
update_observability_dataset_record_payload Write

Mistral Update Observability Dataset Record Payload

Lua path
app.integrations.mistral.update_observability_dataset_record_payload
Full name
mistral.mistral_update_observability_dataset_record_payload
ParameterTypeRequiredDescription
No parameters.
update_observability_dataset_record_properties Write

Mistral Update Observability Dataset Record Properties

Lua path
app.integrations.mistral.update_observability_dataset_record_properties
Full name
mistral.mistral_update_observability_dataset_record_properties
ParameterTypeRequiredDescription
No parameters.
update_voice Write

Mistral Update Voice

Lua path
app.integrations.mistral.update_voice
Full name
mistral.mistral_update_voice
ParameterTypeRequiredDescription
No parameters.
update_workflow Write

Mistral Update Workflow

Lua path
app.integrations.mistral.update_workflow
Full name
mistral.mistral_update_workflow
ParameterTypeRequiredDescription
No parameters.
update_workflow_execution Write

Mistral Update Workflow Execution

Lua path
app.integrations.mistral.update_workflow_execution
Full name
mistral.mistral_update_workflow_execution
ParameterTypeRequiredDescription
No parameters.
upload_file Read

Mistral Upload File

Lua path
app.integrations.mistral.upload_file
Full name
mistral.mistral_upload_file
ParameterTypeRequiredDescription
No parameters.
upload_library_document Read

Mistral Upload Library Document

Lua path
app.integrations.mistral.upload_library_document
Full name
mistral.mistral_upload_library_document
ParameterTypeRequiredDescription
No parameters.
upsert_agent_alias Read

Mistral Upsert Agent Alias

Lua path
app.integrations.mistral.upsert_agent_alias
Full name
mistral.mistral_upsert_agent_alias
ParameterTypeRequiredDescription
No parameters.