AI Other Types

Learn more about the input, result, and enum types used when running prompts against AI models via the API

The monday.com AI API lets you run a prompt against a monday-hosted AI model with the run_prompt mutation. The types below are used as the input, result, and enum types for that mutation.

🚧

Only available in API versions 2026-10 and later

RunPromptConfigInput

Optional configuration passed to the config argument of the run_prompt mutation. All fields are optional.

FieldTypeDescriptionEnum Values
modelAiModelThe AI model tier to use for the completion. If omitted, a default model is used.MONDAY_FAST
MONDAY_STANDARD
MONDAY_POWERFUL
system_promptStringAn optional system prompt that sets context or instructions for the model.
temperatureFloatSampling temperature between 0 and 1. Lower values make output more deterministic; higher values make it more random.
max_tokensIntThe maximum number of tokens to generate. Must be a positive integer. Output is truncated when the limit is reached.

RunPromptResult

The return type of the run_prompt mutation.

FieldTypeDescription
contentStringThe generated text content from the model.

AiModel

The available AI model tiers, used on the model field of RunPromptConfigInput.

Enum ValueDescription
MONDAY_FASTThe monday Fast model.
MONDAY_STANDARDThe monday Standard model.
MONDAY_POWERFULThe monday Powerful model.