├── .gitignore ├── LICENSE ├── README.md ├── assets └── imgs │ └── image.png ├── examples ├── financial_risk_workflow │ ├── README.md │ ├── README_ZH.md │ ├── langgraph_maze.py │ ├── langgraph_naive.py │ └── requirements.txt └── multimodel_create_workflow │ ├── README.md │ ├── README_ZH.md │ ├── main.py │ └── requirements.txt ├── maze ├── __init__.py ├── cli │ ├── __init__.py │ └── cli.py ├── client │ ├── __init__.py │ ├── front │ │ ├── __init__.py │ │ ├── builtin │ │ │ ├── __init__.py │ │ │ ├── fileTask.py │ │ │ ├── healthTask.py │ │ │ └── simpleTask.py │ │ ├── client.py │ │ ├── decorator.py │ │ ├── file_utils.py │ │ ├── server_workflow.py │ │ ├── task.py │ │ └── workflow.py │ ├── langgraph │ │ ├── __init__.py │ │ └── client.py │ └── maze │ │ ├── __init__.py │ │ ├── builtin │ │ └── simpleTask.py │ │ ├── client.py │ │ ├── decorator.py │ │ ├── models.py │ │ └── workflow.py ├── config │ └── logging_config.py ├── core │ ├── __init__.py │ ├── path │ │ ├── __init__.py │ │ └── path.py │ ├── scheduler │ │ ├── __init__.py │ │ ├── resource.py │ │ ├── runner.py │ │ ├── runtime.py │ │ └── scheduler.py │ ├── server.py │ ├── worker │ │ ├── __init__.py │ │ └── worker.py │ └── workflow │ │ ├── __init__.py │ │ ├── task.py │ │ └── workflow.py ├── tool │ ├── __init__.py │ ├── csv_reader.py │ ├── doc_reader.py │ ├── figure_reader.py │ ├── mp3_reader.py │ ├── pdf_reader.py │ ├── search.py │ ├── text_reader.py │ ├── video_reader.py │ ├── weather.py │ └── xlsx_reader.py └── utils │ ├── __init__.py │ └── utils.py ├── pyproject.toml ├── test ├── README.md ├── conftest.py ├── test.py ├── test_cluster_resources.py ├── test_decorator_resources.py ├── test_http_api.py ├── test_langgraph.py ├── test_maclient_builtin.py ├── test_maclient_userdef.py ├── test_multiple_runs.py ├── test_results_cache.py ├── test_task_exception.py └── test_visualization.py └── web ├── maze_board ├── .gitignore ├── INTEGRATION_GUIDE.md ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.jsx │ ├── components │ │ ├── charts │ │ │ └── index.js │ │ ├── common │ │ │ ├── DataStatusWrapper.jsx │ │ │ ├── ErrorMessage.jsx │ │ │ ├── LoadingSpinner.jsx │ │ │ └── index.js │ │ └── workflow │ │ │ └── index.js │ ├── contexts │ │ └── DataContext.jsx │ ├── hooks │ │ ├── index.js │ │ ├── useRealtimeData.js │ │ ├── useWorkers.js │ │ └── useWorkflows.js │ ├── index.css │ ├── layouts │ │ ├── MainLayout.jsx │ │ └── Navbar.jsx │ ├── main.jsx │ ├── pages │ │ ├── Dashboard │ │ │ ├── Dashboard.jsx │ │ │ └── SummaryCards.jsx │ │ ├── Workers │ │ │ ├── WorkerCard.jsx │ │ │ └── Workers.jsx │ │ ├── Workflows │ │ │ ├── WorkflowDetail.jsx │ │ │ ├── WorkflowRunDetail.jsx │ │ │ ├── Workflows.jsx │ │ │ └── components │ │ │ │ ├── ApiDocumentation.jsx │ │ │ │ ├── RunList.jsx │ │ │ │ ├── TaskExecutionPanel.jsx │ │ │ │ ├── WorkflowEdge.jsx │ │ │ │ ├── WorkflowGraph.jsx │ │ │ │ └── WorkflowNode.jsx │ │ └── index.js │ ├── services │ │ └── api.js │ └── utils │ │ ├── constants.js │ │ ├── mockData.js │ │ └── workflowHelpers.js ├── tailwind.config.js └── vite.config.js └── maze_playground ├── .gitignore ├── INTEGRATION.md ├── README.md ├── backend ├── README.md ├── maze_bridge.py ├── package-lock.json ├── package.json └── src │ └── server.js └── frontend ├── index.html ├── package-lock.json ├── package.json ├── src ├── App.tsx ├── api │ └── client.ts ├── components │ ├── BuiltinTasksSidebar.tsx │ ├── CustomNode.tsx │ ├── CustomTaskEditor.tsx │ ├── NodePanel.tsx │ ├── ResultDisplay.tsx │ ├── ResultsModal.tsx │ ├── Toolbar.tsx │ └── WorkflowCanvas.tsx ├── index.css ├── main.tsx ├── stores │ └── workflowStore.ts └── types │ └── workflow.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/README.md -------------------------------------------------------------------------------- /assets/imgs/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/assets/imgs/image.png -------------------------------------------------------------------------------- /examples/financial_risk_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/financial_risk_workflow/README.md -------------------------------------------------------------------------------- /examples/financial_risk_workflow/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/financial_risk_workflow/README_ZH.md -------------------------------------------------------------------------------- /examples/financial_risk_workflow/langgraph_maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/financial_risk_workflow/langgraph_maze.py -------------------------------------------------------------------------------- /examples/financial_risk_workflow/langgraph_naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/financial_risk_workflow/langgraph_naive.py -------------------------------------------------------------------------------- /examples/financial_risk_workflow/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/financial_risk_workflow/requirements.txt -------------------------------------------------------------------------------- /examples/multimodel_create_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/multimodel_create_workflow/README.md -------------------------------------------------------------------------------- /examples/multimodel_create_workflow/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/multimodel_create_workflow/README_ZH.md -------------------------------------------------------------------------------- /examples/multimodel_create_workflow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/multimodel_create_workflow/main.py -------------------------------------------------------------------------------- /examples/multimodel_create_workflow/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/examples/multimodel_create_workflow/requirements.txt -------------------------------------------------------------------------------- /maze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/__init__.py -------------------------------------------------------------------------------- /maze/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/cli/cli.py -------------------------------------------------------------------------------- /maze/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/__init__.py -------------------------------------------------------------------------------- /maze/client/front/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/__init__.py -------------------------------------------------------------------------------- /maze/client/front/builtin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/builtin/__init__.py -------------------------------------------------------------------------------- /maze/client/front/builtin/fileTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/builtin/fileTask.py -------------------------------------------------------------------------------- /maze/client/front/builtin/healthTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/builtin/healthTask.py -------------------------------------------------------------------------------- /maze/client/front/builtin/simpleTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/builtin/simpleTask.py -------------------------------------------------------------------------------- /maze/client/front/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/client.py -------------------------------------------------------------------------------- /maze/client/front/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/decorator.py -------------------------------------------------------------------------------- /maze/client/front/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/file_utils.py -------------------------------------------------------------------------------- /maze/client/front/server_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/server_workflow.py -------------------------------------------------------------------------------- /maze/client/front/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/task.py -------------------------------------------------------------------------------- /maze/client/front/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/front/workflow.py -------------------------------------------------------------------------------- /maze/client/langgraph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/client/langgraph/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/langgraph/client.py -------------------------------------------------------------------------------- /maze/client/maze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/maze/__init__.py -------------------------------------------------------------------------------- /maze/client/maze/builtin/simpleTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/maze/builtin/simpleTask.py -------------------------------------------------------------------------------- /maze/client/maze/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/maze/client.py -------------------------------------------------------------------------------- /maze/client/maze/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/maze/decorator.py -------------------------------------------------------------------------------- /maze/client/maze/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/maze/models.py -------------------------------------------------------------------------------- /maze/client/maze/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/client/maze/workflow.py -------------------------------------------------------------------------------- /maze/config/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/config/logging_config.py -------------------------------------------------------------------------------- /maze/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/core/path/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/core/path/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/path/path.py -------------------------------------------------------------------------------- /maze/core/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/core/scheduler/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/scheduler/resource.py -------------------------------------------------------------------------------- /maze/core/scheduler/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/scheduler/runner.py -------------------------------------------------------------------------------- /maze/core/scheduler/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/scheduler/runtime.py -------------------------------------------------------------------------------- /maze/core/scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/scheduler/scheduler.py -------------------------------------------------------------------------------- /maze/core/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/server.py -------------------------------------------------------------------------------- /maze/core/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/core/worker/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/worker/worker.py -------------------------------------------------------------------------------- /maze/core/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/core/workflow/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/workflow/task.py -------------------------------------------------------------------------------- /maze/core/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/core/workflow/workflow.py -------------------------------------------------------------------------------- /maze/tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/__init__.py -------------------------------------------------------------------------------- /maze/tool/csv_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/csv_reader.py -------------------------------------------------------------------------------- /maze/tool/doc_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/doc_reader.py -------------------------------------------------------------------------------- /maze/tool/figure_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/figure_reader.py -------------------------------------------------------------------------------- /maze/tool/mp3_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/mp3_reader.py -------------------------------------------------------------------------------- /maze/tool/pdf_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/pdf_reader.py -------------------------------------------------------------------------------- /maze/tool/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/search.py -------------------------------------------------------------------------------- /maze/tool/text_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/text_reader.py -------------------------------------------------------------------------------- /maze/tool/video_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/video_reader.py -------------------------------------------------------------------------------- /maze/tool/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/weather.py -------------------------------------------------------------------------------- /maze/tool/xlsx_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/tool/xlsx_reader.py -------------------------------------------------------------------------------- /maze/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maze/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/maze/utils/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/README.md -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_cluster_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_cluster_resources.py -------------------------------------------------------------------------------- /test/test_decorator_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_decorator_resources.py -------------------------------------------------------------------------------- /test/test_http_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_http_api.py -------------------------------------------------------------------------------- /test/test_langgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_langgraph.py -------------------------------------------------------------------------------- /test/test_maclient_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_maclient_builtin.py -------------------------------------------------------------------------------- /test/test_maclient_userdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_maclient_userdef.py -------------------------------------------------------------------------------- /test/test_multiple_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_multiple_runs.py -------------------------------------------------------------------------------- /test/test_results_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_results_cache.py -------------------------------------------------------------------------------- /test/test_task_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_task_exception.py -------------------------------------------------------------------------------- /test/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/test/test_visualization.py -------------------------------------------------------------------------------- /web/maze_board/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/.gitignore -------------------------------------------------------------------------------- /web/maze_board/INTEGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/INTEGRATION_GUIDE.md -------------------------------------------------------------------------------- /web/maze_board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/README.md -------------------------------------------------------------------------------- /web/maze_board/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/eslint.config.js -------------------------------------------------------------------------------- /web/maze_board/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/index.html -------------------------------------------------------------------------------- /web/maze_board/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/package-lock.json -------------------------------------------------------------------------------- /web/maze_board/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/package.json -------------------------------------------------------------------------------- /web/maze_board/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/postcss.config.js -------------------------------------------------------------------------------- /web/maze_board/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/public/vite.svg -------------------------------------------------------------------------------- /web/maze_board/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/App.jsx -------------------------------------------------------------------------------- /web/maze_board/src/components/charts/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/maze_board/src/components/common/DataStatusWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/components/common/DataStatusWrapper.jsx -------------------------------------------------------------------------------- /web/maze_board/src/components/common/ErrorMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/components/common/ErrorMessage.jsx -------------------------------------------------------------------------------- /web/maze_board/src/components/common/LoadingSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/components/common/LoadingSpinner.jsx -------------------------------------------------------------------------------- /web/maze_board/src/components/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/components/common/index.js -------------------------------------------------------------------------------- /web/maze_board/src/components/workflow/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/maze_board/src/contexts/DataContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/contexts/DataContext.jsx -------------------------------------------------------------------------------- /web/maze_board/src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/hooks/index.js -------------------------------------------------------------------------------- /web/maze_board/src/hooks/useRealtimeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/hooks/useRealtimeData.js -------------------------------------------------------------------------------- /web/maze_board/src/hooks/useWorkers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/hooks/useWorkers.js -------------------------------------------------------------------------------- /web/maze_board/src/hooks/useWorkflows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/hooks/useWorkflows.js -------------------------------------------------------------------------------- /web/maze_board/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/index.css -------------------------------------------------------------------------------- /web/maze_board/src/layouts/MainLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/layouts/MainLayout.jsx -------------------------------------------------------------------------------- /web/maze_board/src/layouts/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/layouts/Navbar.jsx -------------------------------------------------------------------------------- /web/maze_board/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/main.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Dashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Dashboard/Dashboard.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Dashboard/SummaryCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Dashboard/SummaryCards.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workers/WorkerCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workers/WorkerCard.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workers/Workers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workers/Workers.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/WorkflowDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/WorkflowDetail.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/WorkflowRunDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/WorkflowRunDetail.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/Workflows.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/Workflows.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/components/ApiDocumentation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/components/ApiDocumentation.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/components/RunList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/components/RunList.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/components/TaskExecutionPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/components/TaskExecutionPanel.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/components/WorkflowEdge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/components/WorkflowEdge.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/components/WorkflowGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/components/WorkflowGraph.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/Workflows/components/WorkflowNode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/pages/Workflows/components/WorkflowNode.jsx -------------------------------------------------------------------------------- /web/maze_board/src/pages/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/maze_board/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/services/api.js -------------------------------------------------------------------------------- /web/maze_board/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/utils/constants.js -------------------------------------------------------------------------------- /web/maze_board/src/utils/mockData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/src/utils/mockData.js -------------------------------------------------------------------------------- /web/maze_board/src/utils/workflowHelpers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/maze_board/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/tailwind.config.js -------------------------------------------------------------------------------- /web/maze_board/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_board/vite.config.js -------------------------------------------------------------------------------- /web/maze_playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/.gitignore -------------------------------------------------------------------------------- /web/maze_playground/INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/INTEGRATION.md -------------------------------------------------------------------------------- /web/maze_playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/README.md -------------------------------------------------------------------------------- /web/maze_playground/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/backend/README.md -------------------------------------------------------------------------------- /web/maze_playground/backend/maze_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/backend/maze_bridge.py -------------------------------------------------------------------------------- /web/maze_playground/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/backend/package-lock.json -------------------------------------------------------------------------------- /web/maze_playground/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/backend/package.json -------------------------------------------------------------------------------- /web/maze_playground/backend/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/backend/src/server.js -------------------------------------------------------------------------------- /web/maze_playground/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/index.html -------------------------------------------------------------------------------- /web/maze_playground/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/package-lock.json -------------------------------------------------------------------------------- /web/maze_playground/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/package.json -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/App.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/api/client.ts -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/BuiltinTasksSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/BuiltinTasksSidebar.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/CustomNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/CustomNode.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/CustomTaskEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/CustomTaskEditor.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/NodePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/NodePanel.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/ResultDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/ResultDisplay.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/ResultsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/ResultsModal.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/Toolbar.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/components/WorkflowCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/components/WorkflowCanvas.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/index.css -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/main.tsx -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/stores/workflowStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/stores/workflowStore.ts -------------------------------------------------------------------------------- /web/maze_playground/frontend/src/types/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/src/types/workflow.ts -------------------------------------------------------------------------------- /web/maze_playground/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/tsconfig.json -------------------------------------------------------------------------------- /web/maze_playground/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /web/maze_playground/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maze-agent/Maze/HEAD/web/maze_playground/frontend/vite.config.ts --------------------------------------------------------------------------------