Back to home@d3vmeh

dsh-turn-doctor

No description

Stars
0
Language
JavaScript
Created
Aug 30, 2026
Updated
Aug 30, 2026
GitHub repo

Introduction

dsh-turn-doctor

A diagnostic plugin for DeepSeek Harness that tells you why a turn failed and which timeout or setting is actually responsible.

Why this exists

A dsh request can time out in several different places:

  • dsh's idle watchdog (streamIdleTimeoutMs)
  • the SDK request timeout (timeoutMs)
  • Node/undici HTTP timers
  • the model server
  • individual tool calls

The problem is that the UI usually only shows the final error message, and those messages aren't very specific.

For example, Request timed out. might be the SDK timeout or undici's 300-second headers timeout. terminated might mean undici gave up waiting for the response body, or the model server died.

That makes it easy to change the wrong setting and then watch the request fail at exactly 5:00 again. This has come up in discussions like #3157 and #4518.

dsh-turn-doctor measures each model request itself (time to first byte, longest gap between bytes, and total request time) and uses that timing to identify the most likely failure point.

Example:

turn-doctor: session=session-ccc41e50 turn 1 attempt 1
  verdict: Node's HTTP headers timer (undici) gave up waiting for the server's first response after 300.6 s.
  evidence: no reply bytes in 300.6 s
  fix: install dsh-fetch-timeouts to raise Node's HTTP timers; on llama.cpp this usually means the request was deferred behind a busy slot

It also catches a couple of failures that are otherwise easy to miss, including failed compactions and tool timeouts.

What it detects

LayerTypical messageSuggested fix
dsh idle watchdogpi-ai stream idle timeout after NmsRaise streamIdleTimeoutMs; if the request was queued, check the gate or --parallel
Node headers timer (undici)Request timed out. with no bytes at ~300 sInstall/configure dsh-fetch-timeouts
SDK request timerRequest timed out. at around timeoutMsRaise timeoutMs on the route
Node body timer (undici)terminated after ~300 s without data mid-responsedsh-fetch-timeouts, or configure the server to send data/pings
Server closed/crashedterminated or Connection error. after a short gapCheck the model server logs
Server unreachableConnection error. almost immediatelyCheck that the server is running and the URL/port are correct
Context overflowrequest (N tokens) exceeds the available context sizeCompact, increase context, or lower the compaction threshold
Empty responseRequest completes with no contentCheck maxTokens / reasoning effort
dsh-llm-gate queueQUEUE_TIMEOUT, QUEUE_FULLRaise queueTimeoutMs or reduce subagent concurrency
GPU faultErrorDeviceLost, decode() failedRestart the server; try a smaller context
llama.cpp router reload500 proxy errorCheck --models-max
Failed compactionsummarization truncated at the token capRaise the compaction preset's summary cap
Tool timeouttool call timed out after NmsRaise that tool's timeoutMs

Each retry attempt is diagnosed separately. dsh already shows retry countdowns, so turn-doctor doesn't duplicate them.

If the timing isn't enough to distinguish two possible causes, it says that rather than pretending to know.

Install

dsh plugin --profile web add dsh-turn-doctor

That's it.

Verdicts are printed in the dsh terminal. You can also run /why in chat to see recent verdicts for the current session, including subagents.

If you've changed your route timeouts from the defaults, add them to ~/.dsh/profiles/web/cordis.patch.yml so turn-doctor can classify failures correctly:

- id: turn-doctor
  config:
    providers:
      llamacpp:
        streamIdleTimeoutMs: 7200000
        timeoutMs: 7200000
        undiciTimeoutMs: 1800000   # if dsh-fetch-timeouts is installed
    keep: 10                       # verdicts kept per session for /why

If a provider isn't configured, turn-doctor assumes the standard 300-second defaults.

Notes

  • turn-doctor only diagnoses failures. It doesn't retry requests, change settings, or inject anything into the model context.
  • If the SDK timer and undici headers timer are both set to 300 seconds, a first-byte timeout can be ambiguous. In that case, turn-doctor reports undici because fixing it requires dsh-fetch-timeouts; dsh can't change that timer itself.
  • Verdicts are also written to the session log as turn-doctor/verdict events. They could eventually be rendered directly in the web chat.
  • dsh-error-lens is related, but solves a different problem: it shows recent failures in a web panel grouped by HTTP status. turn-doctor uses request timing to distinguish the different timeout layers, and also covers compactions and tool calls.

License

MIT