cordis.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Private Python PTC composition: replace the headless worker provider through
  2. # the real Loader and render the generated Python SDK prompt.
  3. - id: agent-default-model
  4. name: '@deepseek-ai/dsh-agent-default-model'
  5. config:
  6. provider: deepseek-official
  7. model: deepseek-v4-pro
  8. - id: session-persistence-jsonl
  9. name: '@deepseek-ai/dsh-session-persistence-jsonl'
  10. config:
  11. root: !!js dshHomePath('sessions')
  12. compression: !!js 'process.env.DSH_SNAPSHOT === undefined ? ''zstd'' : ''none'''
  13. - id: agent-instructions
  14. name: '@deepseek-ai/dsh-agent-instructions'
  15. config:
  16. maxBytes: 65536
  17. - id: tools
  18. name: '@deepseek-ai/dsh-tools'
  19. config:
  20. mode: ptc
  21. - id: code-runtime
  22. disabled: true
  23. - insert:
  24. - id: code-runtime-python
  25. name: '@deepseek-ai/dsh-experimental-code-runtime-python'
  26. - id: system-prompt
  27. name: '@deepseek-ai/dsh-system-prompt'
  28. config:
  29. personaPrefix: |
  30. You are a coding assistant powered by the {{model}} model. Your working directory is {{cwd}}.
  31. Verify your work by running the code or tests. Keep answers brief and factual.