無料の DeepSeek AI Agent

無料で DeepSeek AI Agent を動かす — DeepSeek API でコーディング Agent を接続するか、ブラウザで無料オンライン Agent を試せます。

独立した DeepSeek Agent ガイドです。DeepSeek 公式とは無関係で、公式による推奨もありません。

DeepSeek V4 Flash & Pro

iMini の無料オンライン AI Agent で最新 DeepSeek V4 を利用。Flash は速度とコスト、Pro は深い推論向け。

DeepSeek V4 Flash

無料

Efficiency-oriented V4 MoE for high-throughput coding, chat, and short-to-mid agents — free to try in iMini Agent.

Best for high-throughput agent tasks, everyday coding help, and lower-cost runs.

  • 284B MoE with ~13B active parameters per token
  • 1M-token context window for long agent sessions
  • Ideal when you want speed and lower cost without leaving the browser

DeepSeek V4 Pro

無料

Flagship V4 MoE for hard-constraint reasoning, full-repo coding, and long multi-step tool jobs — free to try in iMini Agent.

Best for hard reasoning, agentic coding, and multi-step creative or research work.

  • 1.6T MoE with ~49B active parameters per token
  • 1M-token context for long-horizon agent tasks
  • Strong fit when you need deeper planning and code quality in-browser

What is DeepSeek?

DeepSeek is a Chinese AI lab based in Hangzhou that builds and releases large language models, most of them under open licenses. It became widely known for shipping frontier-class reasoning and coding models at a fraction of the price charged by closed-source competitors, and for publishing technical reports detailed enough that other labs could reproduce the ideas.

The current generation is DeepSeek V4, released in April 2026 as two Mixture-of-Experts tiers: V4 Pro for the hardest reasoning and agentic coding, and V4 Flash for high-throughput, lower-cost work. Both share a 1M-token context window and expose reasoning effort as a request parameter rather than a separate model ID.

DeepSeek also offers an OpenAI-compatible API. That compatibility is the practical reason DeepSeek shows up so often in agent tooling: if a coding agent lets you set a custom base URL and API key, you can usually point it at DeepSeek without patching the tool itself.

DeepSeek Agent とは?

A DeepSeek AI agent is an autonomous coding assistant that uses DeepSeek models through the DeepSeek API. You describe a goal in plain language; the agent plans steps, calls tools such as the terminal or file editor, and keeps working until the task is done.

This is different from a chatbot that only replies in a message window. An agent runs a loop — plan, act, observe, repeat — so it can refactor a repo, fix failing tests, scaffold a project or automate a workflow without you micromanaging each step.

The DeepSeek API is natively compatible with OpenAI Chat Completions and Anthropic Messages, which makes it a practical backend for coding agents that accept custom endpoints. Point Chat-shaped tools at api.deepseek.com, Anthropic-shaped tools at api.deepseek.com/anthropic, and use a bridge when the agent only speaks OpenAI Responses.

On this site we document how to wire Codex, Claude Code, OpenClaw and other AI coding agents to DeepSeek — so you keep the agent shell you already use and swap in DeepSeek for model inference.

OpenAI Chat, Responses, and Anthropic: what DeepSeek supports

Coding agents speak different wire protocols. DeepSeek natively mirrors two of them — OpenAI Chat Completions and Anthropic Messages. It does not expose OpenAI Responses, which is why tools like Codex need a bridge.

AspectOpenAI Chat CompletionsOpenAI ResponsesAnthropic Messages
EndpointPOST /v1/chat/completionsPOST /v1/responsesPOST /v1/messages
Main payloadmessages: [{role, content}]input (string or item list)messages + top-level system
AuthAuthorization: BearerAuthorization: Bearerx-api-key / ANTHROPIC_API_KEY
Content shapeMostly plain text stringsTyped items (message, function_call, reasoning…)Content blocks (type: text, …)
StateStateless — resend full historyDesigned for agent loops and richer itemsStateless — resend full history
Typical toolsopenai SDK, most OpenAI-compatible agentsCodex CLI (Responses-only)Claude Code, Copilot CLI (Anthropic mode)

What DeepSeek supports natively

Official DeepSeek docs list two base URLs. Point the matching SDK or agent at the right one, paste your DeepSeek API key, and pick deepseek-v4-pro or deepseek-v4-flash.

OpenAI Chat Completions

Native yes

Drop-in for most OpenAI-compatible clients. Change base_url and api_key; keep calling /chat/completions.

https://api.deepseek.com

Anthropic Messages

Native yes

Same key, Anthropic-shaped path. Claude Code and similar tools switch by setting ANTHROPIC_BASE_URL.

https://api.deepseek.com/anthropic

OpenAI Responses

Not native

No official /v1/responses. Codex and other Responses-only clients need a local bridge such as Moon Bridge.

bridge required → /guides/codex

Using Codex with DeepSeek?

Codex speaks OpenAI Responses. DeepSeek speaks Chat Completions and Anthropic Messages. Moon Bridge sits in the middle: Codex → Responses → Moon Bridge → DeepSeek.

Codex + Moon Bridge guide

How to build a DeepSeek AI Agent

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.

  1. Step 1

    Get DeepSeek API access or free credits

    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.

  2. Step 2

    Choose an agent tool

    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.

  3. Step 3

    Configure the API key and run your first task

    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.

DeepSeek AI Agent guides by tool

DeepSeek AI Agent for Codex

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 Codex

DeepSeek AI Agent for Claude Code

Claude 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 API

DeepSeek AI Agent for OpenClaw

