cordis.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Code Mode image overlay: mounts the worker runtime and durable attachment
  2. # store so a nested read_image result can cross the generic rich-result bridge.
  3. # The live config selects the shipped vision route for manual use.
  4. - id: agent-default-model
  5. name: '@deepseek-ai/dsh-agent-default-model'
  6. config:
  7. provider: deepseek-official
  8. model: deepseek-v4-flash-vision-exp
  9. - id: session-persistence-jsonl
  10. name: '@deepseek-ai/dsh-session-persistence-jsonl'
  11. config:
  12. root: !!js dshHomePath('sessions')
  13. compression: !!js 'process.env.DSH_SNAPSHOT === undefined ? ''zstd'' : ''none'''
  14. - id: agent-instructions
  15. name: '@deepseek-ai/dsh-agent-instructions'
  16. config:
  17. maxBytes: 65536
  18. - id: tools
  19. name: '@deepseek-ai/dsh-tools'
  20. config:
  21. mode: code
  22. - id: system-prompt
  23. name: '@deepseek-ai/dsh-system-prompt'
  24. config:
  25. persona: |
  26. You are a coding assistant powered by the {{model}} model. Your working directory is {{cwd}}.
  27. Verify your work by running the code or tests. Keep answers brief and factual.
  28. - id: attachment-local
  29. name: '@deepseek-ai/dsh-attachment-local'