mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
27 lines
621 B
YAML
27 lines
621 B
YAML
# Headless agent with the network-free `mock-echo` adapter and example-local
|
|
# `echo` tool. No API key is needed because the adapter never touches the network.
|
|
|
|
- id: mock-llm
|
|
name: './src/mock-llm.ts'
|
|
|
|
- id: echo-tool
|
|
name: './src/echo-tool.ts'
|
|
|
|
- id: bash
|
|
name: '@deepseek-ai/dsh-bash-local'
|
|
|
|
- id: fs-local
|
|
name: '@deepseek-ai/dsh-fs-local'
|
|
config:
|
|
cwd: !!js process.cwd()
|
|
|
|
- id: cli-agent
|
|
name: '@deepseek-ai/dsh-cli-demo'
|
|
config:
|
|
provider: mock
|
|
model: mock-echo
|
|
persona: 'You are echo-agent, a demo agent.'
|
|
persistenceRoot: './.sessions'
|
|
workspaceContext:
|
|
maxBytes: 65536
|