├── .github └── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── imgs ├── 1.png ├── 2.png └── wx.jpg ├── index.html ├── javascript ├── main-entry.js ├── main-entry.js.map ├── previewText.js └── sixgod.css ├── jsconfig.json ├── json ├── 01起手式.json ├── 02人物.json ├── 03服饰.json ├── 04人物发型.json ├── 05动作.json ├── 06面部表情.json ├── 动物装饰.json ├── 场景道具.json ├── 抽卡机.json ├── 新服饰.json ├── 景观.json ├── 艺术、魔法.json └── 颜色.json ├── models └── .gitkeep ├── package.json ├── src ├── App.vue ├── assets │ ├── blue.scss │ ├── default.scss │ ├── green.scss │ ├── imgs │ │ └── wx.png │ ├── main.scss │ ├── pink.scss │ └── yellow.scss ├── components │ ├── Home.vue │ ├── MainApp.vue │ └── promptRender │ │ ├── AutoComplete.vue │ │ ├── CategoryManager.vue │ │ ├── CustomRandomPrompt.vue │ │ ├── Dialog.vue │ │ ├── DragImg.vue │ │ ├── DraggableList.vue │ │ ├── Favorites.vue │ │ ├── ImaginePrompt.vue │ │ ├── Loading.vue │ │ ├── ProgressBar.vue │ │ ├── PromptTextArea.vue │ │ ├── PromtList.vue │ │ ├── Settings.vue │ │ ├── TabItem.vue │ │ ├── Tabs.vue │ │ ├── Tips.vue │ │ └── UploadImg.vue ├── icons │ └── Tanslator.vue ├── imagineJson │ └── random.json ├── main.js ├── style.css └── utils │ ├── autoDrag.js │ ├── common.js │ ├── eventBus.js │ ├── load.js │ └── resizable.js ├── transerver ├── Translator.py ├── baidu.py ├── freebd.py ├── imgtotext.py ├── llm.py ├── llmTranslate.py └── translatorFactory.py ├── vite.config.js ├── yours └── 自定义词库放当前目录.txt ├── 更新插件.bat └── 更新日志.txt /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/__init__.py -------------------------------------------------------------------------------- /imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/imgs/1.png -------------------------------------------------------------------------------- /imgs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/imgs/2.png -------------------------------------------------------------------------------- /imgs/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/imgs/wx.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/index.html -------------------------------------------------------------------------------- /javascript/main-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/javascript/main-entry.js -------------------------------------------------------------------------------- /javascript/main-entry.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/javascript/main-entry.js.map -------------------------------------------------------------------------------- /javascript/previewText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/javascript/previewText.js -------------------------------------------------------------------------------- /javascript/sixgod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/javascript/sixgod.css -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/jsconfig.json -------------------------------------------------------------------------------- /json/01起手式.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/01起手式.json -------------------------------------------------------------------------------- /json/02人物.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/02人物.json -------------------------------------------------------------------------------- /json/03服饰.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/03服饰.json -------------------------------------------------------------------------------- /json/04人物发型.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/04人物发型.json -------------------------------------------------------------------------------- /json/05动作.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/05动作.json -------------------------------------------------------------------------------- /json/06面部表情.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/06面部表情.json -------------------------------------------------------------------------------- /json/动物装饰.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/动物装饰.json -------------------------------------------------------------------------------- /json/场景道具.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/场景道具.json -------------------------------------------------------------------------------- /json/抽卡机.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/抽卡机.json -------------------------------------------------------------------------------- /json/新服饰.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/新服饰.json -------------------------------------------------------------------------------- /json/景观.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/景观.json -------------------------------------------------------------------------------- /json/艺术、魔法.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/艺术、魔法.json -------------------------------------------------------------------------------- /json/颜色.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/json/颜色.json -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/models/.gitkeep -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/blue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/assets/blue.scss -------------------------------------------------------------------------------- /src/assets/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/assets/default.scss -------------------------------------------------------------------------------- /src/assets/green.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/assets/green.scss -------------------------------------------------------------------------------- /src/assets/imgs/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/assets/imgs/wx.png -------------------------------------------------------------------------------- /src/assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/assets/main.scss -------------------------------------------------------------------------------- /src/assets/pink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/assets/pink.scss -------------------------------------------------------------------------------- /src/assets/yellow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/assets/yellow.scss -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/Home.vue -------------------------------------------------------------------------------- /src/components/MainApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/MainApp.vue -------------------------------------------------------------------------------- /src/components/promptRender/AutoComplete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/AutoComplete.vue -------------------------------------------------------------------------------- /src/components/promptRender/CategoryManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/CategoryManager.vue -------------------------------------------------------------------------------- /src/components/promptRender/CustomRandomPrompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/CustomRandomPrompt.vue -------------------------------------------------------------------------------- /src/components/promptRender/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/Dialog.vue -------------------------------------------------------------------------------- /src/components/promptRender/DragImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/DragImg.vue -------------------------------------------------------------------------------- /src/components/promptRender/DraggableList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/DraggableList.vue -------------------------------------------------------------------------------- /src/components/promptRender/Favorites.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/Favorites.vue -------------------------------------------------------------------------------- /src/components/promptRender/ImaginePrompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/ImaginePrompt.vue -------------------------------------------------------------------------------- /src/components/promptRender/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/Loading.vue -------------------------------------------------------------------------------- /src/components/promptRender/ProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/ProgressBar.vue -------------------------------------------------------------------------------- /src/components/promptRender/PromptTextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/PromptTextArea.vue -------------------------------------------------------------------------------- /src/components/promptRender/PromtList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/PromtList.vue -------------------------------------------------------------------------------- /src/components/promptRender/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/Settings.vue -------------------------------------------------------------------------------- /src/components/promptRender/TabItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/TabItem.vue -------------------------------------------------------------------------------- /src/components/promptRender/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/Tabs.vue -------------------------------------------------------------------------------- /src/components/promptRender/Tips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/Tips.vue -------------------------------------------------------------------------------- /src/components/promptRender/UploadImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/components/promptRender/UploadImg.vue -------------------------------------------------------------------------------- /src/icons/Tanslator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/icons/Tanslator.vue -------------------------------------------------------------------------------- /src/imagineJson/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/imagineJson/random.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/main.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/autoDrag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/utils/autoDrag.js -------------------------------------------------------------------------------- /src/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/utils/common.js -------------------------------------------------------------------------------- /src/utils/eventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/utils/eventBus.js -------------------------------------------------------------------------------- /src/utils/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/utils/load.js -------------------------------------------------------------------------------- /src/utils/resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/src/utils/resizable.js -------------------------------------------------------------------------------- /transerver/Translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/transerver/Translator.py -------------------------------------------------------------------------------- /transerver/baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/transerver/baidu.py -------------------------------------------------------------------------------- /transerver/freebd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/transerver/freebd.py -------------------------------------------------------------------------------- /transerver/imgtotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/transerver/imgtotext.py -------------------------------------------------------------------------------- /transerver/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/transerver/llm.py -------------------------------------------------------------------------------- /transerver/llmTranslate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/transerver/llmTranslate.py -------------------------------------------------------------------------------- /transerver/translatorFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/transerver/translatorFactory.py -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/vite.config.js -------------------------------------------------------------------------------- /yours/自定义词库放当前目录.txt: -------------------------------------------------------------------------------- 1 | put your custom pormpts here -------------------------------------------------------------------------------- /更新插件.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/更新插件.bat -------------------------------------------------------------------------------- /更新日志.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjam/comfyui-sixgod_prompt/HEAD/更新日志.txt --------------------------------------------------------------------------------