├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── custom_nodes ├── chatgpt │ ├── __init__.py │ ├── babyagi.py │ └── nodes.py ├── example_node.py.example └── tools │ ├── __init__.py │ ├── email.py │ └── nodes.py ├── doc └── 1.png ├── execution.py ├── execution_queue.py ├── execution_tools.py ├── folder_paths.py ├── internal └── utils.py ├── main.py ├── nodes.py ├── requirements.txt ├── server.py └── web ├── extensions ├── core │ ├── colorPalette.ts │ ├── editAttention.ts │ ├── keybinds.ts │ ├── nodeTemplates.ts │ ├── noteNode.ts │ ├── rerouteNode.ts │ ├── showText.ts │ ├── slotDefaults.ts │ ├── snapToGrid.ts │ └── widgetInputs.ts └── logging.js.example ├── index.html ├── lib ├── litegraph.core.js ├── litegraph.css └── litegraph.extensions.js ├── scripts ├── api.ts ├── app.ts ├── canvas-manager │ ├── index.ts │ ├── tools.ts │ └── ui.ts ├── event.ts ├── extension-manager │ └── index.ts ├── logger │ ├── index.ts │ └── tools.ts ├── node-manager │ ├── index.ts │ └── widgets.ts ├── state-handler │ └── index.ts └── workflow-manager │ ├── defaultGraph.js │ └── index.ts ├── style.css ├── tsconfig.json ├── types ├── comfy.d.ts └── litegraph.d.ts └── user.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/README.md -------------------------------------------------------------------------------- /custom_nodes/chatgpt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/custom_nodes/chatgpt/__init__.py -------------------------------------------------------------------------------- /custom_nodes/chatgpt/babyagi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/custom_nodes/chatgpt/babyagi.py -------------------------------------------------------------------------------- /custom_nodes/chatgpt/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/custom_nodes/chatgpt/nodes.py -------------------------------------------------------------------------------- /custom_nodes/example_node.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/custom_nodes/example_node.py.example -------------------------------------------------------------------------------- /custom_nodes/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/custom_nodes/tools/__init__.py -------------------------------------------------------------------------------- /custom_nodes/tools/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/custom_nodes/tools/email.py -------------------------------------------------------------------------------- /custom_nodes/tools/nodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/doc/1.png -------------------------------------------------------------------------------- /execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/execution.py -------------------------------------------------------------------------------- /execution_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/execution_queue.py -------------------------------------------------------------------------------- /execution_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/execution_tools.py -------------------------------------------------------------------------------- /folder_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/folder_paths.py -------------------------------------------------------------------------------- /internal/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/internal/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/main.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/server.py -------------------------------------------------------------------------------- /web/extensions/core/colorPalette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/colorPalette.ts -------------------------------------------------------------------------------- /web/extensions/core/editAttention.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/editAttention.ts -------------------------------------------------------------------------------- /web/extensions/core/keybinds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/keybinds.ts -------------------------------------------------------------------------------- /web/extensions/core/nodeTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/nodeTemplates.ts -------------------------------------------------------------------------------- /web/extensions/core/noteNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/noteNode.ts -------------------------------------------------------------------------------- /web/extensions/core/rerouteNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/rerouteNode.ts -------------------------------------------------------------------------------- /web/extensions/core/showText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/showText.ts -------------------------------------------------------------------------------- /web/extensions/core/slotDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/slotDefaults.ts -------------------------------------------------------------------------------- /web/extensions/core/snapToGrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/snapToGrid.ts -------------------------------------------------------------------------------- /web/extensions/core/widgetInputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/core/widgetInputs.ts -------------------------------------------------------------------------------- /web/extensions/logging.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/extensions/logging.js.example -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/index.html -------------------------------------------------------------------------------- /web/lib/litegraph.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/lib/litegraph.core.js -------------------------------------------------------------------------------- /web/lib/litegraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/lib/litegraph.css -------------------------------------------------------------------------------- /web/lib/litegraph.extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/lib/litegraph.extensions.js -------------------------------------------------------------------------------- /web/scripts/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/api.ts -------------------------------------------------------------------------------- /web/scripts/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/app.ts -------------------------------------------------------------------------------- /web/scripts/canvas-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/canvas-manager/index.ts -------------------------------------------------------------------------------- /web/scripts/canvas-manager/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/canvas-manager/tools.ts -------------------------------------------------------------------------------- /web/scripts/canvas-manager/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/canvas-manager/ui.ts -------------------------------------------------------------------------------- /web/scripts/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/event.ts -------------------------------------------------------------------------------- /web/scripts/extension-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/extension-manager/index.ts -------------------------------------------------------------------------------- /web/scripts/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/logger/index.ts -------------------------------------------------------------------------------- /web/scripts/logger/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/logger/tools.ts -------------------------------------------------------------------------------- /web/scripts/node-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/node-manager/index.ts -------------------------------------------------------------------------------- /web/scripts/node-manager/widgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/node-manager/widgets.ts -------------------------------------------------------------------------------- /web/scripts/state-handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/state-handler/index.ts -------------------------------------------------------------------------------- /web/scripts/workflow-manager/defaultGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/workflow-manager/defaultGraph.js -------------------------------------------------------------------------------- /web/scripts/workflow-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/scripts/workflow-manager/index.ts -------------------------------------------------------------------------------- /web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/style.css -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/types/comfy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/types/comfy.d.ts -------------------------------------------------------------------------------- /web/types/litegraph.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alsritter/py-graph/HEAD/web/types/litegraph.d.ts -------------------------------------------------------------------------------- /web/user.css: -------------------------------------------------------------------------------- 1 | /* Put custom styles here */ --------------------------------------------------------------------------------