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
65 changes: 65 additions & 0 deletions schemas/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6017,6 +6017,71 @@ export const services: ServiceDef[] = [
],
},

// ── TensorPath ──────────────────────────────────────────────────────
{
id: "tensorpath",
name: "TensorPath",
url: "https://tensorpath.io",
serviceUrl: "https://mpp.tensorpath.io",
description:
"Rent on-demand dedicated GPU with SSH access for AI and ML workloads β€” pay per-minute with stablecoins.",
categories: ["ai", "compute"],
integration: "first-party",
tags: [
"ai",
"gpu",
"compute",
"ssh",
"rental",
"cloud",
"machine-learning",
"inference",
],
docs: {
homepage: "https://mpp.tensorpath.io/v1/reference",
llmsTxt: "https://mpp.tensorpath.io/llms.txt",
apiReference: "https://mpp.tensorpath.io/v1/reference",
},
provider: { name: "TensorPath", url: "https://tensorpath.io" },
realm: "mpp.tensorpath.io",
intent: "charge",
payment: TEMPO_PAYMENT,
endpoints: [
// Discovery (free)
{
route: "GET /v1/catalog",
desc: "List available GPU types with pricing and specs",
},
{
route: "GET /v1/catalog/:instanceTypeId",
desc: "Get GPU type details and available OS images",
},
// Instance management (paid)
{
route: "POST /v1/instances",
desc: "Launch a GPU instance β€” price varies by GPU type and duration",
dynamic: true,
amountHint: "varies by GPU type and duration",
unitType: "request",
},
{
route: "GET /v1/instances",
desc: "List active GPU rentals",
},
{
route: "GET /v1/instances/:instanceId",
desc: "Get instance status and connection details",
},
{
route: "POST /v1/instances/:instanceId/extend",
desc: "Extend GPU rental duration",
dynamic: true,
amountHint: "varies by GPU type and duration",
unitType: "request",
},
],
},

// ── Timezone ─────────────────────────────────────────────────────────
{
id: "abstract-timezone",
Expand Down
Loading