AI Skill Hub 强烈推荐:local-deep-research Agent工作流 是一款优质的Agent工作流。已获得 7.5k 颗 GitHub Star,AI 综合评分 8.2 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
local-deep-research Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
local-deep-research Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install local-deep-research
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install local-deep-research
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/LearningCircuit/local-deep-research
cd local-deep-research
pip install -e .
# 验证安装
python -c "import local_deep_research; print('安装成功')"
# 命令行使用
local-deep-research --help
# 基本用法
local-deep-research input_file -o output_file
# Python 代码中调用
import local_deep_research
# 示例
result = local_deep_research.process("input")
print(result)
# local-deep-research 配置文件示例(config.yml) app: name: "local-deep-research" debug: false log_level: "INFO" # 运行时指定配置文件 local-deep-research --config config.yml # 或通过环境变量配置 export LOCAL_DEEP_RESEARCH_API_KEY="your-key" export LOCAL_DEEP_RESEARCH_OUTPUT_DIR="./output"
AI-powered research assistant for deep, agentic research
Performs deep, agentic research using multiple LLMs and search engines with proper citations
🧪 First open-source project — fully-local on a single RTX 3090 (Qwen3.6-27B) — to report ~95% SimpleQA (n=500) and 77% xbench-DeepSearch (n=100) on local hardware. See the r/LocalLLaMA announcement and the benchmark dataset.
<a href="https://www.youtube.com/watch?v=pfxgLX-MxMY&t=1999"> ▶️ Watch Review by The Art Of The Terminal </a>
</div>
"Local Deep Research deserves special mention for those who prioritize privacy... tuned to use open-source LLMs that can run on consumer GPUs or even CPUs. Journalists, researchers, or companies with sensitive topics can investigate information without queries ever hitting an external server." — Medium: Open-Source Deep Research AI Assistants
Every research session finds valuable sources. Download them directly into your encrypted library—academic papers from ArXiv, PubMed articles, web pages. LDR extracts text, indexes everything, and makes it searchable. Next time you research, ask questions across your own documents and the live web together. Your knowledge compounds over time.
```bash
pip install "local-deep-research[mcp]" ```
Option 1: Docker Run (Linux) ```bash
"Use quick_research to find information about quantum computing applications"
"Search arxiv for recent papers on diffusion models"
"Generate a detailed research report on renewable energy trends"
summary = quick_query("username", "password", "What is quantum computing?") print(summary)
client = LDRClient() client.login("username", "password") result = client.quick_research("What are the latest advances in quantum computing?") print(result["summary"]) ```
Add to your claude_desktop_config.json:
{
"mcpServers": {
"local-deep-research": {
"command": "ldr-mcp",
"env": {
"LDR_LLM_PROVIDER": "openai",
"LDR_LLM_OPENAI_API_KEY": "sk-..."
}
}
}
}
Add to your .mcp.json (project-level) or ~/.claude/mcp.json (global):
{
"mcpServers": {
"local-deep-research": {
"command": "ldr-mcp",
"env": {
"LDR_LLM_PROVIDER": "ollama",
"LDR_LLM_OLLAMA_URL": "http://localhost:11434"
}
}
}
}
```python from local_deep_research.api import LDRClient, quick_query
The code example below shows the basic API structure - for working examples, see the link below
```python import requests from bs4 import BeautifulSoup
session.post("http://localhost:5000/auth/login", data={"username": "user", "password": "pass", "csrf_token": login_csrf}) csrf = session.get("http://localhost:5000/auth/csrf-token").json()["csrf_token"]
response = session.post("http://localhost:5000/api/start_research", json={"query": "Your research question"}, headers={"X-CSRF-Token": csrf}) ```
🚀 Ready-to-use HTTP API Examples → examples/api_usage/http/ - ✅ Automatic user creation - works out of the box - ✅ Complete authentication with CSRF handling - ✅ Result retry logic - waits until research completes - ✅ Progress monitoring and error handling
Connect LDR to your existing knowledge base:
```python from local_deep_research.api import quick_summary
LDR provides an MCP (Model Context Protocol) server that allows AI assistants like Claude Desktop and Claude Code to perform deep research. Full setup details in the MCP Server guide.
⚠️ Security Note: This MCP server is designed for local use only via STDIO transport (e.g., Claude Desktop). It has no built-in authentication or rate limiting. Do not expose over a network without implementing proper security controls. See the MCP Security Guide for network deployment requirements.
高质量学术工作流,95%准确率表现优异,支持多样化部署方案,活跃维护,生态完善。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,local-deep-research Agent工作流 是一款质量优秀的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | local-deep-research |
| 原始描述 | 开源AI工作流: ~95% on SimpleQA (e.g. Qwen3.6-27B on a 3090). Supports all local and cloud LLM。⭐7.5k · Python |
| Topics | AI工作流本地推理研究工具多模型支持学术 |
| GitHub | https://github.com/LearningCircuit/local-deep-research |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-14 · 更新时间:2026-05-16 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端