Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.meshrouter.app/llms.txt

Use this file to discover all available pages before exploring further.

MESH forwards tools and tool_choice to tool-capable MESH models and includes tool-call deltas in streaming responses. The Models catalogue marks which models support tool calling.
{
  "model": "best",
  "tools": [
    {
      "type": "function",
      "function": {
        "name": "lookup_receipt",
        "description": "Find one MESH receipt by ID",
        "parameters": { "type": "object" }
      }
    }
  ],
  "messages": [{ "role": "user", "content": "Look up rcpt_123." }]
}
Use tool_choice: "none" to disable calls for a request.