process.json 404 B

12345678910111213141516171819
  1. {
  2. "name": "CreateNote",
  3. "description": "创建小红书笔记",
  4. "variables": {
  5. "model": "doubao",
  6. "imgPrompt": "一张健身主题的图片,阳光下的运动场景,励志风格",
  7. "imgPath": "./tmp/fitness.png"
  8. },
  9. "execute":
  10. [
  11. {
  12. "type": "ai",
  13. "method": "text2img",
  14. "inVars": ["{imgPrompt}", "{model}", "{imgPath}"],
  15. "outVars": []
  16. }
  17. ]
  18. }