├── .cursorignore ├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── Authors.txt ├── Framework.png ├── HOW_TO_USE_LMSTUDIO.md ├── LICENSE ├── LMSTUDIO_IMPLEMENTATION.md ├── LMSTUDIO_SETUP.md ├── NOTICE.txt ├── README.md ├── README_CN.md ├── __init__.py ├── assets ├── Debug模型下载.jpg ├── FAQ.md ├── FAQ_CN.md ├── Framework-v3.png ├── Framework.png ├── GenLabHistory.png ├── Genlab.gif ├── broken_workflow_funny.png ├── comfycopilot_nodes_recommend.gif ├── comfycopilot_nodes_search.gif ├── comfyui_manager.png ├── comfyui_manager_install.png ├── comfyui_ui_icon.png ├── debug.gif ├── discordqrcode.png ├── expert_add.jpg ├── gif.gif ├── keygen.png ├── logo.png ├── qrcode.png ├── start.jpg ├── 下游节点推荐.gif ├── 工作流检索.png ├── 工作流生成.gif ├── 改写.gif ├── 模型下载.jpg ├── 模型推荐.gif ├── 节点信息查询.gif └── 节点推荐.gif ├── backend ├── __init__.py ├── agent_factory.py ├── controller │ ├── __init__.py │ ├── conversation_api.py │ ├── expert_api.py │ └── llm_api.py ├── core.py ├── dao │ ├── __init__.py │ ├── expert_table.py │ ├── session_message_table.py │ └── workflow_table.py ├── data │ └── workflow_rewrite_expert.json ├── service │ ├── __init__.py │ ├── debug_agent.py │ ├── link_agent_tools.py │ ├── mcp_client.py │ ├── message_memory.py │ ├── parameter_tools.py │ ├── summary_agent.py │ ├── workflow_rewrite_agent.py │ ├── workflow_rewrite_agent_simple.py │ └── workflow_rewrite_tools.py └── utils │ ├── __init__.py │ ├── auth_utils.py │ ├── comfy_gateway.py │ ├── globals.py │ ├── key_utils.py │ ├── logger.py │ ├── modelscope_gateway.py │ ├── request_context.py │ ├── string_utils.py │ └── track_utils.py ├── command ├── dist └── copilot_web │ ├── App-D0onO6Pn.js │ ├── DebugGuide-BMwuge6o.js │ ├── DebugResult-D-xaPQft.js │ ├── WorkflowOption-DRDiBBwJ.js │ ├── assets │ ├── cc-icon-DfxqqsZi.svg │ ├── gif-Dx_BC5pS.gif │ ├── input-UcJyCCDl.css │ └── logo-BTZhX0BN.png │ ├── fonts.css │ ├── input.js │ ├── message-components-fbm8PP7r.js │ ├── vendor-markdown-B4Av9P7l.js │ ├── vendor-react-ByKzdfMq.js │ ├── vendor-ui-l0sNRNKZ.js │ └── workflowChat-XZ3VCjO6.js ├── entry ├── comfyui-bridge.js └── entry.js ├── index.html ├── locales ├── en │ ├── commands.json │ └── main.json └── zh │ ├── commands.json │ └── main.json ├── poster.html ├── public ├── showcase │ ├── showcase.json │ └── showcase_en.json └── workflows │ ├── basic_image_gen.json │ ├── default.png │ ├── face_restore.json │ └── upscale.json ├── pyproject.toml ├── requirements.txt ├── scripts └── setupGitHooks.js └── ui ├── .eslintrc.cjs ├── .npmrc ├── .prettierrc ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── scripts └── post-build.js ├── src ├── Api.ts ├── App.tsx ├── apis │ ├── comfyApiCustom.ts │ ├── rewriteExpertApi.ts │ └── workflowChatApi.ts ├── components │ ├── chat │ │ ├── ApiKeyModal.tsx │ │ ├── ChatHeader.tsx │ │ ├── ChatInput.tsx │ │ ├── Icons.tsx │ │ ├── ImageUploadModal.tsx │ │ ├── MessageList.tsx │ │ ├── ModelDownloadModal.tsx │ │ ├── Portal.tsx │ │ ├── RewriteExpertModal.tsx │ │ ├── SelectedNodeInfo.tsx │ │ ├── SessionHistoryModal.tsx │ │ └── messages │ │ │ ├── AIMessage.tsx │ │ │ ├── BaseMessage.tsx │ │ │ ├── DebugGuide.tsx │ │ │ ├── DebugResult.tsx │ │ │ ├── DownstreamSubgraphs.tsx │ │ │ ├── LoadingMessage.tsx │ │ │ ├── MessageList.tsx │ │ │ ├── ModelOption.tsx │ │ │ ├── NodeInstallGuide.tsx │ │ │ ├── NodeSearch.tsx │ │ │ ├── Showcase.tsx │ │ │ ├── UserMessage.tsx │ │ │ └── WorkflowOption.tsx │ ├── debug │ │ ├── ParameterDebugInterfaceNew.tsx │ │ ├── ParameterDebugInterfaceV2.tsx │ │ ├── README.md │ │ ├── index.ts │ │ ├── modals │ │ │ ├── AIWritingModal.tsx │ │ │ └── ImageModal.tsx │ │ ├── screens │ │ │ ├── ConfigureParameterScreen.tsx │ │ │ ├── ConfirmConfigurationScreen.tsx │ │ │ ├── HistoryItemScreen.tsx │ │ │ ├── HistoryScreen.tsx │ │ │ ├── InitialScreen.tsx │ │ │ ├── ProcessingScreen.tsx │ │ │ └── ResultGalleryScreen.tsx │ │ ├── styles │ │ │ └── highlightPulseStyle.ts │ │ ├── types │ │ │ └── parameterDebugTypes.ts │ │ └── utils │ │ │ ├── aiTextUtils.ts │ │ │ ├── historyUtils.ts │ │ │ ├── imageGenerationUtils.ts │ │ │ ├── interfaceUtils.ts │ │ │ ├── localStorageUtils.ts │ │ │ ├── modalUtils.ts │ │ │ ├── navigationUtils.ts │ │ │ ├── parameterUtils.ts │ │ │ ├── searchUtils.ts │ │ │ ├── stateManagementUtils.ts │ │ │ └── textInputUtils.ts │ ├── markdown.tsx │ ├── markdown │ │ └── markdownComponents.ts │ ├── ui │ │ ├── BeautifyCard.tsx │ │ ├── ButtonClose.tsx │ │ ├── ButtonWithModal.tsx │ │ ├── CollapsibleCard.tsx │ │ ├── DebugCollapsibleCard.tsx │ │ ├── Image-Loading.tsx │ │ ├── Input.tsx │ │ ├── Loading-icon.tsx │ │ ├── LoadingIcon.tsx │ │ ├── Markdown.tsx │ │ ├── Modal.tsx │ │ ├── RestoreCheckpoint.tsx │ │ ├── StartLink.tsx │ │ ├── StartPopView.tsx │ │ ├── TabButton.tsx │ │ ├── TableEmpty.tsx │ │ └── Tag.tsx │ └── virtualGrid │ │ └── index.tsx ├── config.ts ├── const.ts ├── constants │ └── events.ts ├── context │ └── ChatContext.tsx ├── fonts.css ├── fonts │ ├── cc-icon.eot │ ├── cc-icon.svg │ ├── cc-icon.ttf │ └── cc-icon.woff ├── hooks │ ├── useCountDown.ts │ ├── useDarkTheme.ts │ ├── useDraggable.ts │ ├── useLanguage.ts │ ├── useMousePosition.ts │ ├── useNodeSelection.ts │ ├── useNodeSelection.tsx │ └── useResizable.ts ├── index.css ├── input.css ├── main.tsx ├── output.css ├── scoped-tailwind.css ├── types │ ├── comfy.d.ts │ ├── dbTypes.ts │ ├── litegraph.d.ts │ └── types.ts ├── utils │ ├── OsPathUtils.ts │ ├── civitUtils.ts │ ├── comfyapp.ts │ ├── comfyuiWorkflowApi2Ui.ts │ ├── crypto.ts │ ├── deepJsonDiffCheck.ts │ ├── downloadJsonFile.ts │ ├── downloadWorkflowsZip.ts │ ├── encryptUtils.ts │ ├── findSfwImage.ts │ ├── graphUtils.ts │ ├── indexedDB.ts │ ├── jsonUtils.ts │ ├── localStorageManager.ts │ ├── mediaMetadataUtils.ts │ ├── privacyUtils.ts │ ├── queuePrompt.ts │ ├── saveShareKey.ts │ ├── showAlert.css │ ├── showAlert.ts │ ├── tools.ts │ └── uuid.ts ├── vite-env.d.ts └── workflowChat │ └── workflowChat.tsx ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/.cursorignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /Authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/Authors.txt -------------------------------------------------------------------------------- /Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/Framework.png -------------------------------------------------------------------------------- /HOW_TO_USE_LMSTUDIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/HOW_TO_USE_LMSTUDIO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /LMSTUDIO_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/LMSTUDIO_IMPLEMENTATION.md -------------------------------------------------------------------------------- /LMSTUDIO_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/LMSTUDIO_SETUP.md -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/README_CN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/Debug模型下载.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/Debug模型下载.jpg -------------------------------------------------------------------------------- /assets/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/FAQ.md -------------------------------------------------------------------------------- /assets/FAQ_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/FAQ_CN.md -------------------------------------------------------------------------------- /assets/Framework-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/Framework-v3.png -------------------------------------------------------------------------------- /assets/Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/Framework.png -------------------------------------------------------------------------------- /assets/GenLabHistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/GenLabHistory.png -------------------------------------------------------------------------------- /assets/Genlab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/Genlab.gif -------------------------------------------------------------------------------- /assets/broken_workflow_funny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/broken_workflow_funny.png -------------------------------------------------------------------------------- /assets/comfycopilot_nodes_recommend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/comfycopilot_nodes_recommend.gif -------------------------------------------------------------------------------- /assets/comfycopilot_nodes_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/comfycopilot_nodes_search.gif -------------------------------------------------------------------------------- /assets/comfyui_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/comfyui_manager.png -------------------------------------------------------------------------------- /assets/comfyui_manager_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/comfyui_manager_install.png -------------------------------------------------------------------------------- /assets/comfyui_ui_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/comfyui_ui_icon.png -------------------------------------------------------------------------------- /assets/debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/debug.gif -------------------------------------------------------------------------------- /assets/discordqrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/discordqrcode.png -------------------------------------------------------------------------------- /assets/expert_add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/expert_add.jpg -------------------------------------------------------------------------------- /assets/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/gif.gif -------------------------------------------------------------------------------- /assets/keygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/keygen.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/qrcode.png -------------------------------------------------------------------------------- /assets/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/start.jpg -------------------------------------------------------------------------------- /assets/下游节点推荐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/下游节点推荐.gif -------------------------------------------------------------------------------- /assets/工作流检索.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/工作流检索.png -------------------------------------------------------------------------------- /assets/工作流生成.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/工作流生成.gif -------------------------------------------------------------------------------- /assets/改写.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/改写.gif -------------------------------------------------------------------------------- /assets/模型下载.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/模型下载.jpg -------------------------------------------------------------------------------- /assets/模型推荐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/模型推荐.gif -------------------------------------------------------------------------------- /assets/节点信息查询.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/节点信息查询.gif -------------------------------------------------------------------------------- /assets/节点推荐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/assets/节点推荐.gif -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/agent_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/agent_factory.py -------------------------------------------------------------------------------- /backend/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/controller/conversation_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/controller/conversation_api.py -------------------------------------------------------------------------------- /backend/controller/expert_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/controller/expert_api.py -------------------------------------------------------------------------------- /backend/controller/llm_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/controller/llm_api.py -------------------------------------------------------------------------------- /backend/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/core.py -------------------------------------------------------------------------------- /backend/dao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/dao/expert_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/dao/expert_table.py -------------------------------------------------------------------------------- /backend/dao/session_message_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/dao/session_message_table.py -------------------------------------------------------------------------------- /backend/dao/workflow_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/dao/workflow_table.py -------------------------------------------------------------------------------- /backend/data/workflow_rewrite_expert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/data/workflow_rewrite_expert.json -------------------------------------------------------------------------------- /backend/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/service/debug_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/debug_agent.py -------------------------------------------------------------------------------- /backend/service/link_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/link_agent_tools.py -------------------------------------------------------------------------------- /backend/service/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/mcp_client.py -------------------------------------------------------------------------------- /backend/service/message_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/message_memory.py -------------------------------------------------------------------------------- /backend/service/parameter_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/parameter_tools.py -------------------------------------------------------------------------------- /backend/service/summary_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/summary_agent.py -------------------------------------------------------------------------------- /backend/service/workflow_rewrite_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/workflow_rewrite_agent.py -------------------------------------------------------------------------------- /backend/service/workflow_rewrite_agent_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/workflow_rewrite_agent_simple.py -------------------------------------------------------------------------------- /backend/service/workflow_rewrite_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/service/workflow_rewrite_tools.py -------------------------------------------------------------------------------- /backend/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/utils/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/auth_utils.py -------------------------------------------------------------------------------- /backend/utils/comfy_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/comfy_gateway.py -------------------------------------------------------------------------------- /backend/utils/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/globals.py -------------------------------------------------------------------------------- /backend/utils/key_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/key_utils.py -------------------------------------------------------------------------------- /backend/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/logger.py -------------------------------------------------------------------------------- /backend/utils/modelscope_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/modelscope_gateway.py -------------------------------------------------------------------------------- /backend/utils/request_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/request_context.py -------------------------------------------------------------------------------- /backend/utils/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/backend/utils/string_utils.py -------------------------------------------------------------------------------- /backend/utils/track_utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /command: -------------------------------------------------------------------------------- 1 | mkdir -p static/workflows -------------------------------------------------------------------------------- /dist/copilot_web/App-D0onO6Pn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/App-D0onO6Pn.js -------------------------------------------------------------------------------- /dist/copilot_web/DebugGuide-BMwuge6o.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/DebugGuide-BMwuge6o.js -------------------------------------------------------------------------------- /dist/copilot_web/DebugResult-D-xaPQft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/DebugResult-D-xaPQft.js -------------------------------------------------------------------------------- /dist/copilot_web/WorkflowOption-DRDiBBwJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/WorkflowOption-DRDiBBwJ.js -------------------------------------------------------------------------------- /dist/copilot_web/assets/cc-icon-DfxqqsZi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/assets/cc-icon-DfxqqsZi.svg -------------------------------------------------------------------------------- /dist/copilot_web/assets/gif-Dx_BC5pS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/assets/gif-Dx_BC5pS.gif -------------------------------------------------------------------------------- /dist/copilot_web/assets/input-UcJyCCDl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/assets/input-UcJyCCDl.css -------------------------------------------------------------------------------- /dist/copilot_web/assets/logo-BTZhX0BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/assets/logo-BTZhX0BN.png -------------------------------------------------------------------------------- /dist/copilot_web/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/fonts.css -------------------------------------------------------------------------------- /dist/copilot_web/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/input.js -------------------------------------------------------------------------------- /dist/copilot_web/message-components-fbm8PP7r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/message-components-fbm8PP7r.js -------------------------------------------------------------------------------- /dist/copilot_web/vendor-markdown-B4Av9P7l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/vendor-markdown-B4Av9P7l.js -------------------------------------------------------------------------------- /dist/copilot_web/vendor-react-ByKzdfMq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/vendor-react-ByKzdfMq.js -------------------------------------------------------------------------------- /dist/copilot_web/vendor-ui-l0sNRNKZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/vendor-ui-l0sNRNKZ.js -------------------------------------------------------------------------------- /dist/copilot_web/workflowChat-XZ3VCjO6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/dist/copilot_web/workflowChat-XZ3VCjO6.js -------------------------------------------------------------------------------- /entry/comfyui-bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/entry/comfyui-bridge.js -------------------------------------------------------------------------------- /entry/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/entry/entry.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/index.html -------------------------------------------------------------------------------- /locales/en/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/locales/en/commands.json -------------------------------------------------------------------------------- /locales/en/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/locales/en/main.json -------------------------------------------------------------------------------- /locales/zh/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/locales/zh/commands.json -------------------------------------------------------------------------------- /locales/zh/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/locales/zh/main.json -------------------------------------------------------------------------------- /poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/poster.html -------------------------------------------------------------------------------- /public/showcase/showcase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/public/showcase/showcase.json -------------------------------------------------------------------------------- /public/showcase/showcase_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/public/showcase/showcase_en.json -------------------------------------------------------------------------------- /public/workflows/basic_image_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/public/workflows/basic_image_gen.json -------------------------------------------------------------------------------- /public/workflows/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/public/workflows/default.png -------------------------------------------------------------------------------- /public/workflows/face_restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/public/workflows/face_restore.json -------------------------------------------------------------------------------- /public/workflows/upscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/public/workflows/upscale.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/setupGitHooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/scripts/setupGitHooks.js -------------------------------------------------------------------------------- /ui/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/.eslintrc.cjs -------------------------------------------------------------------------------- /ui/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/.npmrc -------------------------------------------------------------------------------- /ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/.prettierrc -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/postcss.config.js -------------------------------------------------------------------------------- /ui/scripts/post-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/scripts/post-build.js -------------------------------------------------------------------------------- /ui/src/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/Api.ts -------------------------------------------------------------------------------- /ui/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/App.tsx -------------------------------------------------------------------------------- /ui/src/apis/comfyApiCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/apis/comfyApiCustom.ts -------------------------------------------------------------------------------- /ui/src/apis/rewriteExpertApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/apis/rewriteExpertApi.ts -------------------------------------------------------------------------------- /ui/src/apis/workflowChatApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/apis/workflowChatApi.ts -------------------------------------------------------------------------------- /ui/src/components/chat/ApiKeyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/ApiKeyModal.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/ChatHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/ChatHeader.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/ChatInput.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/Icons.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/ImageUploadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/ImageUploadModal.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/MessageList.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/ModelDownloadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/ModelDownloadModal.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/Portal.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/RewriteExpertModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/RewriteExpertModal.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/SelectedNodeInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/SelectedNodeInfo.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/SessionHistoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/SessionHistoryModal.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/AIMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/AIMessage.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/BaseMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/BaseMessage.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/DebugGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/DebugGuide.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/DebugResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/DebugResult.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/DownstreamSubgraphs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/DownstreamSubgraphs.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/LoadingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/LoadingMessage.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/MessageList.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/chat/messages/ModelOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/ModelOption.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/NodeInstallGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/NodeInstallGuide.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/NodeSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/NodeSearch.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/Showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/Showcase.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/UserMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/UserMessage.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/messages/WorkflowOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/chat/messages/WorkflowOption.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/ParameterDebugInterfaceNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/ParameterDebugInterfaceNew.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/ParameterDebugInterfaceV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/ParameterDebugInterfaceV2.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/README.md -------------------------------------------------------------------------------- /ui/src/components/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/index.ts -------------------------------------------------------------------------------- /ui/src/components/debug/modals/AIWritingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/modals/AIWritingModal.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/modals/ImageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/modals/ImageModal.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/screens/ConfigureParameterScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/screens/ConfigureParameterScreen.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/screens/ConfirmConfigurationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/screens/ConfirmConfigurationScreen.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/screens/HistoryItemScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/screens/HistoryItemScreen.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/screens/HistoryScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/screens/HistoryScreen.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/screens/InitialScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/screens/InitialScreen.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/screens/ProcessingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/screens/ProcessingScreen.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/screens/ResultGalleryScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/screens/ResultGalleryScreen.tsx -------------------------------------------------------------------------------- /ui/src/components/debug/styles/highlightPulseStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/styles/highlightPulseStyle.ts -------------------------------------------------------------------------------- /ui/src/components/debug/types/parameterDebugTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/types/parameterDebugTypes.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/aiTextUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/aiTextUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/historyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/historyUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/imageGenerationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/imageGenerationUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/interfaceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/interfaceUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/localStorageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/localStorageUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/modalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/modalUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/navigationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/navigationUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/parameterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/parameterUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/searchUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/searchUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/stateManagementUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/stateManagementUtils.ts -------------------------------------------------------------------------------- /ui/src/components/debug/utils/textInputUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/debug/utils/textInputUtils.ts -------------------------------------------------------------------------------- /ui/src/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/markdown.tsx -------------------------------------------------------------------------------- /ui/src/components/markdown/markdownComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/markdown/markdownComponents.ts -------------------------------------------------------------------------------- /ui/src/components/ui/BeautifyCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/BeautifyCard.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/ButtonClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/ButtonClose.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/ButtonWithModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/ButtonWithModal.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/CollapsibleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/CollapsibleCard.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/DebugCollapsibleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/DebugCollapsibleCard.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/Image-Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/Image-Loading.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/Input.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/Loading-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/Loading-icon.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/LoadingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/LoadingIcon.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/Markdown.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/Modal.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/RestoreCheckpoint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/RestoreCheckpoint.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/StartLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/StartLink.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/StartPopView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/StartPopView.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/TabButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/TabButton.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/TableEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/TableEmpty.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/ui/Tag.tsx -------------------------------------------------------------------------------- /ui/src/components/virtualGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/components/virtualGrid/index.tsx -------------------------------------------------------------------------------- /ui/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/config.ts -------------------------------------------------------------------------------- /ui/src/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/const.ts -------------------------------------------------------------------------------- /ui/src/constants/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/constants/events.ts -------------------------------------------------------------------------------- /ui/src/context/ChatContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/context/ChatContext.tsx -------------------------------------------------------------------------------- /ui/src/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/fonts.css -------------------------------------------------------------------------------- /ui/src/fonts/cc-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/fonts/cc-icon.eot -------------------------------------------------------------------------------- /ui/src/fonts/cc-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/fonts/cc-icon.svg -------------------------------------------------------------------------------- /ui/src/fonts/cc-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/fonts/cc-icon.ttf -------------------------------------------------------------------------------- /ui/src/fonts/cc-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/fonts/cc-icon.woff -------------------------------------------------------------------------------- /ui/src/hooks/useCountDown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useCountDown.ts -------------------------------------------------------------------------------- /ui/src/hooks/useDarkTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useDarkTheme.ts -------------------------------------------------------------------------------- /ui/src/hooks/useDraggable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useDraggable.ts -------------------------------------------------------------------------------- /ui/src/hooks/useLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useLanguage.ts -------------------------------------------------------------------------------- /ui/src/hooks/useMousePosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useMousePosition.ts -------------------------------------------------------------------------------- /ui/src/hooks/useNodeSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useNodeSelection.ts -------------------------------------------------------------------------------- /ui/src/hooks/useNodeSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useNodeSelection.tsx -------------------------------------------------------------------------------- /ui/src/hooks/useResizable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/hooks/useResizable.ts -------------------------------------------------------------------------------- /ui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/index.css -------------------------------------------------------------------------------- /ui/src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/input.css -------------------------------------------------------------------------------- /ui/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/main.tsx -------------------------------------------------------------------------------- /ui/src/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/output.css -------------------------------------------------------------------------------- /ui/src/scoped-tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/scoped-tailwind.css -------------------------------------------------------------------------------- /ui/src/types/comfy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/types/comfy.d.ts -------------------------------------------------------------------------------- /ui/src/types/dbTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/types/dbTypes.ts -------------------------------------------------------------------------------- /ui/src/types/litegraph.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/types/litegraph.d.ts -------------------------------------------------------------------------------- /ui/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/types/types.ts -------------------------------------------------------------------------------- /ui/src/utils/OsPathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/OsPathUtils.ts -------------------------------------------------------------------------------- /ui/src/utils/civitUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/civitUtils.ts -------------------------------------------------------------------------------- /ui/src/utils/comfyapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/comfyapp.ts -------------------------------------------------------------------------------- /ui/src/utils/comfyuiWorkflowApi2Ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/comfyuiWorkflowApi2Ui.ts -------------------------------------------------------------------------------- /ui/src/utils/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/crypto.ts -------------------------------------------------------------------------------- /ui/src/utils/deepJsonDiffCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/deepJsonDiffCheck.ts -------------------------------------------------------------------------------- /ui/src/utils/downloadJsonFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/downloadJsonFile.ts -------------------------------------------------------------------------------- /ui/src/utils/downloadWorkflowsZip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/downloadWorkflowsZip.ts -------------------------------------------------------------------------------- /ui/src/utils/encryptUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/encryptUtils.ts -------------------------------------------------------------------------------- /ui/src/utils/findSfwImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/findSfwImage.ts -------------------------------------------------------------------------------- /ui/src/utils/graphUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/graphUtils.ts -------------------------------------------------------------------------------- /ui/src/utils/indexedDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/indexedDB.ts -------------------------------------------------------------------------------- /ui/src/utils/jsonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/jsonUtils.ts -------------------------------------------------------------------------------- /ui/src/utils/localStorageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/localStorageManager.ts -------------------------------------------------------------------------------- /ui/src/utils/mediaMetadataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/mediaMetadataUtils.ts -------------------------------------------------------------------------------- /ui/src/utils/privacyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/privacyUtils.ts -------------------------------------------------------------------------------- /ui/src/utils/queuePrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/queuePrompt.ts -------------------------------------------------------------------------------- /ui/src/utils/saveShareKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/saveShareKey.ts -------------------------------------------------------------------------------- /ui/src/utils/showAlert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/showAlert.css -------------------------------------------------------------------------------- /ui/src/utils/showAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/showAlert.ts -------------------------------------------------------------------------------- /ui/src/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/tools.ts -------------------------------------------------------------------------------- /ui/src/utils/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/utils/uuid.ts -------------------------------------------------------------------------------- /ui/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ui/src/workflowChat/workflowChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/src/workflowChat/workflowChat.tsx -------------------------------------------------------------------------------- /ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/tailwind.config.js -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /ui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/tsconfig.node.json -------------------------------------------------------------------------------- /ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/ComfyUI-Copilot/HEAD/ui/vite.config.ts --------------------------------------------------------------------------------