=======
This project implements a multi-agent system using AutoGen for collaborative PDF downloading of academic papers. The system consists of multiple AI agents working together to search, download, and verify academic papers on a specified topic.
- User Proxy Agent: Coordinates the overall task and manages communication between agents
- Research Assistant: Searches for relevant PDF papers using Google Scholar
- Download Manager: Handles the downloading and proper storage of PDFs
- Quality Control: Verifies downloads and ensures content relevance
- Install dependencies:
pip install -r requirements.txt
- Create a
.env
file with your OpenAI API key:
OPENAI_API_KEY=your_api_key_here
Run the script with:
python pdf_downloader.py
By default, it will search for papers about "machine learning optimization algorithms". You can modify the topic in the script.
- Collaborative multi-agent system using AutoGen
- Academic paper search using Google Scholar
- Automated PDF downloading
- Quality control and verification
- Structured file organization
Please ensure you comply with the terms of service of academic paper repositories and respect copyright laws when downloading papers.