You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@
39
39
- List of papers sorted by relevance with your recent research interest.
40
40
- Fast deployment via fork this repo and set environment variables in the Github Action Page.
41
41
- Support LLM API for generating TL;DR of papers.
42
-
- Ignore unwanted Zotero papers using glob pattern.
42
+
- Ignore unwanted Zotero papers using a list of glob patterns.
43
43
- Support multiple sources of papers to retrieve:
44
44
- arxiv
45
45
- biorxiv
@@ -76,7 +76,7 @@ Paste the following content into the value of `CUSTOM_CONFIG` variable:
76
76
zotero:
77
77
user_id: ${oc.env:ZOTERO_ID}
78
78
api_key: ${oc.env:ZOTERO_KEY}
79
-
include_path: null
79
+
include_path: null# Or e.g. ["2026/survey/**", "2026/reading-group/**"]
80
80
81
81
email:
82
82
sender: ${oc.env:SENDER}
@@ -110,7 +110,7 @@ Here is the full configuration, `???` means the value must be filled in:
110
110
zotero:
111
111
user_id: ??? # User ID of your Zotero account.
112
112
api_key: ??? # An Zotero API key with read access.
113
-
include_path: null # A glob pattern marking the Zotero collections that should be included. Example: "2026/survey/**"
113
+
include_path: null # A list of glob patterns marking the Zotero collections that should be included. Example: ["2026/survey/**", "2026/reading-group/**"]
Copy file name to clipboardExpand all lines: config/base.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
zotero:
2
2
user_id: ??? # User ID of your Zotero account.
3
3
api_key: ??? # An Zotero API key with read access.
4
-
include_path: null # A glob pattern marking the Zotero collections that should be included. Example: "2026/survey/**"
4
+
include_path: null # A list of glob patterns marking the Zotero collections that should be included. Example: ["2026/survey/**","2026/reading-group/**"]
0 commit comments