# Agentic-Reasoning **Repository Path**: mirrors/Agentic-Reasoning ## Basic Information - **Project Name**: Agentic-Reasoning - **Description**: Agentic Reasoning 是一个将代理工具集成到 LLM 推理过程中的框架,让 LLM 像人类一样会用工具进行深度研究和多步逻辑推理,基于使用搜索引擎、代码执行器、思维导 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: main - **Homepage**: https://www.oschina.net/p/agentic-reasoning - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2025-02-14 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Agentic Reasoning: Reasoning LLM with Agentic Tools An open-source framework for deep research and beyond. The core idea is to integrate agentic tools into LLM reasoning. Warning: Still in development. Theoretically runnable, but undergoing rapid updates. ## Install install from environment.yml, e.g. ``` conda env create -f environment.yml ``` ## Run export your remote LLM API key in environment if you are using remote LLM, e.g. ``` export OPENAI_API_KEY="your openai api key" ``` export your you.com api key in environment if you are using deep research ``` export YDC_API_KEY="your you.com api key" ``` prepare JINA and BING API key if needed run command: ``` python scripts/run_agentic_reason.py \ --use_jina True \ --jina_api_key "your jina api key" \ --bing_subscription_key "your bing api key"\ --remote_model "your remote model name, e.g. gpt-4o" \ --mind_map True \ (optional) --deep_research True \ (optional, if you want to use deep research) ``` ## TODO LIST - [ ] auto research - [ ] clean agentic reasoning ## Thanks Code copied a lot from ... ## Ref ~~~ @misc{wu2025agenticreasoningreasoningllms, title={Agentic Reasoning: Reasoning LLMs with Tools for the Deep Research}, author={Junde Wu and Jiayuan Zhu and Yuyuan Liu}, year={2025}, eprint={2502.04644}, archivePrefix={arXiv}, primaryClass={cs.AI}, url={https://arxiv.org/abs/2502.04644}, } ~~~