매일 주요 1티어 학회와 HuggingFace Papers에서 Agent / Harness / Finance 관련 논문을 자동 수집·정리하는 도구입니다.
| 구분 | 소스 |
|---|---|
| 학회 | AAAI, NeurIPS, ICML, ICLR, CVPR, KDD |
| 큐레이션 | HuggingFace Daily Papers |
| 프리프린트 | arXiv (cs.AI · cs.LG · cs.CL · cs.CV · q-fin.*) |
- Agent — agent, multi-agent, autonomous agent, llm agent, agentic, tool-use, …
- Harness — harness, lm eval, evaluation framework, benchmark suite, …
- Finance — financial, trading, portfolio, stock market, fraud detection, algorithmic trading, …
매일 output/YYYY-MM-DD.md 파일이 생성됩니다 (최신 결과는 output/latest.md).
예시 출력:
# Daily Paper Digest — 2025-04-14 (Monday)
...
## Agent (12)
### NeurIPS
- **[Paper Title](url)** — Author A, Author B et al.
- NeurIPS 2024 · 🤗 Featured · 2025-04-13
- Abstract snippet…
...
## Finance (8)
### KDD
...
pip install -r requirements.txt
# 오늘 날짜 논문 수집
python main.py
# 특정 날짜 지정
python main.py --date 2025-04-10
# arXiv 제외 (빠른 실행)
python main.py --skip-arxiv
# Semantic Scholar API 키 사용 (요청 한도 확대)
SS_API_KEY=<your_key> python main.py.github/workflows/daily_papers.yml이 매일 UTC 06:00 (KST 15:00) 에 자동 실행되어 결과를 커밋합니다.
수동 실행은 Actions 탭 → Daily Paper Digest → Run workflow 에서 가능합니다.
| Secret | 설명 |
|---|---|
SEMANTIC_SCHOLAR_API_KEY |
S2 API 키 (없어도 동작, 있으면 요청 한도 증가) |
paper_find/
├── main.py # 진입점
├── requirements.txt
├── src/
│ ├── config.py # 학회 목록, 키워드, 설정값
│ ├── models.py # Paper 데이터 클래스
│ ├── processor.py # 중복 제거 + 토픽 분류
│ ├── formatter.py # Markdown 출력 포맷
│ └── scrapers/
│ ├── huggingface.py # HuggingFace Daily Papers API
│ ├── semantic_scholar.py# Semantic Scholar 학회 논문
│ └── arxiv.py # arXiv 일별 제출 논문
├── output/
│ ├── latest.md # 최신 결과
│ └── YYYY-MM-DD.md # 날짜별 아카이브
└── .github/workflows/
└── daily_papers.yml # 일별 자동 실행