DeepSeek V4 Flash
免費面向高吞吐程式、對話与短中程 Agent 的 V4 高效 MoE — 可在 iMini Agent 免費試用。
适合高吞吐 Agent 任務、日常程式辅助,以及更关注成本的场景。
- 284B MoE,约 13B 每 token 啟用參數
- 百万 token 上下文,适合更长的 Agent 会话
- 想在瀏覽器里又快又省地跑任務时优先选它
免費運行 DeepSeek AI Agent — 用 DeepSeek API 接入程式 Agent,或直接在瀏覽器試用免費線上 Agent。
本站為獨立的 DeepSeek Agent 指南,與 DeepSeek 官方無關聯或背書關係。
在 iMini 免費線上 AI Agent 中使用最新 DeepSeek V4:Flash 偏速度與成本,Pro 偏深度推理與複雜任務。
面向高吞吐程式、對話与短中程 Agent 的 V4 高效 MoE — 可在 iMini Agent 免費試用。
适合高吞吐 Agent 任務、日常程式辅助,以及更关注成本的场景。
硬約束推理、全倉程式与長程多步工具任務的 V4 旗艦 MoE — 可在 iMini Agent 免費試用。
适合硬推理、Agent 程式,以及多步创意或研究型任務。
DeepSeek 是一家位於杭州的中國 AI 實驗室,專注於研發並發佈大型語言模型,其中多數以開放授權發佈。它之所以廣為人知,一是以遠低於閉源競品的價格提供了前沿級別的推理與程式模型,二是技術報告寫得足夠詳細,其他團隊可以據此重現其思路。
當前一代是 2026 年 4 月發佈的 DeepSeek V4,包含兩個混合專家(MoE)檔位:面向最難推理與 Agent 程式的 V4 Pro,以及面向高吞吐、低成本場景的 V4 Flash。兩者共享百萬 token 上下文,並把推理強度做成請求參數,而不是另起一個模型 ID。
DeepSeek 同時提供相容 OpenAI 介面的 API。這種相容性正是它在 Agent 工具鏈裡頻繁出現的現實原因:只要某個程式 Agent 允許你自訂 base URL 和 API Key,通常不用改工具本身就能把它指向 DeepSeek。
DeepSeek AI Agent 是透過 DeepSeek API 使用 DeepSeek 模型的自主程式助手。你用自然語言描述目標,Agent 會規劃步驟、呼叫終端或檔案編輯器等工具,並持續工作直到任務完成。
這和只在訊息視窗裡回覆的聊天機器人不同。Agent 跑的是「規劃 → 行動 → 觀察」的迴圈,直到任務結束或你主動停下。
DeepSeek API 原生相容 OpenAI Chat Completions 與 Anthropic Messages,因此對支援自訂端點的程式 Agent 很實用:Chat 形態指到 api.deepseek.com,Anthropic 形態指到 api.deepseek.com/anthropic;如果工具只講 OpenAI Responses,則需要橋接層。
本站整理如何把 Codex、Claude Code、OpenClaw 等 AI 程式 Agent 接到 DeepSeek,以及常見的設定與除錯步驟。
程式 Agent 講的協議並不一樣。DeepSeek 原生相容兩套:OpenAI Chat Completions 和 Anthropic Messages。它不提供 OpenAI Responses,所以像 Codex 這類工具需要橋接層。
| 對比項 | OpenAI Chat Completions | OpenAI Responses | Anthropic Messages |
|---|---|---|---|
| 端點 | POST /v1/chat/completions | POST /v1/responses | POST /v1/messages |
| 主載荷 | messages: [{role, content}] | input(字串或 item 列表) | messages + 頂層 system |
| 鑑權 | Authorization: Bearer | Authorization: Bearer | x-api-key / ANTHROPIC_API_KEY |
| 內容形態 | 多為純文字字串 | 帶類型的 item(message、function_call、reasoning…) | content blocks(type: text 等) |
| 會話狀態 | 無狀態,每次回傳完整歷史 | 面向 Agent 迴圈與更細的 item | 無狀態,每次回傳完整歷史 |
| 典型工具 | openai SDK、多數 OpenAI 相容 Agent | Codex CLI(只認 Responses) | Claude Code、Copilot CLI(Anthropic 模式) |
官方文件給出兩個 base URL。把對應 SDK 或 Agent 指過去,填入 DeepSeek API Key,再選 deepseek-v4-pro 或 deepseek-v4-flash 即可。
對多數 OpenAI 相容用戶端幾乎即插即用:改 base_url 和 api_key,繼續調 /chat/completions。
https://api.deepseek.com
同一把 Key,走 Anthropic 形態路徑。Claude Code 等工具改 ANTHROPIC_BASE_URL 就能接。
https://api.deepseek.com/anthropic
沒有官方 /v1/responses。Codex 等只講 Responses 的用戶端需要本機橋,例如 Moon Bridge。
需要橋接 → /guides/codex
Codex 講 OpenAI Responses,DeepSeek 講 Chat Completions 和 Anthropic Messages。Moon Bridge 夾在中間:Codex → Responses → Moon Bridge → DeepSeek。
Codex + Moon Bridge 教學Most setups follow the same pattern: get API access, pick an agent tool, paste your key, then run a small coding task to confirm everything works.
Create an account on the DeepSeek Platform, generate an API key, and check whether free credits or a free tier is available in your region. Keep the key private — you will paste it into your agent config.
Pick a coding agent that fits your workflow. Popular options on this site include Codex, Claude Code and OpenClaw — each has a dedicated setup guide.
Follow the guide for your tool: set the DeepSeek endpoint, model name and API key in its config file or environment variables. Restart the agent, then try a simple task such as fixing a test or adding a small feature.
Codex can run against DeepSeek when the stack supports OpenAI-compatible API routing — often via Moon Bridge or a switching tool. Our guide walks through endpoints, model IDs and common errors.
DeepSeek Agent setup for CodexClaude Code accepts custom provider settings. You can point it at DeepSeek with environment variables in settings.json, or use CC Switch if you prefer a visual setup.
Claude Code with DeepSeek APIOpenClaw supports custom model providers during onboarding. The guide covers provider config, Skills, MCP and chat-platform integration with DeepSeek as the model backend.
OpenClaw DeepSeek API guideWe maintain step-by-step guides for 20+ agents — API keys, endpoints, copy-paste config and troubleshooting for each tool.
Browse all DeepSeek AI agent setup guides規劃頁面:首頁、行業概覽、競品對比、數據圖表
腳手架 Next.js 專案,安裝 Recharts
編寫頁面元件,接入示例市場數據
啟動 dev server…… localhost:3000 可預覽
終端機 · Claude Code
「這個測試掛了,幫我修」
Agent 讀了報錯堆疊、定位到斷言失敗、改了測試檔、跑 pytest 直到全綠——你沒打開過檔案樹。
終端機 · Codex
「給支付模組加一個退款介面」
Agent 掃了現有路由結構、寫了 handler 和單測、在終端機裡跑通整合測試——你只看最後的 diff。
OA · OpenClaw
「彙總今天 GitHub 上我倉庫的 PR 評論」
Agent 調 GitHub API 拉資料、按優先級排好、在 OA 裡推送一條摘要——你手機上看完就行。
ChatGPT, Claude and Gemini are strong general-purpose assistants. A DeepSeek AI agent is a different idea: you keep a coding-agent shell (Codex, Claude Code, OpenClaw, etc.) and use the DeepSeek API as the model backend. That matters when you want agent workflows — not just chat — at lower API cost.
| Platform | Agent support | API for coding agents | Typical cost |
|---|---|---|---|
| DeepSeek AI Agent | Works with Codex, Claude Code, OpenClaw + 20 agents | OpenAI-compatible DeepSeek API | Free credits / low API pricing |
| ChatGPT / Codex (default) | Codex, Copilot CLI (OpenAI models only) | OpenAI API — usage-based | Subscription + API fees |
| Claude (default) | Claude Code (Anthropic models only) | Anthropic API — usage-based | Pro plan + API fees |
| Gemini (default) | Limited agent tooling | Google AI API | Free tier + paid tiers |
找到你想使用的 Agent——Codex、Claude Code、OpenClaw、Hermes,查看指南配置你的 DeepSeek Agent。
瀏覽 Skill 市場發現工作流與整合,或透過常用工具進一步客製你的 Agent。
常見問題
還有疑問?點開看看。