presets.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "researcher": {
  3. "system_prompt_file": "prompts/researcher.prompt",
  4. "max_iterations": 50,
  5. "temperature": 0.3,
  6. "skills": [
  7. "core",
  8. "research"
  9. ],
  10. "description": "Phase 1: 纯粹的平台爬虫与原文采集者"
  11. },
  12. "filter_and_blueprint": {
  13. "system_prompt_file": "prompts/filter_and_blueprint.prompt",
  14. "max_iterations": 50,
  15. "temperature": 0.2,
  16. "skills": [
  17. "core"
  18. ],
  19. "description": "Phase 2-A: 过滤劣质 Case,抽象工序 Blueprint (只有本地文件读写权限)"
  20. },
  21. "extract_capabilities": {
  22. "system_prompt_file": "prompts/extract_capabilities.prompt",
  23. "max_iterations": 100,
  24. "temperature": 0.1,
  25. "skills": [
  26. "core"
  27. ],
  28. "description": "Phase 2-B: 原子能力映射图库分析 (无浏览器权限,只挂载基础和指定检索工具)"
  29. },
  30. "assemble_strategy": {
  31. "system_prompt_file": "prompts/assemble_strategy.prompt",
  32. "max_iterations": 50,
  33. "temperature": 0.1,
  34. "skills": [
  35. "core"
  36. ],
  37. "description": "Phase 3: 最终策略组装者 (只有本地文件读写权限)"
  38. }
  39. }