- Categories:
String & binary functions (AI Functions)
AGENT_ RUN (SNOWFLAKE.CORTEX)¶
Runs a Cortex Agent without an agent object and returns the response as JSON.
You can use this function to interact with Cortex Agents directly without first creating an agent object. You provide the configuration, including the orchestration model and tools, in the request body.
Note
SNOWFLAKE.CORTEX.AGENT_RUN is a utility wrapper around the Cortex Agents Run REST API.
For most application integrations, Snowflake recommends calling the streaming REST API directly.
Syntax¶
Arguments¶
request_bodyJSON request body to send to the agent. This value must be a string (for example, a
$$...$$literal).The following fields are supported in the request body:
Field Type Description thread_idinteger The thread ID for the conversation. If thread_id is used, then parent_message_id must be passed as well.
parent_message_idinteger The ID of the parent message in the thread. If this is the first message, parent_message_id should be 0.
messagesarray of `Message` If thread_id and parent_message_id are passed in the request, messages includes the current user message in the conversation. Else, messages includes the conversation history and the current message. Messages contains both user queries and assistant responses in chronological order.
streamboolean Whether to return a streaming response (
text/event-stream) or a non-streaming JSON response (application/json). If true, the response will be streamed as Server-Sent Events. If false, the response will be returned as JSON.tool_choice`ToolChoice` Configures how the agent should select and use tools during the interaction. Controls whether tool use is automatic, required, or whether specific tools should be used.
models`ModelConfig` Model configuration for the agent. Includes the orchestration model (e.g., claude-4-sonnet). If not provided, a model is automatically selected. Currently only available for the
orchestrationstep.instructions`AgentInstructions` Instructions for the agent’s behavior, including response, orchestration, system, and sample questions.
orchestration`OrchestrationConfig` Orchestration configuration, including budget constraints (e.g., seconds, tokens).
toolsarray of `Tool` List of tools available for the agent to use. Each tool includes a tool_spec with type, name, description, and input schema. Tools may have a corresponding configuration in tool_resources.
tool_resourcesmap of `ToolResource` Configuration for each tool referenced in the tools array. Keys must match the name of the respective tool.
Example
Important
The stream field is ignored. A non-streaming response is always returned.
Returns¶
Returns a JSON string containing the agent’s response.
Access control requirements¶
To run an agent, you must use a role that can access Cortex Agents. For details, see Access control requirements.
Usage notes¶
- The function returns a JSON string. Pass this string to TRY_PARSE_JSON to convert the response to a VARIANT value.
- Unlike DATA_AGENT_RUN (SNOWFLAKE.CORTEX), this function does not require you to create an agent object first. Instead, you provide the configuration directly in the request body.
Examples¶
Run an agent and parse the response JSON:
Sample return value: