mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
28 lines
723 B
YAML
28 lines
723 B
YAML
# Real Loader composition for the keyless conversational PTY test. The app
|
|
# bundle supplies the production agent/TUI/user-question stack; only the model
|
|
# is scripted so the terminal interaction is deterministic and network-free.
|
|
- id: scripted-llm
|
|
name: './tui-scripted-llm.ts'
|
|
|
|
- id: bash
|
|
name: '@deepseek-ai/dsh-bash-local'
|
|
|
|
- id: fs-local
|
|
name: '@deepseek-ai/dsh-fs-local'
|
|
config:
|
|
cwd: !!js process.cwd()
|
|
|
|
- id: stdio-agent
|
|
name: '@deepseek-ai/dsh-stdio-demo'
|
|
config:
|
|
provider: tui-scripted
|
|
model: tui-scripted-model
|
|
persistenceRoot: './.sessions'
|
|
workspaceContext:
|
|
maxBytes: 65536
|
|
welcome: 'scripted TUI ready.'
|
|
ui:
|
|
mode: tui
|
|
tui:
|
|
showReasoning: true
|