├── .env.example ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── README_zh.md ├── assets ├── cli.png ├── polish.png └── wechat_community.jpg ├── cli.py ├── config ├── __init__.py ├── bdb047a6e0c59e8ddcceb483b4dba240.json ├── global_functions.py ├── global_variables.py ├── mcp.json.example └── workflow.json ├── docs ├── QA.md ├── QA_zh.md ├── business_support.md ├── business_support_zh.md ├── work_with_us.md └── work_with_us_zh.md ├── pre-commit ├── pyproject.toml ├── src ├── __init__.py ├── interface │ ├── __init__.py │ ├── agent.py │ ├── mcp.py │ ├── serializer.py │ └── workflow.py ├── llm │ ├── agents.py │ └── llm.py ├── manager │ ├── __init__.py │ ├── agents.py │ └── mcp.py ├── prompts │ ├── __init__.py │ ├── agent_factory.md │ ├── agent_factory_planner.md │ ├── agent_polish.md │ ├── browser.md │ ├── coder.md │ ├── coordinator.md │ ├── file_manager.md │ ├── html_generator.md │ ├── planner.md │ ├── publisher.md │ ├── reporter.md │ ├── researcher.md │ └── template.py ├── service │ ├── __init__.py │ ├── env.py │ ├── server.py │ ├── session.py │ └── tool_tracker.py ├── tools │ ├── __init__.py │ ├── avatar_tool.py │ ├── bash_tool.py │ ├── browser.py │ ├── browser_decorators.py │ ├── crawl.py │ ├── crawler │ │ ├── __init__.py │ │ ├── article.py │ │ ├── crawler.py │ │ ├── jina_client.py │ │ └── readability_extractor.py │ ├── decorators.py │ ├── excel │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── calculations.py │ │ ├── cell_utils.py │ │ ├── chart.py │ │ ├── data.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── pivot.py │ │ ├── server.py │ │ ├── sheet.py │ │ ├── validation.py │ │ └── workbook.py │ ├── file_management.py │ ├── gmail.py │ ├── office365.py │ ├── python_repl.py │ ├── search.py │ ├── slack.py │ ├── video.py │ ├── web_preview │ │ ├── __init__.py │ │ ├── index.html │ │ └── web_preview.py │ ├── web_preview_tool.py │ └── websocket_manager.py ├── utils │ ├── __init__.py │ ├── content_process.py │ └── path_utils.py └── workflow │ ├── __init__.py │ ├── agent_factory.py │ ├── cache.py │ ├── coor_task.py │ ├── dynamic.py │ ├── graph.py │ ├── manager.py │ ├── polish_task.py │ ├── process.py │ └── template.py ├── tests ├── integration │ ├── test_avatar.py │ ├── test_bash_tool.py │ └── test_crawler.py └── test_app.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/README_zh.md -------------------------------------------------------------------------------- /assets/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/assets/cli.png -------------------------------------------------------------------------------- /assets/polish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/assets/polish.png -------------------------------------------------------------------------------- /assets/wechat_community.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/assets/wechat_community.jpg -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/cli.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/bdb047a6e0c59e8ddcceb483b4dba240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/config/bdb047a6e0c59e8ddcceb483b4dba240.json -------------------------------------------------------------------------------- /config/global_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/config/global_functions.py -------------------------------------------------------------------------------- /config/global_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/config/global_variables.py -------------------------------------------------------------------------------- /config/mcp.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/config/mcp.json.example -------------------------------------------------------------------------------- /config/workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/config/workflow.json -------------------------------------------------------------------------------- /docs/QA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/docs/QA.md -------------------------------------------------------------------------------- /docs/QA_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/docs/QA_zh.md -------------------------------------------------------------------------------- /docs/business_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/docs/business_support.md -------------------------------------------------------------------------------- /docs/business_support_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/docs/business_support_zh.md -------------------------------------------------------------------------------- /docs/work_with_us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/docs/work_with_us.md -------------------------------------------------------------------------------- /docs/work_with_us_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/docs/work_with_us_zh.md -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/pre-commit -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interface/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/interface/agent.py -------------------------------------------------------------------------------- /src/interface/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/interface/mcp.py -------------------------------------------------------------------------------- /src/interface/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/interface/serializer.py -------------------------------------------------------------------------------- /src/interface/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/interface/workflow.py -------------------------------------------------------------------------------- /src/llm/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/llm/agents.py -------------------------------------------------------------------------------- /src/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/llm/llm.py -------------------------------------------------------------------------------- /src/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/manager/__init__.py -------------------------------------------------------------------------------- /src/manager/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/manager/agents.py -------------------------------------------------------------------------------- /src/manager/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/manager/mcp.py -------------------------------------------------------------------------------- /src/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/__init__.py -------------------------------------------------------------------------------- /src/prompts/agent_factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/agent_factory.md -------------------------------------------------------------------------------- /src/prompts/agent_factory_planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/agent_factory_planner.md -------------------------------------------------------------------------------- /src/prompts/agent_polish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/agent_polish.md -------------------------------------------------------------------------------- /src/prompts/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/browser.md -------------------------------------------------------------------------------- /src/prompts/coder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/coder.md -------------------------------------------------------------------------------- /src/prompts/coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/coordinator.md -------------------------------------------------------------------------------- /src/prompts/file_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/file_manager.md -------------------------------------------------------------------------------- /src/prompts/html_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/html_generator.md -------------------------------------------------------------------------------- /src/prompts/planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/planner.md -------------------------------------------------------------------------------- /src/prompts/publisher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/publisher.md -------------------------------------------------------------------------------- /src/prompts/reporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/reporter.md -------------------------------------------------------------------------------- /src/prompts/researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/researcher.md -------------------------------------------------------------------------------- /src/prompts/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/prompts/template.py -------------------------------------------------------------------------------- /src/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/service/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/service/env.py -------------------------------------------------------------------------------- /src/service/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/service/server.py -------------------------------------------------------------------------------- /src/service/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/service/session.py -------------------------------------------------------------------------------- /src/service/tool_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/service/tool_tracker.py -------------------------------------------------------------------------------- /src/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/__init__.py -------------------------------------------------------------------------------- /src/tools/avatar_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/avatar_tool.py -------------------------------------------------------------------------------- /src/tools/bash_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/bash_tool.py -------------------------------------------------------------------------------- /src/tools/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/browser.py -------------------------------------------------------------------------------- /src/tools/browser_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/browser_decorators.py -------------------------------------------------------------------------------- /src/tools/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/crawl.py -------------------------------------------------------------------------------- /src/tools/crawler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/crawler/__init__.py -------------------------------------------------------------------------------- /src/tools/crawler/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/crawler/article.py -------------------------------------------------------------------------------- /src/tools/crawler/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/crawler/crawler.py -------------------------------------------------------------------------------- /src/tools/crawler/jina_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/crawler/jina_client.py -------------------------------------------------------------------------------- /src/tools/crawler/readability_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/crawler/readability_extractor.py -------------------------------------------------------------------------------- /src/tools/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/decorators.py -------------------------------------------------------------------------------- /src/tools/excel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/excel/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/__main__.py -------------------------------------------------------------------------------- /src/tools/excel/calculations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/calculations.py -------------------------------------------------------------------------------- /src/tools/excel/cell_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/cell_utils.py -------------------------------------------------------------------------------- /src/tools/excel/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/chart.py -------------------------------------------------------------------------------- /src/tools/excel/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/data.py -------------------------------------------------------------------------------- /src/tools/excel/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/exceptions.py -------------------------------------------------------------------------------- /src/tools/excel/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/formatting.py -------------------------------------------------------------------------------- /src/tools/excel/pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/pivot.py -------------------------------------------------------------------------------- /src/tools/excel/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/server.py -------------------------------------------------------------------------------- /src/tools/excel/sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/sheet.py -------------------------------------------------------------------------------- /src/tools/excel/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/validation.py -------------------------------------------------------------------------------- /src/tools/excel/workbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/excel/workbook.py -------------------------------------------------------------------------------- /src/tools/file_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/file_management.py -------------------------------------------------------------------------------- /src/tools/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/gmail.py -------------------------------------------------------------------------------- /src/tools/office365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/office365.py -------------------------------------------------------------------------------- /src/tools/python_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/python_repl.py -------------------------------------------------------------------------------- /src/tools/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/search.py -------------------------------------------------------------------------------- /src/tools/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/slack.py -------------------------------------------------------------------------------- /src/tools/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/video.py -------------------------------------------------------------------------------- /src/tools/web_preview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/web_preview/__init__.py -------------------------------------------------------------------------------- /src/tools/web_preview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/web_preview/index.html -------------------------------------------------------------------------------- /src/tools/web_preview/web_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/web_preview/web_preview.py -------------------------------------------------------------------------------- /src/tools/web_preview_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/web_preview_tool.py -------------------------------------------------------------------------------- /src/tools/websocket_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/tools/websocket_manager.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .path_utils import * 2 | 3 | __all__=[ 4 | "get_project_root" 5 | ] -------------------------------------------------------------------------------- /src/utils/content_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/utils/content_process.py -------------------------------------------------------------------------------- /src/utils/path_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/utils/path_utils.py -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/__init__.py -------------------------------------------------------------------------------- /src/workflow/agent_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/agent_factory.py -------------------------------------------------------------------------------- /src/workflow/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/cache.py -------------------------------------------------------------------------------- /src/workflow/coor_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/coor_task.py -------------------------------------------------------------------------------- /src/workflow/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/dynamic.py -------------------------------------------------------------------------------- /src/workflow/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/graph.py -------------------------------------------------------------------------------- /src/workflow/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/manager.py -------------------------------------------------------------------------------- /src/workflow/polish_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/polish_task.py -------------------------------------------------------------------------------- /src/workflow/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/process.py -------------------------------------------------------------------------------- /src/workflow/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/src/workflow/template.py -------------------------------------------------------------------------------- /tests/integration/test_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/tests/integration/test_avatar.py -------------------------------------------------------------------------------- /tests/integration/test_bash_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/tests/integration/test_bash_tool.py -------------------------------------------------------------------------------- /tests/integration/test_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/tests/integration/test_crawler.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/cooragent/HEAD/uv.lock --------------------------------------------------------------------------------