-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.jsonc
171 lines (171 loc) · 5.85 KB
/
plugins.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
[
{
"id": "papercast-arxiv",
"name": "ArXiV",
"author": "papercast-dev",
"description": "Collect papers from ArXiV",
"type": "collector",
"repo": "papercast-dev/papercast-arxiv",
"contributes": {
"papercast.processors.ArxivProcessor": {
"icon": "https://raw.githubusercontent.com/papercast-dev/papercast-community/main/assets/img/arxiv.png",
"short_description": "Collect papers from ArXiV",
"input_types": {
"arxiv_id": "str"
},
"output_types": {
"pdf": "papercast.types.PDFFile",
"title": "str",
"arxiv_id": "str",
"authors": "list[str]",
"doi": "str",
"description": "str"
}
}
}
},
{
"id": "papercast-semanticscholar",
"name": "SemanticScholar",
"author": "papercast-dev",
"description": "Collect papers from Semantic Scholar",
"type": "collector",
"repo": "papercast-dev/papercast-semanticscholar",
"contributes": {
"papercast.processors.SemanticScholarProcessor": {
"icon": "https://raw.githubusercontent.com/papercast-dev/papercast-community/main/assets/img/semanticscholar.svg",
"short_description": "Collect papers from Semantic Scholar",
"input_types": {
"corpus_id": "str"
},
"output_types": {
"pdf": "papercast.types.PDFFile",
"title": "str",
"authors": "list[str]",
"doi": "str",
"description": "str"
}
}
}
},
{
"id": "papercast-zotero-subscriber",
"name": "PDF",
"author": "papercast-dev",
"description": "Trigger pipelines when new papers are added to Zotero",
"type": "collector",
"repo": "papercast-dev/papercast-zotero-subscriber",
"contributes": {
"papercast.types.ZoteroOutput": {},
"papercast.subscribers.ZoteroSubscriber": {
"icon": "https://raw.githubusercontent.com/papercast-dev/papercast-community/main/assets/img/zotero.png",
"short_description": "Trigger pipelines when new papers are added to Zotero",
"output_types": {
"zotero_output": "papercast.types.ZoteroOutput"
}
}
}
},
{
"id": "papercast-pdf",
"name": "PDF",
"author": "papercast-dev",
"description": "Collect papers from PDF files",
"type": "collector",
"repo": "papercast-dev/papercast-pdf",
"contributes": {
"papercast.processors.PDFProcessor": {
"output_types": {
"zotero_output": "papercast.types.ZoteroOutput"
}
}
}
},
// {
// "id": "papercast-langchain-chain",
// "name": "LLMChain",
// "author": "papercast-dev",
// "description": "LangChain LLMChain",
// "type": "processor",
// "repo": "papercast-dev/papercast-langchain-chain",
// "contributes": {
// "pappercast.processors.LLMChainProcessor": {
// "short_description": "Process text with LLM Chains",
// "icon": "https://raw.githubusercontent.com/papercast-dev/papercast-community/main/assets/img/langchain_chain.png"
// }
// }
// },
// {
// "id": "papercast-aeneas",
// "name": "Aeneas",
// "author": "papercast-dev",
// "description": "Aeneas",
// "type": "processor",
// "repo": "papercast-dev/papercast-aeneas"
// },
// {
// "id": "papercast-coqui-tts",
// "name": "Coqui TTS",
// "author": "papercast-dev",
// "description": "Coqui TTS",
// "type": "processor",
// "repo": "papercast-dev/papercast-coqui-tts"
// },
{
"id": "papercast-grobid",
"name": "GROBID",
"author": "papercast-dev",
"description": "GROBID",
"type": "processor",
"repo": "papercast-dev/papercast-grobid",
"contributes": {
"papercast.processors.GROBIDProcessor": {
"input_types": {
"pdf": "papercast.types.PDFFile"
},
"output_types": {
"title": "str",
"authors": "List",
"doi": "str",
"description": "str",
"abstract": "str",
"text": "str",
"figures": "List[CroppedPage]",
"equations": "List[CroppedPage]"
}
}
}
},
// {
// "id": "papercast-gtts",
// "name": "Google TTS",
// "author": "papercast-dev",
// "description": "Google TTS",
// "type": "processor",
// "repo": "papercast-dev/papercast-gtts"
// },
// {
// "id": "papercast-polly",
// "name": "AWS Polly TTS",
// "author": "papercast-dev",
// "description": "AWS Polly TTS",
// "type": "processor",
// "repo": "papercast-dev/papercast-polly"
// },
{
"id": "papercast-say",
"name": "Say",
"author": "papercast-dev",
"description": "Say",
"type": "processor",
"repo": "papercast-dev/papercast-say"
},
{
"id": "papercast-github-pages-podcast",
"name": "GitHub Pages Podcast",
"author": "papercast-dev",
"description": "GitHub Pages Podcast",
"type": "publisher",
"repo": "papercast-dev/papercast-github-pages-podcast"
}
]