[PR #2] [MERGED] Add arXiv research agent #2

Closed
opened 2026-02-16 09:16:13 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/cookbooks/pull/2
Author: @j-broekhuizen
Created: 7/23/2025
Status: Merged
Merged: 7/23/2025
Merged by: @j-broekhuizen

Base: mainHead: jake/arxiv-researcher


📝 Commits (7)

📊 Changes

14 files changed (+427 additions, -0 deletions)

View changed files

python/langgraph/agents/arxiv-researcher/.env.example (+5 -0)
python/langgraph/agents/arxiv-researcher/.gitignore (+5 -0)
python/langgraph/agents/arxiv-researcher/README.md (+41 -0)
python/langgraph/agents/arxiv-researcher/agent.py (+132 -0)
python/langgraph/agents/arxiv-researcher/agents/__init__.py (+1 -0)
python/langgraph/agents/arxiv-researcher/agents/application_agent.py (+24 -0)
python/langgraph/agents/arxiv-researcher/agents/detailed_summary_agent.py (+24 -0)
python/langgraph/agents/arxiv-researcher/agents/high_level_summary_agent.py (+24 -0)
python/langgraph/agents/arxiv-researcher/langgraph.json (+14 -0)
python/langgraph/agents/arxiv-researcher/prompts/__init__.py (+0 -0)
python/langgraph/agents/arxiv-researcher/prompts/prompts.py (+47 -0)
python/langgraph/agents/arxiv-researcher/requirements.txt (+28 -0)
python/langgraph/agents/arxiv-researcher/shared.py (+30 -0)
python/langgraph/agents/arxiv-researcher/utils.py (+52 -0)

📄 Description

A basic multi-agent arXiv researcher


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/cookbooks/pull/2 **Author:** [@j-broekhuizen](https://github.com/j-broekhuizen) **Created:** 7/23/2025 **Status:** ✅ Merged **Merged:** 7/23/2025 **Merged by:** [@j-broekhuizen](https://github.com/j-broekhuizen) **Base:** `main` ← **Head:** `jake/arxiv-researcher` --- ### 📝 Commits (7) - [`8f9ba9b`](https://github.com/langchain-ai/cookbooks/commit/8f9ba9b61a3fd1d1965f6d0e5a4d0adf1b0a55c6) first commit - MVP - [`e61c78a`](https://github.com/langchain-ai/cookbooks/commit/e61c78a838dba857a20569479d52915a435b1604) naive implementation - [`63ec2ff`](https://github.com/langchain-ai/cookbooks/commit/63ec2ff575e447352c2f8be0dbb606d0b1f0e8d9) MVP - [`3c4366e`](https://github.com/langchain-ai/cookbooks/commit/3c4366e9fea0dd6514ee38e90834d5373d3f740e) Update agent.py - [`c377cc2`](https://github.com/langchain-ai/cookbooks/commit/c377cc2c0373ccf589fda8a3ad2d1a384c636f5c) Create .env.example - [`d19be43`](https://github.com/langchain-ai/cookbooks/commit/d19be43e5a49bf24c5a7d1c2c220ba6f8684ba92) Edit output state - [`ff984ab`](https://github.com/langchain-ai/cookbooks/commit/ff984abd67db51ee2178f6ea15bb428aec70a698) Create README.md ### 📊 Changes **14 files changed** (+427 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `python/langgraph/agents/arxiv-researcher/.env.example` (+5 -0) ➕ `python/langgraph/agents/arxiv-researcher/.gitignore` (+5 -0) ➕ `python/langgraph/agents/arxiv-researcher/README.md` (+41 -0) ➕ `python/langgraph/agents/arxiv-researcher/agent.py` (+132 -0) ➕ `python/langgraph/agents/arxiv-researcher/agents/__init__.py` (+1 -0) ➕ `python/langgraph/agents/arxiv-researcher/agents/application_agent.py` (+24 -0) ➕ `python/langgraph/agents/arxiv-researcher/agents/detailed_summary_agent.py` (+24 -0) ➕ `python/langgraph/agents/arxiv-researcher/agents/high_level_summary_agent.py` (+24 -0) ➕ `python/langgraph/agents/arxiv-researcher/langgraph.json` (+14 -0) ➕ `python/langgraph/agents/arxiv-researcher/prompts/__init__.py` (+0 -0) ➕ `python/langgraph/agents/arxiv-researcher/prompts/prompts.py` (+47 -0) ➕ `python/langgraph/agents/arxiv-researcher/requirements.txt` (+28 -0) ➕ `python/langgraph/agents/arxiv-researcher/shared.py` (+30 -0) ➕ `python/langgraph/agents/arxiv-researcher/utils.py` (+52 -0) </details> ### 📄 Description A basic multi-agent arXiv researcher --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 09:16:13 -05:00
yindo closed this issue 2026-02-16 09:16:13 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/cookbooks#2