Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions schemas/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5840,6 +5840,39 @@ export const services: ServiceDef[] = [
],
},

// ── Rungate ──────────────────────────────────────────────────────────
{
id: "rungate",
name: "Rungate",
url: "https://api.rungate.ai",
serviceUrl: "https://api.rungate.ai",
description:
"OpenAI-compatible LLM inference API.",

categories: ["ai"],
integration: "first-party",
tags: ["llm", "chat", "inference", "openai-compatible", "streaming"],
docs: { homepage: "https://rungate.xyz" },
provider: { name: "Rungate", url: "https://rungate.xyz" },
realm: "api.rungate.ai",
intent: "charge",
payments: [TEMPO_PAYMENT],
endpoints: [
{
route: "GET /v1/models",
desc: "List available models (free)",
docs: false,
},
{
route: "POST /v1/chat/completions",
desc: "Chat completions (streaming and non-streaming) β€” price varies by model and token usage",
dynamic: true,
amountHint: "Model-dependent",
intent: "session",
},
],
},

// ── ScreenshotOne ────────────────────────────────────────────────────
{
id: "screenshotone",
Expand Down