OpenClaw 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 guide

DeepSeek Agent はあなたの何を手伝える?

目標を伝えると、Agent が作り切る

DeepSeek Agent
市場分析サイトを作って

ページ構成を計画:トップ、業界概観、競合比較、チャート

Next.js プロジェクトを作成し Recharts をインストール

ページコンポーネントを書き、サンプル市場データを接続

dev server を起動…… localhost:3000 でプレビュー可能

DeepSeek Agent を使う一日

  1. ターミナル · Claude Code

    このテストが落ちてる、直して

    スタックトレースを読み、テストを修正、pytest が通るまで実行。ファイルツリーは開かない。

  2. ターミナル · Codex

    決済モジュールに返金 API を追加

    ルート構造をスキャン、handler とテストを書き、ターミナルで統合テストまで実行——最後の diff だけ確認。

  3. OA · OpenClaw

    今日の PR コメントをまとめて

    GitHub API で取得、優先度順に整理、OA にダイジェストを推送——スマホで読むだけ。

DeepSeek AI Agent vs ChatGPT, Claude and Gemini

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.

PlatformAgent supportAPI for coding agentsTypical cost
DeepSeek AI AgentWorks with Codex, Claude Code, OpenClaw + 20 agentsOpenAI-compatible DeepSeek APIFree credits / low API pricing
ChatGPT / Codex (default)Codex, Copilot CLI (OpenAI models only)OpenAI API — usage-basedSubscription + API fees
Claude (default)Claude Code (Anthropic models only)Anthropic API — usage-basedPro plan + API fees
Gemini (default)Limited agent toolingGoogle AI APIFree tier + paid tiers

DeepSeek 対応 Agent 一覧

使いたい Agent を選ぶ——Codex、Claude Code、OpenClaw、Hermes——ガイドを見て DeepSeek Agent を設定。

  • Claude Code

    AI coding assistant that runs in the terminal.

    ガイドを見る
  • Codex

    OpenAI's coding agent.

    ガイドを見る
  • Hermes

    Open-source self-improving AI agent built by Nous Research.

    ガイドを見る
  • OpenClaw

    Open-source personal AI assistant that plugs into chat tools (Feishu, WeChat) and is extensible via Skills.

    ガイドを見る
  • Pi

    Minimal, extensible terminal coding harness with tree-structured sessions and custom providers.

    ガイドを見る
  • WorkBuddy / CodeBuddy

    AI agent and coding assistant with custom OpenAI-compatible model configuration.

    ガイドを見る

DeepSeek Agent をもっと使いこなしたい?

Skill マーケットでワークフローと連携を探すか、常用ツールでセットアップをカスタマイズ。

よくある質問

まだ気になる?こちらを開いてください。

What is DeepSeek?

+
DeepSeek is a Hangzhou-based AI lab that builds and releases large language models, most under open licenses. The current generation is DeepSeek V4 (April 2026), with V4 Pro for hard reasoning and agentic coding, and V4 Flash for high-throughput, lower-cost work. Both share a 1M-token context window and expose an OpenAI-compatible Chat Completions API plus an Anthropic Messages-compatible endpoint.

What API protocols does DeepSeek support natively?

+
DeepSeek natively supports OpenAI Chat Completions at https://api.deepseek.com and Anthropic Messages at https://api.deepseek.com/anthropic. It does not natively expose the OpenAI Responses API (/v1/responses). Tools that only speak Responses — such as Codex CLI — need a bridge like Moon Bridge.

Does DeepSeek support the OpenAI Responses API?

+
No. DeepSeek does not ship an official /v1/responses endpoint. Use Chat Completions or Anthropic Messages directly. For Codex and other Responses-only clients, run a local protocol bridge (for example Moon Bridge) that translates Responses requests into a protocol DeepSeek understands.

LLM と Agent の違いは?

+
LLM はプロンプトからテキストを生成します。Agent は LLM の外側にツール呼び出し・記憶・実行ループを持ち、コマンド実行、ファイル編集、多段階タスクを完了できます。

Agent は必要?チャットモデルで十分?

+
素早い Q&A や下書きならチャットモデルで十分。機能実装、リポジトリのリファクタ、ワークフロー自動化、エディタ・ターミナル・チャットでの継続実行が必要なら Agent を選びます。

なぜ DeepSeek でこれらの Agent を動かす?

+
DeepSeek は推論とコーディングに強く、価格も低く、無料クレジットも入手できます。Codex、Claude Code、OpenClaw、Hermes など多くは API キーとエンドポイント設定でデフォルトモデルを DeepSeek に差し替えられるため、ごく低コスト、あるいはゼロコストで同じワークフローを回せます。

DeepSeek API は本当に無料?クレジットはどこから?

+
DeepSeek 互換のエンドポイントは、無料クレジットや第三者の無料チャンネル経由で入手できます——例えばプラットフォームが随時配布する特典クレジットや、無料枠を提供するアグリゲーターなど。枠や提供状況は時期により変わるため、利用前にチャンネル側の最新条件をご確認ください。

具体的な接続方法は?

+
下のリストからツールを選び、連携ガイドを開いてください。多くは DeepSeek API キー(無料チャンネルのキーを含む)と、設定ファイルまたは環境変数への数行の記述だけで完了します。

設定が複雑——もっと簡単な方法は?

+
あります。別途「モデル切替ツール」ページを用意しており、GUI の切替ツールや転送レイヤーで、JSON を手編集せずに Agent を DeepSeek に向けられます。モデル間の切り替えも簡単です。ツールページをご覧ください。