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.

Standard mode

Standard mode routes at the AWS API Lambda through provider adapters. The router chooses a provider based on mode, explicit model, provider health, and policy.

Fallback chains

Use route: "fallback" with a primary model and backup models list. MESH returns the selected model and full chain in routing.
{
  "model": "mesh/claude-sonnet-4.5",
  "models": ["mesh/claude-opus-4.5", "mesh/llama-4-maverick"],
  "route": "fallback",
  "messages": [{ "role": "user", "content": "Summarize this document." }]
}

Privacy mode

Privacy mode routes from the API Lambda to the Nitro parent service, then across the enclave boundary for sealed prompt handling and attestation.
{
  "model": "auto",
  "privacy": {
    "mode": "nitro",
    "encryptedPrompt": "sealed:..."
  },
  "messages": [{ "role": "user", "content": "private request" }]
}