├── .gitignore ├── LICENSE.txt ├── ck_pro ├── agents │ ├── __init__.py │ ├── agent.py │ ├── evaluator.py │ ├── evaluator_prompt.py │ ├── model.py │ ├── session.py │ ├── tool.py │ └── utils.py ├── ck_file │ ├── __init__.py │ ├── agent.py │ ├── main.py │ ├── mdconvert.py │ ├── prompts.py │ └── utils.py ├── ck_main │ ├── __init__.py │ ├── _test │ │ └── simple_test.jsonl │ ├── agent.py │ ├── gaia_scorer.py │ ├── main.py │ ├── prompts.py │ └── scripts │ │ ├── analyze.py │ │ └── convert_from_smolagent.py ├── ck_web │ ├── __init__.py │ ├── _web │ │ ├── Dockerfile │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── run_local.sh │ │ ├── run_local_mac.sh │ │ └── server.js │ ├── agent.py │ ├── main.py │ ├── prompts.py │ └── utils.py └── readme.md ├── data └── convert_sft.py ├── readme.md └── results.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /ck_pro/agents/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | 3 | # inspired by smolagents 4 | -------------------------------------------------------------------------------- /ck_pro/agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/agents/agent.py -------------------------------------------------------------------------------- /ck_pro/agents/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/agents/evaluator.py -------------------------------------------------------------------------------- /ck_pro/agents/evaluator_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/agents/evaluator_prompt.py -------------------------------------------------------------------------------- /ck_pro/agents/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/agents/model.py -------------------------------------------------------------------------------- /ck_pro/agents/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/agents/session.py -------------------------------------------------------------------------------- /ck_pro/agents/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/agents/tool.py -------------------------------------------------------------------------------- /ck_pro/agents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/agents/utils.py -------------------------------------------------------------------------------- /ck_pro/ck_file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ck_pro/ck_file/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_file/agent.py -------------------------------------------------------------------------------- /ck_pro/ck_file/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_file/main.py -------------------------------------------------------------------------------- /ck_pro/ck_file/mdconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_file/mdconvert.py -------------------------------------------------------------------------------- /ck_pro/ck_file/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_file/prompts.py -------------------------------------------------------------------------------- /ck_pro/ck_file/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_file/utils.py -------------------------------------------------------------------------------- /ck_pro/ck_main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ck_pro/ck_main/_test/simple_test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_main/_test/simple_test.jsonl -------------------------------------------------------------------------------- /ck_pro/ck_main/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_main/agent.py -------------------------------------------------------------------------------- /ck_pro/ck_main/gaia_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_main/gaia_scorer.py -------------------------------------------------------------------------------- /ck_pro/ck_main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_main/main.py -------------------------------------------------------------------------------- /ck_pro/ck_main/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_main/prompts.py -------------------------------------------------------------------------------- /ck_pro/ck_main/scripts/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_main/scripts/analyze.py -------------------------------------------------------------------------------- /ck_pro/ck_main/scripts/convert_from_smolagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_main/scripts/convert_from_smolagent.py -------------------------------------------------------------------------------- /ck_pro/ck_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ck_pro/ck_web/_web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/_web/Dockerfile -------------------------------------------------------------------------------- /ck_pro/ck_web/_web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/_web/package-lock.json -------------------------------------------------------------------------------- /ck_pro/ck_web/_web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/_web/package.json -------------------------------------------------------------------------------- /ck_pro/ck_web/_web/run_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/_web/run_local.sh -------------------------------------------------------------------------------- /ck_pro/ck_web/_web/run_local_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/_web/run_local_mac.sh -------------------------------------------------------------------------------- /ck_pro/ck_web/_web/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/_web/server.js -------------------------------------------------------------------------------- /ck_pro/ck_web/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/agent.py -------------------------------------------------------------------------------- /ck_pro/ck_web/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/main.py -------------------------------------------------------------------------------- /ck_pro/ck_web/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/prompts.py -------------------------------------------------------------------------------- /ck_pro/ck_web/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/ck_web/utils.py -------------------------------------------------------------------------------- /ck_pro/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/ck_pro/readme.md -------------------------------------------------------------------------------- /data/convert_sft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/data/convert_sft.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/readme.md -------------------------------------------------------------------------------- /results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/CognitiveKernel-Pro/HEAD/results.png --------------------------------------------------------------------------------