From ea4ff35ecb9884a53f500b223aee0985e55f1cee Mon Sep 17 00:00:00 2001 From: Jamie Alethieum <81396161+JamieAlethieum@users.noreply.github.com> Date: Wed, 24 Jun 2026 15:43:38 +0100 Subject: [PATCH] Add Ando MPP inference service --- schemas/services.ts | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index 61e2b6a0..0255c0b0 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -557,6 +557,49 @@ export const services: ServiceDef[] = [ ], }, + // ── Ando ─────────────────────────────────────────────────────────────── + { + id: "ando", + name: "Ando", + url: "https://andoai.xyz", + serviceUrl: "https://inference.andoai.xyz", + description: + "First-party accountless LLM inference through Tempo MPP session payments. Agents can pay for inference without an Ando API key.", + + categories: ["ai"], + integration: "first-party", + tags: [ + "llm", + "inference", + "chat", + "agents", + "tempo", + "mpp", + "openai-compatible", + ], + status: "active", + docs: { + homepage: "https://docs.andoai.xyz/docs/agents/tempo-mpp-inference", + llmsTxt: "https://docs.andoai.xyz/llms.txt", + apiReference: + "https://docs.andoai.xyz/docs/developers/api-reference/mpp-chat-completions", + }, + provider: { name: "Ando", url: "https://andoai.xyz" }, + realm: "inference.andoai.xyz", + intent: "session", + payments: [TEMPO_PAYMENT], + endpoints: [ + { + route: "POST /v1/mpp/chat/completions", + desc: "Buffered chat completions with token-metered Tempo MPP session billing", + dynamic: true, + amountHint: + "Token-metered; 1 USDC.e cumulative voucher bucket with 5 USDC.e suggested reusable session deposit", + unitType: "token", + }, + ], + }, + // ── Anthropic ────────────────────────────────────────────────────────── { id: "anthropic",