mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
21 lines
922 B
YAML
21 lines
922 B
YAML
# Keyless replay includes the live `cordis.yml`, disables the key-requiring
|
|
# DeepSeek adapter, and inserts `llm-replay` to serve recorded JSONL without a key
|
|
# or network; every other app entry remains shared.
|
|
# With `DSH_SNAPSHOT=replay`, the app bin reads `DSH_SNAPSHOT_FILE` and optional
|
|
# `DSH_SNAPSHOT_OVERRIDE` from the harness. The one-shot patch applies at include
|
|
# load time, and stdout remains reserved for ACP JSON-RPC.
|
|
- id: base
|
|
name: '@cordisjs/plugin-include'
|
|
config:
|
|
path: ./cordis.yml
|
|
patches:
|
|
# `name` asserts the target: a mismatch skips the patch and warns only when
|
|
# a logger exists. A renamed id leaves a stale adapter entry, but replay still
|
|
# short-circuits through `llm-replay`.
|
|
- id: llm-deepseek
|
|
name: '@deepseek-ai/dsh-llm-deepseek'
|
|
disabled: true
|
|
- insert:
|
|
- id: llm-replay
|
|
name: '@deepseek-ai/dsh-llm-replay'
|