桌面客户端 · 双击即用 · 无需命令行

AI Coding 工具.
下载客户端,双击即用.
算力在云端.

下载 Seed10000 客户端(macOS / Windows),双击打开就能用 AI 写代码。无需装 Node、无需命令行,算力走云端按 token 计费,微信 / 支付宝 / USDT 充值。

下载安装
登录 / 注册
开始 Coding
# 下载客户端(macOS / Windows),双击安装 # 打开 https://seed10000.xyz/download.html macOS → 拖入 Applications Windows → 运行安装程序

三步开始

不用懂编程,3 分钟就能让 AI 帮你写代码。

1

下载客户端

下载 Seed10000 客户端(macOS / Windows),双击安装。无需装 Node、无需命令行。

去下载 →
2

登录 / 注册

打开客户端,注册或登录(注册送 100K token,也可用 Google 一键登录)。

注册拿 Key →
3

开始 Coding

填完 Key 自动进入 coding 界面,和 AI 对话写代码,算力按 token 计费。

为什么用客户端

专为「不想折腾环境」的人设计,下载就能用。

🚀

零依赖

不用装 Node、不用配环境、不用敲任何命令,双击即用。

🔒

本地安全

代码和文件都在你电脑上,只把对话发给云端模型,隐私可控。

☁️

云端算力

DeepSeek V3 / R1 等大模型跑在云端,本地电脑配置低也能用。

💰

按量付费

用多少扣多少,注册送 100K token,微信 / 支付宝 / USDT 都能充。

23+
可用模型
70%
比 OpenAI 便宜
5
全球边缘节点
100K
注册送 token

模型

顶级开源与闭源模型,一个 API 全打通。改一个参数即可切换模型。

Kimi K3 NEW
Moonshot's flagship. 256K context. Coding & reasoning.
$0.003/1K in · $0.006/1K out256K ctx
GLM-5.2
Zhipu AI · 1M context. Long-document analysis.
$0.003/1K in · $0.006/1K out1M ctx
DeepSeek V3
Open-source flagship. Best price/performance.
$0.001/1K in · $0.002/1K out128K ctx
Doubao Seed 1.6
ByteDance. Fast, cheap, multilingual.
$0.0015/1K in · $0.003/1K out256K ctx
Qwen 2.5 FREE
Local inference. Test & prototype free.
$0 · 100 calls/day32K ctx
More coming
GPT-4.1, Claude Sonnet 4.5, Gemini 3 — all in Q3.
Stay tunedRoadmap

简单定价

按量付费 token。无月费,免费档永久有效。

免费
¥0/月
试用与原型。无需信用卡。
  • 注册送 100K token
  • 免费模型每日 100 次
  • 1 个 API Key
  • 社区支持
免费开始 →
企业版
定制
SLA 与专属支持,规模扩展。
  • 批量 token 折扣
  • 优先支持(SLA)
  • 定制发票(USDT)
  • 专属路由
联系我们

无缝替换

如果你的应用用了 OpenAI SDK 或 Anthropic SDK,30 秒即可接入。

Python (OpenAI SDK)
# pip install openai from openai import OpenAI client = OpenAI( base_url="https://seed10000.xyz/v1", api_key="sk-seed-...", # your Seed10000 key ) response = client.chat.completions.create( model="deepseek-chat", # or "deepseek-reasoner", "glm-5.2" messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)

Coding 工具

首选 DeepSeek Harness (DSH)——下载到本地跑,配上 Seed10000 的算力即可开始。也支持 OpenClaw / Codex / Claude Code 等工具。

DeepSeek Harness (DSH)

在本地运行 npx @deepseek-ai/dsh web,打开 Web UI 后进入 设置 → 模型 → 添加自定义提供方,填入:

DSH 设置
Provider ID: seed10000 Base URL: https://seed10000.xyz/v1 API 协议: openai-completions API Key: sk-seed-... Models: deepseek-chat, deepseek-reasoner

OpenClaw

原生支持 OpenAI 兼容端点。编辑 ~/.openclaw/openclaw.json:

openclaw.json
{ "models": { "default": "seed10000/deepseek-chat", "providers": { "seed10000": { "baseUrl": "https://seed10000.xyz/v1", "apiKey": "sk-seed-...", "api": "openai-completions", "models": [ { "id": "deepseek-chat", "name": "DeepSeek V3", "contextWindow": 131072, "maxTokens": 8192 }, { "id": "deepseek-reasoner", "name": "DeepSeek R1", "contextWindow": 65536, "maxTokens": 8192 } ] } } } }

Codex CLI

编辑 ~/.codex/config.toml,并 export SEED10000_API_KEY=sk-seed-...。注意 wire_api = "chat" 必须显式指定(我们提供 Chat Completions;部分新版 Codex 仅支持 Responses API,如遇报错请使用仍支持 chat wire 的版本)。

config.toml
model = "deepseek-chat" model_provider = "seed10000" [model_providers.seed10000] name = "Seed10000" base_url = "https://seed10000.xyz/v1" env_key = "SEED10000_API_KEY" wire_api = "chat"

Claude Code

Claude Code 使用 Anthropic Messages 协议,经 claude-code-router 桥接到 Seed10000 的 OpenAI 端点:npm i -g @musistudio/claude-code-router,然后编辑 ~/.claude-code-router/config.json,最后以 ccr code 启动。

config.json
{ "Providers": [ { "name": "seed10000", "api_base_url": "https://seed10000.xyz/v1/chat/completions", "api_key": "sk-seed-...", "models": ["deepseek-chat", "deepseek-reasoner"] } ], "Router": { "default": "seed10000,deepseek-chat" } }

Any OpenAI-compatible tool

Cursor / Cline / Continue / Kimi Code 等任何支持自定义 OpenAI Base URL 的工具,填这三项即可:

settings
Base URL: https://seed10000.xyz/v1 API Key: sk-seed-... # dashboard 里创建,只显示一次 Model: deepseek-chat # 或 deepseek-reasoner / glm-5.2 / kimi-k3,GET /v1/models 查最新

常见问题

关于 Seed10000 的一切。

What is Seed10000?
Seed10000 is an OpenAI-compatible LLM API gateway. One API key gives you access to DeepSeek V3, GLM-5.2, Kimi K3, Doubao Seed 1.6, Qwen and more — with unified billing, automatic failover between upstream providers, and prices up to 70% cheaper than OpenAI.
How do I migrate from OpenAI?
It takes about 30 seconds. Keep using the official OpenAI SDK (Python, Node.js) or plain HTTP, set base_url to https://seed10000.xyz/v1, and replace the API key with your Seed10000 key (sk-seed-...). No other code changes are needed — chat completions, streaming and model listing follow the OpenAI schema.
Which models can I use?
Current lineup includes DeepSeek V3 (deepseek-chat) and DeepSeek R1 (deepseek-reasoner) as coding mainstays, plus GLM-5.2 (Zhipu, 1M context), Kimi K3 (Moonshot), Doubao Seed 1.6 (ByteDance) and Qwen 2.5 (free tier). The live list is always available at GET /v1/models.
Is there a free tier?
Yes. Every new account gets 100K free tokens on signup — no credit card required — plus 100 free calls per day on free-tier models like Qwen 2.5. After that, top up as you go.
What payment methods do you accept?
Top-ups are paid with USDT (BSC / BEP-20) via ClawPay — create an order in the dashboard, pay on-chain, and your token balance is credited automatically after confirmation. Enterprise plans support custom invoicing — contact support@seed10000.xyz.