mirror of
https://github.com/langchain-ai/cookbooks.git
synced 2026-07-01 20:44:05 -04:00
[PR #2] [MERGED] Add arXiv research agent #2
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 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:
main← Head:jake/arxiv-researcher📝 Commits (7)
8f9ba9bfirst commit - MVPe61c78anaive implementation63ec2ffMVP3c4366eUpdate agent.pyc377cc2Create .env.exampled19be43Edit output stateff984abCreate README.md📊 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.