arcade-dev · Example Payload

Arcade Llm Chat Completions Example

Arcade Llm Chat Completions Example is an example object payload from arcade-dev, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

modelmessagestool_choicetoolsuser

Example Payload

Raw ↑
{
  "model": "gpt-4o-mini",
  "messages": [
    {
      "role": "system",
      "content": "You are an agent that uses Arcade tools."
    },
    {
      "role": "user",
      "content": "Send an email to ops@example.com saying the deploy is green."
    }
  ],
  "tool_choice": "auto",
  "tools": [
    {
      "type": "arcade",
      "name": "Google.SendEmail@1.0.0"
    }
  ],
  "user": "user_2nL93dQwExampleUUID"
}