<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Deepseek on Agent Zone</title><link>https://agent-zone.ai/tools/deepseek/</link><description>Recent content in Deepseek on Agent Zone</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 20 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://agent-zone.ai/tools/deepseek/index.xml" rel="self" type="application/rss+xml"/><item><title>Cost-Per-Pass, Not Cost-Per-Call: The Right Metric for Autonomous Agent Routing</title><link>https://agent-zone.ai/knowledge/agent-tooling/cost-per-pass-not-cost-per-call/</link><pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate><guid>https://agent-zone.ai/knowledge/agent-tooling/cost-per-pass-not-cost-per-call/</guid><description>&lt;h1 id="cost-per-pass-not-cost-per-call"&gt;Cost-Per-Pass, Not Cost-Per-Call&lt;a class="anchor" href="#cost-per-pass-not-cost-per-call"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Practitioners price LLMs by the per-token rate on the provider&amp;rsquo;s pricing page. For autonomous agents, that number is misleading. Two layers of indirection sit between the per-token rate and the cost you actually pay to get work done: variable prompt sizes turn per-token into per-call, and variable pass rates turn per-call into per-pass. Each layer can invert the ranking.&lt;/p&gt;
&lt;p&gt;For autonomous fleets where failed attempts trigger reviewer cycles, retries, and reputational drag, &lt;strong&gt;cost-per-pass is the only metric that ranks models correctly&lt;/strong&gt;. This article shows how to compute it, when it dominates, and where the cheapest-per-token model becomes the most expensive in production.&lt;/p&gt;</description></item><item><title>DeepSeek V4 Operational Quirks: Pro vs Flash, Reasoning Echo, and the Discount Cliff</title><link>https://agent-zone.ai/knowledge/agent-tooling/deepseek-v4-operational-quirks/</link><pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate><guid>https://agent-zone.ai/knowledge/agent-tooling/deepseek-v4-operational-quirks/</guid><description>&lt;h1 id="deepseek-v4-operational-quirks"&gt;DeepSeek V4 Operational Quirks&lt;a class="anchor" href="#deepseek-v4-operational-quirks"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;DeepSeek V4 ships two models behind one OpenAI-compatible API: V4-Pro (reasoning) at $1.74/M input / $3.48/M output and V4-Flash (chat) at $0.28/M input / $1.10/M output. Until 2026-05-31 V4-Pro carries a 75% discount, putting it at $0.435/M input — cheap enough to use as a heavy-tier coding model. After that, the cost steps up 4×.&lt;/p&gt;
&lt;p&gt;The two models live on the same endpoint but want very different things. V4-Pro behaves like a reasoning model (thin prompts, reasoning_content echo required, tool_choice restrictions). V4-Flash behaves like a chat model (rich prompts win dramatically; rejects nothing). Confuse them and your matrix lights up red.&lt;/p&gt;</description></item><item><title>LLM Adapter Audit Checklist: 10 Bugs That Hide in OpenAI-Compatible Providers</title><link>https://agent-zone.ai/knowledge/agent-tooling/llm-adapter-audit-checklist/</link><pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate><guid>https://agent-zone.ai/knowledge/agent-tooling/llm-adapter-audit-checklist/</guid><description>&lt;h1 id="llm-adapter-audit-checklist"&gt;LLM Adapter Audit Checklist&lt;a class="anchor" href="#llm-adapter-audit-checklist"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;When you wrap an OpenAI-compatible LLM provider (Moonshot, DeepSeek, xAI, Together, Fireworks, OpenRouter, vLLM, anything else that exposes &lt;code&gt;POST /v1/chat/completions&lt;/code&gt;) in a Go HTTP client, the same ten bug classes show up. They all silently degrade or break the agent — none of them crash loudly. Each was observed in production across at least one of xAI, DeepSeek, or Moonshot during a two-week audit period.&lt;/p&gt;
&lt;p&gt;This checklist is the audit. Run it against any new adapter before shipping. Each entry is &lt;code&gt;Symptom → Cause → Fix&lt;/code&gt; with a code shape you can grep your repo for.&lt;/p&gt;</description></item><item><title>OFAT Matrix LLM Tuning: A Methodology for Picking Sampling Params, Tool Configs, and Prompts Without Guessing</title><link>https://agent-zone.ai/knowledge/agent-tooling/ofat-matrix-llm-tuning/</link><pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate><guid>https://agent-zone.ai/knowledge/agent-tooling/ofat-matrix-llm-tuning/</guid><description>&lt;h1 id="ofat-matrix-llm-tuning"&gt;OFAT Matrix LLM Tuning&lt;a class="anchor" href="#ofat-matrix-llm-tuning"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;When a new provider or model lands and you have to decide what &lt;code&gt;temperature&lt;/code&gt;, &lt;code&gt;max_tokens&lt;/code&gt;, &lt;code&gt;tool_choice&lt;/code&gt;, prompt-shape, and turn budget to ship in production, the default is to pick by hunch. Read the model card, copy a partner adapter&amp;rsquo;s defaults, ship. A week later you find out &lt;code&gt;reasoning_effort=high&lt;/code&gt; doubled cost for no quality gain, &lt;code&gt;max_tokens=2048&lt;/code&gt; silently truncated half your tier-3 runs, and the &amp;ldquo;prompt-rich&amp;rdquo; pattern you copied from grok-4.3 actively hurts kimi.&lt;/p&gt;</description></item><item><title>Reasoning-Model Tuning Asymmetry: Why Thin Prompts Beat Rich Prompts (and When They Don't)</title><link>https://agent-zone.ai/knowledge/agent-tooling/reasoning-model-tuning-asymmetry/</link><pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate><guid>https://agent-zone.ai/knowledge/agent-tooling/reasoning-model-tuning-asymmetry/</guid><description>&lt;h1 id="reasoning-model-tuning-asymmetry"&gt;Reasoning-Model Tuning Asymmetry&lt;a class="anchor" href="#reasoning-model-tuning-asymmetry"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Practitioners assume &amp;ldquo;better prompt = better output&amp;rdquo;. For one model class, that assumption is correct. For the other, the same prompt makes things measurably worse. This article documents the asymmetry, names the dividing line, and gives you a 4-cell test to confirm it on your own canary before you commit to a prompt.&lt;/p&gt;
&lt;p&gt;The asymmetry is empirical, not theoretical. It shows up cleanly across four independent OFAT (one-factor-at-a-time) matrices run between 2026-05-18 and 2026-05-20: sonnet POC, grok matrix v1+v2, deepseek matrix v1, kimi matrix v1.&lt;/p&gt;</description></item><item><title>The d4-rich Prompt Pattern: Unlocking Non-Reasoning Models on Multi-File Tasks</title><link>https://agent-zone.ai/knowledge/agent-tooling/prompt-rich-pattern-non-reasoning-models/</link><pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate><guid>https://agent-zone.ai/knowledge/agent-tooling/prompt-rich-pattern-non-reasoning-models/</guid><description>&lt;h1 id="the-d4-rich-prompt-pattern"&gt;The d4-rich Prompt Pattern&lt;a class="anchor" href="#the-d4-rich-prompt-pattern"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Non-reasoning chat models (deepseek-V4-Flash, grok-4.3, kimi with thinking disabled) collapse on multi-file refactor tasks when given thin or baseline prompts. Pass rates of 0-33% on canaries that reasoning models clear at 67-100%. The cheap fix is a three-part prompt addendum: completion checklist, callsites-exhaustively-updated rule, and verify-before-push instruction. Drop it into the system prompt of a non-reasoning model and the canaries go green. Drop it into a reasoning model and you pay 12× more for 0% quality improvement.&lt;/p&gt;</description></item></channel></rss>