研究论文AI对话助手 是 AI Skill Hub 本期精选AI工具之一。综合评分 8.2 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
研究论文AI对话助手 是一款基于 Python 开发的开源工具,专注于 论文解读、AI对话、工作流自动化 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
研究论文AI对话助手 是一款基于 Python 开发的开源工具,专注于 论文解读、AI对话、工作流自动化 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install deepxiv_sdk
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install deepxiv_sdk
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/DeepXiv/deepxiv_sdk
cd deepxiv_sdk
pip install -e .
# 验证安装
python -c "import deepxiv_sdk; print('安装成功')"
# 命令行使用
deepxiv_sdk --help
# 基本用法
deepxiv_sdk input_file -o output_file
# Python 代码中调用
import deepxiv_sdk
# 示例
result = deepxiv_sdk.process("input")
print(result)
# deepxiv_sdk 配置文件示例(config.yml) app: name: "deepxiv_sdk" debug: false log_level: "INFO" # 运行时指定配置文件 deepxiv_sdk --config config.yml # 或通过环境变量配置 export DEEPXIV_SDK_API_KEY="your-key" export DEEPXIV_SDK_OUTPUT_DIR="./output"
The data layer agentic search is missing — full paper text, real citations, and the people behind them.
<p align="center"> <a href="https://deepxiv.com">Live system</a> · <a href="USAGE.md">Full documentation</a> · <a href="https://data.rag.ac.cn/api/docs">API docs</a> · <a href="https://data.rag.ac.cn/status">Status</a> · <a href="https://arxiv.org/abs/2603.00084"><img src="https://img.shields.io/badge/arXiv-2603.00084-b31b1b" alt="arXiv"></a> · <a href="README.zh.md">中文</a> </p>
<p align="center"> <img src="./assets/demo.gif" width="100%"> <br> <em><code>deepxiv ask</code> — a question in, a cited answer streaming out</em> </p>
---
pip install deepxiv-sdk
Beta:deepxiv talentisn't on PyPI yet. It ships in1.1.0b1from source while the scholar index is still being built out:> pip install git+https://github.com/DeepXiv/deepxiv_sdk.git >
deepxiv auto-registers a token on first use. Agentic commands (ask, talent) need a registered key instead — get one at data.rag.ac.cn/register, then:
deepxiv config --token YOUR_REGISTERED_KEY
Every account gets 300 agentic calls/day free, on a pool separate from the general daily limit.
One investigation, start to finish. You've heard speculative decoding got much faster this year and want to know what's real.
1. Ask the literature. Start with the question, not a keyword. The service picks its own tools, reads paper bodies, and cites what it used.
deepxiv ask "what speedup does speculative decoding report on HumanEval in 2025"
DEER reports a 5.54× speedup on HumanEval (with Qwen3-30B-A3B as the target
model), compared to EAGLE-3's 2.41× on the same benchmark [arXiv:2512.15176].
📚 Sources (1 cited, 10 retrieved — use --all-sources for the rest):
1. [2512.15176] DEER: Draft with Diffusion, Verify with Autoregressive Models
The answer goes to stdout and sources to stderr, so deepxiv ask "…" > answer.md captures just the answer. Add --effort high when a question spans several papers.
2. Read the paper it cited — in layers. Never load a whole paper to answer a question about one section.
deepxiv paper 2512.15176 --brief # title, TLDR, keywords, citations — worth reading?
deepxiv paper 2512.15176 --head # section list + where the tokens are
deepxiv paper 2512.15176 --section Experiment # read only that
Each step costs an order of magnitude more than the last, so you stop as soon as you have your answer. Take section names from --head — papers don't share a common outline. --preview gives ~10k chars; no flag at all gives the full markdown.
3. Widen it into a search. Once you know what you're looking for, filter for the rest.
deepxiv search "speculative decoding" --date-from 2025-01 --min-citations 20 --limit 10
Filters combine with AND — --authors, --orgs, --categories, --venue/--venue-year, dates, citation floors. Stack too many and you'll legitimately get zero results; loosen one.
4. Find the people behind it. A method is worth more when you know whose lab it comes from and what else they've built.
deepxiv talent search "researchers working on speculative decoding" --semantic --limit 5
deepxiv talent survey 257 # full profile: bio, education, work, open source, metrics
deepxiv talent survey 257 --format markdown # the generated report
Semantic mode takes a sentence; drop --semantic to match names and affiliations directly. IDs from search feed survey.
5. Step off arXiv when the question isn't academic. Licensing, pricing, who shipped what last week — same command, different backend.
deepxiv ask "which inference providers support speculative decoding today" --web
deepxiv ask "NeurIPS 2025 best paper" --web --search-type news
The web backend reads cached page bodies. Pages read in full are marked 📄, snippet-only ones 🔗 — weigh them accordingly.
In Python, the same pipeline is Reader:
from deepxiv_sdk import Reader
reader = Reader(token="YOUR_REGISTERED_KEY") # Reader takes the token explicitly
answer = reader.agent_search("what speedup does DEER report on HumanEval")["answer"]
method = reader.section("2512.15176", "Method")
people = reader.talent_search("speculative decoding", semantic=True, limit=5)
创意十足的科研工具,Agent架构设计合理。Star数增长稳定,社区活跃度高。实用性强,对学术工作者价值明显。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,研究论文AI对话助手 在AI工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | deepxiv_sdk |
| 原始描述 | 开源AI工作流:Talk to research papers like talking to authors - Python package with AI agent f。⭐686 · Python |
| Topics | 论文解读AI对话工作流自动化Python SDK科研辅助 |
| GitHub | https://github.com/DeepXiv/deepxiv_sdk |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-22 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。