全球分布式算力网络。提交任务 → 自动路由 → 按结果付费。
# 创建账户 curl -X POST https://api.dzty.club/v1/accounts -d '{"name":"\u6211\u7684GPU\u519c\u573a","email":"me@ex.com"}' {"email":"me@ex.com","api_key":"dt_abc...def","balance":100000} # 调用大模型 curl https://api.dzty.club/v1/chat/completions \ -H "Authorization: Bearer *** \ -d '{"model":"deepseek-chat","messages":[{"role":"user","content":"\u4f60\u597d"}]}'
兼容 OpenAI 接口格式,支持 system/user/assistant 角色。
POST /v1/chat/completions
{"model":"deepseek-chat","messages":[{"role":"user","content":"Hello"}]}
{"choices":[{"message":{"content":"Hi!"}}],"usage":{"total_tokens":11}}
提交任务后立即返回 task_id,后台异步处理,支持回调通知。
POST /v1/tasks
{"task_type":"llm","params":{"prompt":"\u5199\u9996\u8bd7"},"callback_url":"https://..."}
{"task_id":"task_xxx","status":"queued","price":105}
/v1/accounts创建账户(公开)/v1/accounts/:email/balance查询余额/v1/chat/completions大模型推理/v1/tasks提交任务/v1/tasks/:id查询结果/v1/nodes查看节点/v1/pricing查看定价curl -sfL https://soft.dzty.club/install.sh | bash -s -- --key <API Key> ./dt-node --api api.dzty.club --token <key> --gpu "A100-80G"
| 席位 | 价格 | 系数 |
|---|---|---|
| L1 | ¥500,000/席 | 5.0x |
| L2 | ¥5,000/席 | 4.0x |
| L3 | ¥100/席 | 3.0x |
| L4 | ¥5/席 | 2.0x |
| L5 | 免费 | 1.0x |
| 角色 | 占比 |
|---|---|
| 执行节点(GPU提供方) | 50% |
| 中继(网关) | 15% |
| L0 中继 | 10% |
| L1~L5 中继 | 各 5% |
| 公共池 | 10% |
| 地址 | 权限 |
|---|---|
| partner.dzty.club | 合伙人(API Key 登录) |
| admin.dzty.club | 管理员 |