├── .gitignore ├── LICENSE.txt ├── README.md ├── README_JA.md ├── README_ZH.md ├── benchmark ├── README.md ├── benchmark_eval.py ├── infer_baichuan.py ├── infer_qwen.py └── requirements.txt ├── blob ├── example-zh.gif ├── example.gif ├── logo.png └── overview.png ├── examples └── custom_tool_example.py ├── kwaiagents ├── agent_start.py ├── agents │ ├── __init__.py │ ├── agent_profile.py │ ├── kagent.py │ └── prompts.py ├── config.py ├── llms │ ├── __init__.py │ └── clients.py ├── tools │ ├── __init__.py │ ├── base.py │ ├── browser.py │ ├── calendars.py │ ├── commons.py │ ├── search.py │ ├── solarterms.py │ ├── timedelta.py │ └── weather.py └── utils │ ├── chain_logger.py │ ├── date_utils.py │ ├── function_utils.py │ ├── html_utils.py │ ├── json_fix_general.py │ ├── nlp_utils.py │ └── selenium_utils.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/README.md -------------------------------------------------------------------------------- /README_JA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/README_JA.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/README_ZH.md -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/benchmark_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/benchmark/benchmark_eval.py -------------------------------------------------------------------------------- /benchmark/infer_baichuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/benchmark/infer_baichuan.py -------------------------------------------------------------------------------- /benchmark/infer_qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/benchmark/infer_qwen.py -------------------------------------------------------------------------------- /benchmark/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/benchmark/requirements.txt -------------------------------------------------------------------------------- /blob/example-zh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/blob/example-zh.gif -------------------------------------------------------------------------------- /blob/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/blob/example.gif -------------------------------------------------------------------------------- /blob/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/blob/logo.png -------------------------------------------------------------------------------- /blob/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/blob/overview.png -------------------------------------------------------------------------------- /examples/custom_tool_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/examples/custom_tool_example.py -------------------------------------------------------------------------------- /kwaiagents/agent_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/agent_start.py -------------------------------------------------------------------------------- /kwaiagents/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/agents/__init__.py -------------------------------------------------------------------------------- /kwaiagents/agents/agent_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/agents/agent_profile.py -------------------------------------------------------------------------------- /kwaiagents/agents/kagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/agents/kagent.py -------------------------------------------------------------------------------- /kwaiagents/agents/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/agents/prompts.py -------------------------------------------------------------------------------- /kwaiagents/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/config.py -------------------------------------------------------------------------------- /kwaiagents/llms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/llms/__init__.py -------------------------------------------------------------------------------- /kwaiagents/llms/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/llms/clients.py -------------------------------------------------------------------------------- /kwaiagents/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/__init__.py -------------------------------------------------------------------------------- /kwaiagents/tools/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/base.py -------------------------------------------------------------------------------- /kwaiagents/tools/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/browser.py -------------------------------------------------------------------------------- /kwaiagents/tools/calendars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/calendars.py -------------------------------------------------------------------------------- /kwaiagents/tools/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/commons.py -------------------------------------------------------------------------------- /kwaiagents/tools/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/search.py -------------------------------------------------------------------------------- /kwaiagents/tools/solarterms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/solarterms.py -------------------------------------------------------------------------------- /kwaiagents/tools/timedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/timedelta.py -------------------------------------------------------------------------------- /kwaiagents/tools/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/tools/weather.py -------------------------------------------------------------------------------- /kwaiagents/utils/chain_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/utils/chain_logger.py -------------------------------------------------------------------------------- /kwaiagents/utils/date_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/utils/date_utils.py -------------------------------------------------------------------------------- /kwaiagents/utils/function_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/utils/function_utils.py -------------------------------------------------------------------------------- /kwaiagents/utils/html_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/utils/html_utils.py -------------------------------------------------------------------------------- /kwaiagents/utils/json_fix_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/utils/json_fix_general.py -------------------------------------------------------------------------------- /kwaiagents/utils/nlp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/utils/nlp_utils.py -------------------------------------------------------------------------------- /kwaiagents/utils/selenium_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/kwaiagents/utils/selenium_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiKEG/KwaiAgents/HEAD/setup.py --------------------------------------------------------------------------------