refining docs

This commit is contained in:
2025-11-05 13:25:45 -05:00
parent 49e9227d99
commit edd15cdf07

View File

@@ -133,17 +133,25 @@ Done! All files updated.
Edit the Task Scheduler trigger to your preferred time (e.g., 6 AM, 9 PM) Edit the Task Scheduler trigger to your preferred time (e.g., 6 AM, 9 PM)
### Change Number of Papers: ### Change Number of Papers:
Edit `main.py` line 21: Edit `config.json` settings:
```python ```json
PAPERS_PER_INTEREST = 10 # Fetch 10 instead of 5 {
"settings": {
"papers_per_interest": 15
}
}
``` ```
### Add More Interest Areas: ### Add More Interest Areas:
Edit `main.py` lines 13-19 and add more queries: Edit `config.json` and add your topics:
```python ```json
INTERESTS = { {
"Your Topic": 'abs:"your keywords" OR ti:"your topic"', "interests": {
# ... existing topics "Your Research Area": {
"query": "cat:cs.AI OR cat:cs.LG",
"keywords": ["keyword1", "keyword2", "keyword3"]
}
}
} }
``` ```