├── .gitignore ├── README.md ├── README_zh-CN.md ├── asset ├── data.png └── first.png ├── config └── create_your_env_here.md ├── data ├── ai_search_benchmark.json └── metrics_rlts │ └── model_result_here.md ├── example ├── eval │ ├── llm_eval_terminal.sh │ └── token_eval_terminal.sh ├── run_benchmark │ ├── close_model_terminal.sh │ └── open_model_terminal.sh ├── terminal.py └── vllm_openai.sh ├── requirements.txt └── src ├── actions ├── __init__.py ├── action_executor.py └── search_action.py ├── ai_search ├── __init__.py ├── component.py ├── prompts.py ├── search.py └── util.py ├── metrics ├── llm_eval.py └── token_eval.py ├── plugins ├── __init__.py └── web_search.py └── serve ├── __init__.py └── vllm_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /asset/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/asset/data.png -------------------------------------------------------------------------------- /asset/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/asset/first.png -------------------------------------------------------------------------------- /config/create_your_env_here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/config/create_your_env_here.md -------------------------------------------------------------------------------- /data/ai_search_benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/data/ai_search_benchmark.json -------------------------------------------------------------------------------- /data/metrics_rlts/model_result_here.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/eval/llm_eval_terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/example/eval/llm_eval_terminal.sh -------------------------------------------------------------------------------- /example/eval/token_eval_terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/example/eval/token_eval_terminal.sh -------------------------------------------------------------------------------- /example/run_benchmark/close_model_terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/example/run_benchmark/close_model_terminal.sh -------------------------------------------------------------------------------- /example/run_benchmark/open_model_terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/example/run_benchmark/open_model_terminal.sh -------------------------------------------------------------------------------- /example/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/example/terminal.py -------------------------------------------------------------------------------- /example/vllm_openai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/example/vllm_openai.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/actions/__init__.py -------------------------------------------------------------------------------- /src/actions/action_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/actions/action_executor.py -------------------------------------------------------------------------------- /src/actions/search_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/actions/search_action.py -------------------------------------------------------------------------------- /src/ai_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/ai_search/__init__.py -------------------------------------------------------------------------------- /src/ai_search/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/ai_search/component.py -------------------------------------------------------------------------------- /src/ai_search/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/ai_search/prompts.py -------------------------------------------------------------------------------- /src/ai_search/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/ai_search/search.py -------------------------------------------------------------------------------- /src/ai_search/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/ai_search/util.py -------------------------------------------------------------------------------- /src/metrics/llm_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/metrics/llm_eval.py -------------------------------------------------------------------------------- /src/metrics/token_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/metrics/token_eval.py -------------------------------------------------------------------------------- /src/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/plugins/__init__.py -------------------------------------------------------------------------------- /src/plugins/web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/plugins/web_search.py -------------------------------------------------------------------------------- /src/serve/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/serve/__init__.py -------------------------------------------------------------------------------- /src/serve/vllm_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuanruihu/Level-Navi-Agent-Search/HEAD/src/serve/vllm_server.py --------------------------------------------------------------------------------