38 lines
1022 B
YAML
38 lines
1022 B
YAML
# Keyless real-Loader composition for the semantic-checkpoint recovery snapshot.
|
|
# The headless driver resumes the seeded interrupted session and emits its next
|
|
# turn over stream-json; the replay adapter supplies the deterministic response.
|
|
|
|
- id: persistence
|
|
name: '@deepseek-ai/dsh-session-persistence-jsonl'
|
|
config:
|
|
root: './.sessions'
|
|
compression: none
|
|
|
|
- id: checkpoint
|
|
name: '@deepseek-ai/dsh-session-checkpoint-policy'
|
|
|
|
- id: replay
|
|
name: '@deepseek-ai/dsh-llm-replay'
|
|
config:
|
|
file: !!js process.env.DSH_SNAPSHOT_FILE
|
|
overrideFile: !!js process.env.DSH_SNAPSHOT_OVERRIDE
|
|
|
|
- id: bash
|
|
name: '@deepseek-ai/dsh-bash-local'
|
|
config:
|
|
timeoutMs: 60000
|
|
|
|
- id: agent
|
|
name: '@deepseek-ai/dsh-agent-spine-demo'
|
|
config:
|
|
agents: []
|
|
workspaceContext: false
|
|
skills:
|
|
enabled: false
|
|
toolTasks: false
|
|
goals: false
|
|
|
|
# Await the persisted resume before the headless driver inspects root agents.
|
|
- id: resumed-agent
|
|
name: './tests/fixtures/semantic-checkpoint-agent.ts'
|