├── .dockerignore ├── .env.example ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.md ├── README_CN.md ├── docker-compose.yml ├── docs ├── mcp_structure.png ├── CLI.md ├── CLI_CN.md ├── FAQ.md ├── FAQ_CN.md ├── Pixelle去背景.png ├── added_mcp.png ├── added_mcp_en.png ├── discord.png ├── easy-workflow.png ├── i_blur.json ├── i_blur_ui.json ├── readme-1.png ├── ready_to_send.png ├── ready_to_send_en.png ├── t2i_by_flux_turbo.json ├── t2i_by_flux_turbo.png ├── t2i_by_flux_turbo_ui.json ├── use_mcp_tool.png ├── use_mcp_tool_en.png ├── wechat.png └── workflow_to_mcp_tool.png ├── pixelle ├── .chainlit │ ├── config.toml │ └── translations │ │ ├── bn.json │ │ ├── el-GR.json │ │ ├── en-US.json │ │ ├── fr-FR.json │ │ ├── gu.json │ │ ├── he-IL.json │ │ ├── hi.json │ │ ├── ja.json │ │ ├── kn.json │ │ ├── ml.json │ │ ├── mr.json │ │ ├── nl.json │ │ ├── ta.json │ │ ├── te.json │ │ └── zh-CN.json ├── .dockerignore ├── .gitignore ├── __init__.py ├── api │ ├── __init__.py │ └── files_api.py ├── cli.py ├── cli │ ├── __init__.py │ ├── __main__.py │ ├── commands │ │ ├── __init__.py │ │ ├── dev.py │ │ ├── edit.py │ │ ├── init.py │ │ ├── interactive.py │ │ ├── logs.py │ │ ├── reconfig.py │ │ ├── start.py │ │ ├── status.py │ │ ├── stop.py │ │ └── workflow.py │ ├── interactive │ │ ├── __init__.py │ │ ├── menu.py │ │ ├── welcome.py │ │ └── wizard.py │ ├── main.py │ ├── setup │ │ ├── __init__.py │ │ ├── comfyui.py │ │ ├── config_saver.py │ │ ├── execution_engines.py │ │ ├── providers │ │ │ ├── __init__.py │ │ │ ├── claude.py │ │ │ ├── deepseek.py │ │ │ ├── gemini.py │ │ │ ├── manager.py │ │ │ ├── ollama.py │ │ │ ├── openai.py │ │ │ └── qwen.py │ │ ├── runninghub.py │ │ └── service.py │ └── utils │ │ ├── __init__.py │ │ ├── command_utils.py │ │ ├── display.py │ │ └── server_utils.py ├── comfyui │ ├── __init__.py │ ├── base_executor.py │ ├── facade.py │ ├── http_executor.py │ ├── models.py │ ├── runninghub_client.py │ ├── runninghub_executor.py │ ├── websocket_executor.py │ └── workflow_parser.py ├── logger.py ├── main.py ├── manager │ ├── __init__.py │ └── workflow_manager.py ├── mcp_core.py ├── middleware │ ├── __init__.py │ ├── app_js_middleware.py │ ├── html_cdn_replace_middleware.py │ └── static_cache_middleware.py ├── public │ ├── app.css │ ├── app.js │ ├── catalog.svg │ ├── elements │ │ ├── AlertDialog.jsx │ │ └── PromptDialog.jsx │ ├── favicon.png │ ├── github.svg │ ├── login_background.png │ ├── logo_dark.png │ ├── logo_light.png │ ├── theme.json │ └── tool.svg ├── settings.py ├── starters │ ├── 001_Function Introduction.json │ └── __init__.py ├── tools │ ├── __init__.py │ ├── i_crop.py │ └── workflow_manager_tool.py ├── upload │ ├── __init__.py │ ├── base.py │ ├── file_service.py │ └── local_storage.py ├── utils │ ├── __init__.py │ ├── config_util.py │ ├── dynamic_util.py │ ├── file_uploader.py │ ├── file_util.py │ ├── image_util.py │ ├── network_util.py │ ├── openapi_util.py │ ├── os_util.py │ ├── process_util.py │ ├── runninghub_util.py │ ├── user_settings_util.py │ └── workflow_source_util.py └── web │ ├── __init__.py │ ├── app.py │ ├── auth.py │ ├── chat │ ├── __init__.py │ ├── chat_handler.py │ ├── chat_settings.py │ └── starters.py │ ├── converters │ ├── __init__.py │ ├── message_converter.py │ └── tool_converter.py │ ├── core │ ├── __init__.py │ └── prompt.py │ ├── starters │ ├── 001_Function Introduction.json │ └── __init__.py │ └── utils │ ├── __init__.py │ ├── llm_util.py │ ├── random_util.py │ └── time_util.py ├── pyproject.toml ├── uv.lock └── workflows ├── i2i_by_flux_kontext_pro.json ├── i2i_by_gpt4.json ├── i2t_by_gpt.json ├── i2t_by_local_florence.json ├── i2v_by_kling_start_frame.json ├── i2v_by_local_wan_fusionx.json ├── i2v_by_wan2_2.json ├── i_merge.json ├── i_nano_banana.json ├── s_generate_audio_by_prompt.json ├── t2i_by_local_flux.json ├── t2i_flux_krea.json ├── t2i_qwen_image.json ├── t2s_by_index_tts.json ├── t2v_by_local_wan_fusionx.json └── t2v_by_wan2_2.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/README_CN.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/ mcp_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/ mcp_structure.png -------------------------------------------------------------------------------- /docs/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/CLI.md -------------------------------------------------------------------------------- /docs/CLI_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/CLI_CN.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/FAQ_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/FAQ_CN.md -------------------------------------------------------------------------------- /docs/Pixelle去背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/Pixelle去背景.png -------------------------------------------------------------------------------- /docs/added_mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/added_mcp.png -------------------------------------------------------------------------------- /docs/added_mcp_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/added_mcp_en.png -------------------------------------------------------------------------------- /docs/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/discord.png -------------------------------------------------------------------------------- /docs/easy-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/easy-workflow.png -------------------------------------------------------------------------------- /docs/i_blur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/i_blur.json -------------------------------------------------------------------------------- /docs/i_blur_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/i_blur_ui.json -------------------------------------------------------------------------------- /docs/readme-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/readme-1.png -------------------------------------------------------------------------------- /docs/ready_to_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/ready_to_send.png -------------------------------------------------------------------------------- /docs/ready_to_send_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/ready_to_send_en.png -------------------------------------------------------------------------------- /docs/t2i_by_flux_turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/t2i_by_flux_turbo.json -------------------------------------------------------------------------------- /docs/t2i_by_flux_turbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/t2i_by_flux_turbo.png -------------------------------------------------------------------------------- /docs/t2i_by_flux_turbo_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/t2i_by_flux_turbo_ui.json -------------------------------------------------------------------------------- /docs/use_mcp_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/use_mcp_tool.png -------------------------------------------------------------------------------- /docs/use_mcp_tool_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/use_mcp_tool_en.png -------------------------------------------------------------------------------- /docs/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/wechat.png -------------------------------------------------------------------------------- /docs/workflow_to_mcp_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/docs/workflow_to_mcp_tool.png -------------------------------------------------------------------------------- /pixelle/.chainlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/config.toml -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/bn.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/el-GR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/el-GR.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/en-US.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/fr-FR.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/gu.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/he-IL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/he-IL.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/hi.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/ja.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/kn.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/ml.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/mr.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/nl.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/ta.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/te.json -------------------------------------------------------------------------------- /pixelle/.chainlit/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.chainlit/translations/zh-CN.json -------------------------------------------------------------------------------- /pixelle/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.dockerignore -------------------------------------------------------------------------------- /pixelle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/.gitignore -------------------------------------------------------------------------------- /pixelle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/__init__.py -------------------------------------------------------------------------------- /pixelle/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/api/__init__.py -------------------------------------------------------------------------------- /pixelle/api/files_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/api/files_api.py -------------------------------------------------------------------------------- /pixelle/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli.py -------------------------------------------------------------------------------- /pixelle/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/__init__.py -------------------------------------------------------------------------------- /pixelle/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/__main__.py -------------------------------------------------------------------------------- /pixelle/cli/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/__init__.py -------------------------------------------------------------------------------- /pixelle/cli/commands/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/dev.py -------------------------------------------------------------------------------- /pixelle/cli/commands/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/edit.py -------------------------------------------------------------------------------- /pixelle/cli/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/init.py -------------------------------------------------------------------------------- /pixelle/cli/commands/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/interactive.py -------------------------------------------------------------------------------- /pixelle/cli/commands/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/logs.py -------------------------------------------------------------------------------- /pixelle/cli/commands/reconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/reconfig.py -------------------------------------------------------------------------------- /pixelle/cli/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/start.py -------------------------------------------------------------------------------- /pixelle/cli/commands/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/status.py -------------------------------------------------------------------------------- /pixelle/cli/commands/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/stop.py -------------------------------------------------------------------------------- /pixelle/cli/commands/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/commands/workflow.py -------------------------------------------------------------------------------- /pixelle/cli/interactive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/interactive/__init__.py -------------------------------------------------------------------------------- /pixelle/cli/interactive/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/interactive/menu.py -------------------------------------------------------------------------------- /pixelle/cli/interactive/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/interactive/welcome.py -------------------------------------------------------------------------------- /pixelle/cli/interactive/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/interactive/wizard.py -------------------------------------------------------------------------------- /pixelle/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/main.py -------------------------------------------------------------------------------- /pixelle/cli/setup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/__init__.py -------------------------------------------------------------------------------- /pixelle/cli/setup/comfyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/comfyui.py -------------------------------------------------------------------------------- /pixelle/cli/setup/config_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/config_saver.py -------------------------------------------------------------------------------- /pixelle/cli/setup/execution_engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/execution_engines.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/__init__.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/claude.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/deepseek.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/gemini.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/manager.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/ollama.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/openai.py -------------------------------------------------------------------------------- /pixelle/cli/setup/providers/qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/providers/qwen.py -------------------------------------------------------------------------------- /pixelle/cli/setup/runninghub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/runninghub.py -------------------------------------------------------------------------------- /pixelle/cli/setup/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/setup/service.py -------------------------------------------------------------------------------- /pixelle/cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/utils/__init__.py -------------------------------------------------------------------------------- /pixelle/cli/utils/command_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/utils/command_utils.py -------------------------------------------------------------------------------- /pixelle/cli/utils/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/utils/display.py -------------------------------------------------------------------------------- /pixelle/cli/utils/server_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/cli/utils/server_utils.py -------------------------------------------------------------------------------- /pixelle/comfyui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/__init__.py -------------------------------------------------------------------------------- /pixelle/comfyui/base_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/base_executor.py -------------------------------------------------------------------------------- /pixelle/comfyui/facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/facade.py -------------------------------------------------------------------------------- /pixelle/comfyui/http_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/http_executor.py -------------------------------------------------------------------------------- /pixelle/comfyui/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/models.py -------------------------------------------------------------------------------- /pixelle/comfyui/runninghub_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/runninghub_client.py -------------------------------------------------------------------------------- /pixelle/comfyui/runninghub_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/runninghub_executor.py -------------------------------------------------------------------------------- /pixelle/comfyui/websocket_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/websocket_executor.py -------------------------------------------------------------------------------- /pixelle/comfyui/workflow_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/comfyui/workflow_parser.py -------------------------------------------------------------------------------- /pixelle/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/logger.py -------------------------------------------------------------------------------- /pixelle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/main.py -------------------------------------------------------------------------------- /pixelle/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/manager/__init__.py -------------------------------------------------------------------------------- /pixelle/manager/workflow_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/manager/workflow_manager.py -------------------------------------------------------------------------------- /pixelle/mcp_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/mcp_core.py -------------------------------------------------------------------------------- /pixelle/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/middleware/__init__.py -------------------------------------------------------------------------------- /pixelle/middleware/app_js_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/middleware/app_js_middleware.py -------------------------------------------------------------------------------- /pixelle/middleware/html_cdn_replace_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/middleware/html_cdn_replace_middleware.py -------------------------------------------------------------------------------- /pixelle/middleware/static_cache_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/middleware/static_cache_middleware.py -------------------------------------------------------------------------------- /pixelle/public/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/app.css -------------------------------------------------------------------------------- /pixelle/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/app.js -------------------------------------------------------------------------------- /pixelle/public/catalog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/catalog.svg -------------------------------------------------------------------------------- /pixelle/public/elements/AlertDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/elements/AlertDialog.jsx -------------------------------------------------------------------------------- /pixelle/public/elements/PromptDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/elements/PromptDialog.jsx -------------------------------------------------------------------------------- /pixelle/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/favicon.png -------------------------------------------------------------------------------- /pixelle/public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/github.svg -------------------------------------------------------------------------------- /pixelle/public/login_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/login_background.png -------------------------------------------------------------------------------- /pixelle/public/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/logo_dark.png -------------------------------------------------------------------------------- /pixelle/public/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/logo_light.png -------------------------------------------------------------------------------- /pixelle/public/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/theme.json -------------------------------------------------------------------------------- /pixelle/public/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/public/tool.svg -------------------------------------------------------------------------------- /pixelle/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/settings.py -------------------------------------------------------------------------------- /pixelle/starters/001_Function Introduction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/starters/001_Function Introduction.json -------------------------------------------------------------------------------- /pixelle/starters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/starters/__init__.py -------------------------------------------------------------------------------- /pixelle/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/tools/__init__.py -------------------------------------------------------------------------------- /pixelle/tools/i_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/tools/i_crop.py -------------------------------------------------------------------------------- /pixelle/tools/workflow_manager_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/tools/workflow_manager_tool.py -------------------------------------------------------------------------------- /pixelle/upload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/upload/__init__.py -------------------------------------------------------------------------------- /pixelle/upload/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/upload/base.py -------------------------------------------------------------------------------- /pixelle/upload/file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/upload/file_service.py -------------------------------------------------------------------------------- /pixelle/upload/local_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/upload/local_storage.py -------------------------------------------------------------------------------- /pixelle/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/__init__.py -------------------------------------------------------------------------------- /pixelle/utils/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/config_util.py -------------------------------------------------------------------------------- /pixelle/utils/dynamic_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/dynamic_util.py -------------------------------------------------------------------------------- /pixelle/utils/file_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/file_uploader.py -------------------------------------------------------------------------------- /pixelle/utils/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/file_util.py -------------------------------------------------------------------------------- /pixelle/utils/image_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/image_util.py -------------------------------------------------------------------------------- /pixelle/utils/network_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/network_util.py -------------------------------------------------------------------------------- /pixelle/utils/openapi_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/openapi_util.py -------------------------------------------------------------------------------- /pixelle/utils/os_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/os_util.py -------------------------------------------------------------------------------- /pixelle/utils/process_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/process_util.py -------------------------------------------------------------------------------- /pixelle/utils/runninghub_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/runninghub_util.py -------------------------------------------------------------------------------- /pixelle/utils/user_settings_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/user_settings_util.py -------------------------------------------------------------------------------- /pixelle/utils/workflow_source_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/utils/workflow_source_util.py -------------------------------------------------------------------------------- /pixelle/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/__init__.py -------------------------------------------------------------------------------- /pixelle/web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/app.py -------------------------------------------------------------------------------- /pixelle/web/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/auth.py -------------------------------------------------------------------------------- /pixelle/web/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixelle/web/chat/chat_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/chat/chat_handler.py -------------------------------------------------------------------------------- /pixelle/web/chat/chat_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/chat/chat_settings.py -------------------------------------------------------------------------------- /pixelle/web/chat/starters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/chat/starters.py -------------------------------------------------------------------------------- /pixelle/web/converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixelle/web/converters/message_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/converters/message_converter.py -------------------------------------------------------------------------------- /pixelle/web/converters/tool_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/converters/tool_converter.py -------------------------------------------------------------------------------- /pixelle/web/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixelle/web/core/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/core/prompt.py -------------------------------------------------------------------------------- /pixelle/web/starters/001_Function Introduction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/starters/001_Function Introduction.json -------------------------------------------------------------------------------- /pixelle/web/starters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/starters/__init__.py -------------------------------------------------------------------------------- /pixelle/web/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixelle/web/utils/llm_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/utils/llm_util.py -------------------------------------------------------------------------------- /pixelle/web/utils/random_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/utils/random_util.py -------------------------------------------------------------------------------- /pixelle/web/utils/time_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pixelle/web/utils/time_util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/uv.lock -------------------------------------------------------------------------------- /workflows/i2i_by_flux_kontext_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i2i_by_flux_kontext_pro.json -------------------------------------------------------------------------------- /workflows/i2i_by_gpt4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i2i_by_gpt4.json -------------------------------------------------------------------------------- /workflows/i2t_by_gpt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i2t_by_gpt.json -------------------------------------------------------------------------------- /workflows/i2t_by_local_florence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i2t_by_local_florence.json -------------------------------------------------------------------------------- /workflows/i2v_by_kling_start_frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i2v_by_kling_start_frame.json -------------------------------------------------------------------------------- /workflows/i2v_by_local_wan_fusionx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i2v_by_local_wan_fusionx.json -------------------------------------------------------------------------------- /workflows/i2v_by_wan2_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i2v_by_wan2_2.json -------------------------------------------------------------------------------- /workflows/i_merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i_merge.json -------------------------------------------------------------------------------- /workflows/i_nano_banana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/i_nano_banana.json -------------------------------------------------------------------------------- /workflows/s_generate_audio_by_prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/s_generate_audio_by_prompt.json -------------------------------------------------------------------------------- /workflows/t2i_by_local_flux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/t2i_by_local_flux.json -------------------------------------------------------------------------------- /workflows/t2i_flux_krea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/t2i_flux_krea.json -------------------------------------------------------------------------------- /workflows/t2i_qwen_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/t2i_qwen_image.json -------------------------------------------------------------------------------- /workflows/t2s_by_index_tts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/t2s_by_index_tts.json -------------------------------------------------------------------------------- /workflows/t2v_by_local_wan_fusionx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/t2v_by_local_wan_fusionx.json -------------------------------------------------------------------------------- /workflows/t2v_by_wan2_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIDC-AI/Pixelle-MCP/HEAD/workflows/t2v_by_wan2_2.json --------------------------------------------------------------------------------