From edd15cdf077680f935bb3f7e19a040bc5cf98ad3 Mon Sep 17 00:00:00 2001 From: wwelsh Date: Wed, 5 Nov 2025 13:25:45 -0500 Subject: [PATCH] refining docs --- SETUP_GUIDE.md | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/SETUP_GUIDE.md b/SETUP_GUIDE.md index f21242e..89dd51d 100644 --- a/SETUP_GUIDE.md +++ b/SETUP_GUIDE.md @@ -133,17 +133,25 @@ Done! All files updated. Edit the Task Scheduler trigger to your preferred time (e.g., 6 AM, 9 PM) ### Change Number of Papers: -Edit `main.py` line 21: -```python -PAPERS_PER_INTEREST = 10 # Fetch 10 instead of 5 +Edit `config.json` settings: +```json +{ + "settings": { + "papers_per_interest": 15 + } +} ``` ### Add More Interest Areas: -Edit `main.py` lines 13-19 and add more queries: -```python -INTERESTS = { - "Your Topic": 'abs:"your keywords" OR ti:"your topic"', - # ... existing topics +Edit `config.json` and add your topics: +```json +{ + "interests": { + "Your Research Area": { + "query": "cat:cs.AI OR cat:cs.LG", + "keywords": ["keyword1", "keyword2", "keyword3"] + } + } } ```