Msp taishi-i commited on
Commit
9341278
·
0 Parent(s):

Duplicate from taishi-i/awesome-ChatGPT-repositories-search

Browse files

Co-authored-by: Taishi Ikeda <[email protected]>

.gitattributes ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Awesome ChatGPT Repositories Search
3
+ emoji: 🏢
4
+ colorFrom: red
5
+ colorTo: blue
6
+ sdk: streamlit
7
+ sdk_version: 1.17.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: mit
11
+ duplicated_from: taishi-i/awesome-ChatGPT-repositories-search
12
+ ---
13
+
14
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import difflib
2
+ import json
3
+
4
+ import numpy as np
5
+ import streamlit as st
6
+ from pyserini.search.lucene import LuceneSearcher
7
+
8
+
9
+ def read_json(file_name):
10
+ with open(file_name, "r") as f:
11
+ json_data = json.load(f)
12
+ return json_data
13
+
14
+
15
+ class SearchApplication:
16
+ def __init__(self):
17
+ self.title = "Awesome ChatGPT repositories search"
18
+
19
+ self.set_page_config()
20
+ self.searcher = self.set_searcher()
21
+
22
+ st.header(self.title)
23
+ col1, col2 = st.columns(2)
24
+ with col1:
25
+ self.query = st.text_input("Search English words", value="")
26
+
27
+ with col2:
28
+ st.write("#")
29
+ self.search_button = st.button("🔎")
30
+
31
+ st.caption(
32
+ "You can search for open-source software from [500+ "
33
+ " repositories](https://github.com/taishi-i/awesome-ChatGPT-repositories)."
34
+ )
35
+ st.write("#")
36
+
37
+ candidate_words_file = "candidate_words.json"
38
+ candidate_words_json = read_json(candidate_words_file)
39
+ self.candidate_words = candidate_words_json["candidate_words"]
40
+
41
+ self.show_popular_words()
42
+ self.show_search_results()
43
+
44
+ def set_page_config(self):
45
+ st.set_page_config(
46
+ page_title=self.title,
47
+ page_icon="😎",
48
+ layout="centered",
49
+ )
50
+
51
+ def set_searcher(self):
52
+ searcher = LuceneSearcher("indexes/docs")
53
+ return searcher
54
+
55
+ def show_popular_words(self):
56
+ st.caption("Popular words")
57
+
58
+ word1, word2, word3, word4, word5, word6 = st.columns(6)
59
+ with word1:
60
+ button1 = st.button("Prompt")
61
+ if button1:
62
+ self.query = "prompt"
63
+
64
+ with word2:
65
+ button2 = st.button("Chatbot")
66
+ if button2:
67
+ self.query = "chatbot"
68
+
69
+ with word3:
70
+ button3 = st.button("Langchain")
71
+ if button3:
72
+ self.query = "langchain"
73
+
74
+ with word4:
75
+ button4 = st.button("Extension")
76
+ if button4:
77
+ self.query = "extension"
78
+
79
+ with word5:
80
+ button5 = st.button("LLMs")
81
+ if button5:
82
+ self.query = "llms"
83
+
84
+ with word6:
85
+ button6 = st.button("API")
86
+ if button6:
87
+ self.query = "api"
88
+
89
+ def show_search_results(self):
90
+ if self.query or self.search_button:
91
+ st.write("#")
92
+
93
+ search_results = self.searcher.search(self.query, k=500)
94
+ num_search_results = len(search_results)
95
+ st.write(f"A total of {num_search_results} repositories found.")
96
+
97
+ if num_search_results > 0:
98
+
99
+ json_search_results = []
100
+ for result in search_results:
101
+ json_data = json.loads(result.raw)
102
+ json_search_results.append(json_data)
103
+
104
+ for json_data in sorted(
105
+ json_search_results, key=lambda x: x["freq"], reverse=True
106
+ ):
107
+
108
+ description = json_data["description"]
109
+ url = json_data["url"]
110
+ project_name = json_data["project_name"]
111
+
112
+ st.write("---")
113
+ st.subheader(f"[{project_name}]({url})")
114
+ st.write(description)
115
+
116
+ info = []
117
+ language = json_data["language"]
118
+ if language is not None and len(language) > 0:
119
+ info.append(language)
120
+ else:
121
+ info.append("Laugage: Unkwown")
122
+
123
+ license = json_data["license"]
124
+ if license is not None:
125
+ info.append(license["name"])
126
+ else:
127
+ info.append("License: Unkwown")
128
+
129
+ st.caption(" / ".join(info))
130
+
131
+ else:
132
+
133
+ if len(self.query) > 0:
134
+ scores = []
135
+ for candidate_word in self.candidate_words:
136
+ score = difflib.SequenceMatcher(
137
+ None, self.query, candidate_word
138
+ ).ratio()
139
+ scores.append(score)
140
+
141
+ num_candidate_words = 6
142
+
143
+ indexes = np.argsort(scores)[::-1][:num_candidate_words]
144
+ suggestions = [self.candidate_words[i] for i in indexes]
145
+ suggestions = sorted(
146
+ set(suggestions), key=suggestions.index
147
+ )
148
+ st.caption("Suggestions")
149
+ for i, word in enumerate(suggestions, start=1):
150
+ st.write(f"{i}: {word}")
151
+
152
+
153
+ def main():
154
+ SearchApplication()
155
+
156
+
157
+ if __name__ == "__main__":
158
+ main()
candidate_words.json ADDED
@@ -0,0 +1,775 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "candidate_words": [
3
+ "allow",
4
+ "enabling",
5
+ "docs",
6
+ "giving",
7
+ "interesting",
8
+ "things",
9
+ "artificial",
10
+ "intelligence",
11
+ "developed",
12
+ "friendly",
13
+ "slack",
14
+ "webpage",
15
+ "videos",
16
+ "communicate",
17
+ "structured",
18
+ "discord",
19
+ "ask",
20
+ "general",
21
+ "papers",
22
+ "lecture",
23
+ "notebooks",
24
+ "engineering",
25
+ "promptr",
26
+ "dynamically",
27
+ "parse",
28
+ "apply",
29
+ "included",
30
+ "purposes",
31
+ "creative",
32
+ "gpt4",
33
+ "starting",
34
+ "efficiency",
35
+ "create",
36
+ "siri",
37
+ "continuous",
38
+ "chain",
39
+ "created",
40
+ "want",
41
+ "23",
42
+ "switch",
43
+ "oriented",
44
+ "branch",
45
+ "personalized",
46
+ "taking",
47
+ "notes",
48
+ "product",
49
+ "folks",
50
+ "sentence",
51
+ "word",
52
+ "storage",
53
+ "experiences",
54
+ "subtitles",
55
+ "developers",
56
+ "jailbreak",
57
+ "stories",
58
+ "systems",
59
+ "kubernetes",
60
+ "issues",
61
+ "having",
62
+ "con",
63
+ "en",
64
+ "gui",
65
+ "moderation",
66
+ "summarizer",
67
+ "wechat",
68
+ "example",
69
+ "integrate",
70
+ "databricks",
71
+ "repl",
72
+ "basic",
73
+ "trading",
74
+ "continuously",
75
+ "bots",
76
+ "teach",
77
+ "phind.com",
78
+ "chat.openai.com",
79
+ "etc",
80
+ "speaker",
81
+ "multilingual",
82
+ "wait",
83
+ "pdf",
84
+ "corpus",
85
+ "talk",
86
+ "deploy",
87
+ "reflection",
88
+ "state",
89
+ "art",
90
+ "website",
91
+ "tweets",
92
+ "specified",
93
+ "twitter",
94
+ "post",
95
+ "fixed",
96
+ "comment",
97
+ "resource",
98
+ "center",
99
+ "network",
100
+ "state",
101
+ "exploring",
102
+ "macos",
103
+ "edits",
104
+ "studio",
105
+ "sample",
106
+ "js",
107
+ "backed",
108
+ "filesystem",
109
+ "example",
110
+ "hackathon",
111
+ "interact",
112
+ "voice",
113
+ "gptchat",
114
+ "driven",
115
+ "consumer",
116
+ "hardware",
117
+ "aims",
118
+ "provide",
119
+ "stream",
120
+ "3d",
121
+ "highlighting",
122
+ "execution",
123
+ "presets",
124
+ "joy",
125
+ "rasa",
126
+ "built",
127
+ "fastapi",
128
+ "figmachain",
129
+ "html",
130
+ "css",
131
+ "interactive",
132
+ "starter",
133
+ "find",
134
+ "ida",
135
+ "@ykdojo",
136
+ "decompilation",
137
+ "user",
138
+ "coming",
139
+ "soon",
140
+ "suite",
141
+ "add",
142
+ "endpoints",
143
+ "urls",
144
+ "intelligence",
145
+ "management",
146
+ "providers",
147
+ "versatile",
148
+ "bringing",
149
+ "browsers",
150
+ "runs",
151
+ "cool",
152
+ "@langchainai",
153
+ "snippets",
154
+ "session",
155
+ "jupyter",
156
+ "stable",
157
+ "jupyter",
158
+ "ipython",
159
+ "chrome",
160
+ "generates",
161
+ "box",
162
+ "minimal",
163
+ "google",
164
+ "manifest",
165
+ "v3",
166
+ "summary",
167
+ "vscode",
168
+ "browser",
169
+ "translation",
170
+ "obsidian",
171
+ "enhance",
172
+ "engines",
173
+ "friends",
174
+ "vim",
175
+ "neovim",
176
+ "assemble",
177
+ "experiment",
178
+ "ts",
179
+ "human",
180
+ "powered",
181
+ "perform",
182
+ "vulnerabilities",
183
+ "list",
184
+ "controls",
185
+ "metatrader",
186
+ "connect",
187
+ "softly",
188
+ "reference",
189
+ "tokens",
190
+ "tool",
191
+ "complex",
192
+ "agent",
193
+ "advanced",
194
+ "processing",
195
+ "automate",
196
+ "required",
197
+ "token",
198
+ "giving",
199
+ "nmap",
200
+ "modules",
201
+ "great",
202
+ "memories",
203
+ "module",
204
+ "xml",
205
+ "shows",
206
+ "main",
207
+ "purpose",
208
+ "requests",
209
+ "impressive",
210
+ "toolkit",
211
+ "converts",
212
+ "prepare",
213
+ "msg",
214
+ "hook",
215
+ "client",
216
+ "feature",
217
+ "weight",
218
+ "database",
219
+ "reliable",
220
+ "goal",
221
+ "online",
222
+ "feedback",
223
+ "palm",
224
+ "architecture",
225
+ "transformer",
226
+ "multimodal",
227
+ "stay",
228
+ "transformers",
229
+ "neural",
230
+ "iclr",
231
+ "retrieval",
232
+ "pytorch",
233
+ "flash",
234
+ "gptq",
235
+ "quantization",
236
+ "adapter",
237
+ "pre",
238
+ "apache",
239
+ "2.0",
240
+ "implementations",
241
+ "distilbert",
242
+ "stablelm",
243
+ "para",
244
+ "30",
245
+ "backend",
246
+ "microsoft",
247
+ "biomedical",
248
+ "literature",
249
+ "train",
250
+ "gpt2",
251
+ "integrated",
252
+ "bilingual",
253
+ "benchmark",
254
+ "citations",
255
+ "quantized",
256
+ "llms",
257
+ "fine",
258
+ "emails",
259
+ "camel",
260
+ "communicative",
261
+ "mind",
262
+ "exploration",
263
+ "society",
264
+ "problem",
265
+ "blog",
266
+ "reading",
267
+ "languages",
268
+ "vision",
269
+ "project",
270
+ "subtitle",
271
+ "transform",
272
+ "json",
273
+ "world",
274
+ "best",
275
+ "led",
276
+ "evaluation",
277
+ "predict",
278
+ "json",
279
+ "description",
280
+ "translate",
281
+ "op",
282
+ "upload",
283
+ "locally",
284
+ "locally",
285
+ "tuned",
286
+ "style",
287
+ "second",
288
+ "flask",
289
+ "nice",
290
+ "following",
291
+ "github",
292
+ "siri",
293
+ "i.e.",
294
+ "question",
295
+ "privately",
296
+ "explain",
297
+ "neuron",
298
+ "explanation",
299
+ "visualization",
300
+ "galactica",
301
+ "external",
302
+ "inference",
303
+ "names",
304
+ "control",
305
+ "completion",
306
+ "hugging",
307
+ "face",
308
+ "supported",
309
+ "transform",
310
+ "blip2",
311
+ "grit",
312
+ "@openai",
313
+ "port",
314
+ "mozilla",
315
+ "directory",
316
+ "pure",
317
+ "package",
318
+ "benchmarks",
319
+ "menubar",
320
+ "app",
321
+ "dall·e",
322
+ "automated",
323
+ "remote",
324
+ "access",
325
+ "talking",
326
+ "fastest",
327
+ "medium",
328
+ "sized",
329
+ "gpts",
330
+ "networks",
331
+ "fast",
332
+ "flexible",
333
+ "speech",
334
+ "layer",
335
+ "web",
336
+ "talk",
337
+ "bypass",
338
+ "effective",
339
+ "update",
340
+ "visual",
341
+ "dl",
342
+ "deep",
343
+ "pytorch",
344
+ "javascript",
345
+ "high",
346
+ "server",
347
+ "flutter",
348
+ "room",
349
+ "profile",
350
+ "automatically",
351
+ "notification",
352
+ "quality",
353
+ "gt",
354
+ "effects",
355
+ "vosviewer",
356
+ "chinese",
357
+ "curated",
358
+ "includes",
359
+ "curated",
360
+ "apis",
361
+ "gpt4",
362
+ "read",
363
+ "summarize",
364
+ "youtube",
365
+ "self",
366
+ "mode",
367
+ "blender",
368
+ "latest",
369
+ "2023",
370
+ "generate",
371
+ "foundation",
372
+ "makes",
373
+ "learners",
374
+ "technology",
375
+ "w/",
376
+ "generative",
377
+ "reverse",
378
+ "message",
379
+ "game",
380
+ "page",
381
+ "productivity",
382
+ "javascript",
383
+ "prompts",
384
+ "figma",
385
+ "building",
386
+ "creating",
387
+ "useful",
388
+ "complete",
389
+ "light",
390
+ "bug",
391
+ "bounty",
392
+ "apple",
393
+ "speed",
394
+ "correct",
395
+ "unofficial",
396
+ "custom",
397
+ "machine",
398
+ "similar",
399
+ "proof",
400
+ "concept",
401
+ "agents",
402
+ "functions",
403
+ "let",
404
+ "hours",
405
+ "speech",
406
+ "autogpt",
407
+ "solution",
408
+ "human",
409
+ "test",
410
+ "comments",
411
+ "designed",
412
+ "issue",
413
+ "history",
414
+ "experience",
415
+ "error",
416
+ "implemented",
417
+ "langchain",
418
+ "typescript",
419
+ "projects",
420
+ "self",
421
+ "hosted",
422
+ "compatible",
423
+ "cpu",
424
+ "minimal",
425
+ "detection",
426
+ "agi",
427
+ "response",
428
+ "streaming",
429
+ "platform",
430
+ "llamaindex",
431
+ "input",
432
+ "free",
433
+ "lets",
434
+ "google",
435
+ "decompiler",
436
+ "burp",
437
+ "instruction",
438
+ "system",
439
+ "supports",
440
+ "inside",
441
+ "server",
442
+ "superpowers",
443
+ "notebook",
444
+ "diffusion",
445
+ "link",
446
+ "editor",
447
+ "development",
448
+ "openai",
449
+ "generator",
450
+ "deploy",
451
+ "accomplish",
452
+ "building",
453
+ "js",
454
+ "experimental",
455
+ "emacs",
456
+ "ask",
457
+ "scan",
458
+ "source",
459
+ "babyagi",
460
+ "copilot",
461
+ "program",
462
+ "powerful",
463
+ "qgis",
464
+ "reverse",
465
+ "faster",
466
+ "shell",
467
+ "english",
468
+ "integrate",
469
+ "writes",
470
+ "native",
471
+ "php",
472
+ "multiple",
473
+ "quick",
474
+ "sources",
475
+ "automatic",
476
+ "rlhf",
477
+ "reinforcement",
478
+ "chain",
479
+ "reasoning",
480
+ "pre",
481
+ "nanogpt",
482
+ "licensed",
483
+ "c++",
484
+ "bert",
485
+ "answering",
486
+ "base",
487
+ "deep",
488
+ "stanford",
489
+ "generating",
490
+ "distributed",
491
+ "transformer",
492
+ "game",
493
+ "seconds",
494
+ "scale",
495
+ "finetuning",
496
+ "long",
497
+ "amp",
498
+ "activations",
499
+ "index",
500
+ "examples",
501
+ "llama",
502
+ "bindings",
503
+ "clone",
504
+ "check",
505
+ "simplest",
506
+ "machine",
507
+ "macos",
508
+ "efficient",
509
+ "configure",
510
+ "demos",
511
+ "applications",
512
+ "chatgpt",
513
+ "cases",
514
+ "security",
515
+ "format",
516
+ "text",
517
+ "langchain",
518
+ "responses",
519
+ "templates",
520
+ "official",
521
+ "engineered",
522
+ "images",
523
+ "share",
524
+ "software",
525
+ "play",
526
+ "trained",
527
+ "telegram",
528
+ "discord",
529
+ "swift",
530
+ "platform",
531
+ "generating",
532
+ "gpt-3.5",
533
+ "cloudflare",
534
+ "running",
535
+ "llama.cpp",
536
+ "sdk",
537
+ "ios",
538
+ "helps",
539
+ "developers",
540
+ "next.js",
541
+ "quickly",
542
+ "plugin",
543
+ "easily",
544
+ "queries",
545
+ "scale",
546
+ "directly",
547
+ "automatically",
548
+ "extension",
549
+ "results",
550
+ "plugins",
551
+ "nlp",
552
+ "programming",
553
+ "analysis",
554
+ "autogpt",
555
+ "auto",
556
+ "proxy",
557
+ "dns",
558
+ "node.js",
559
+ "translate",
560
+ "library",
561
+ "tuned",
562
+ "deepspeed",
563
+ "ml",
564
+ "performance",
565
+ "instruction",
566
+ "dataset",
567
+ "favorite",
568
+ "llm",
569
+ "package",
570
+ "power",
571
+ "alternative",
572
+ "demo",
573
+ "apps",
574
+ "resources",
575
+ "robot",
576
+ "engineering",
577
+ "chatbot",
578
+ "capabilities",
579
+ "codebase",
580
+ "bing",
581
+ "image",
582
+ "desktop",
583
+ "turbo",
584
+ "conversations",
585
+ "fine",
586
+ "released",
587
+ "set",
588
+ "interact",
589
+ "style",
590
+ "conversation",
591
+ "telegram",
592
+ "gpu",
593
+ "time",
594
+ "easy",
595
+ "review",
596
+ "langchain",
597
+ "dall",
598
+ "visual",
599
+ "write",
600
+ "documentation",
601
+ "git",
602
+ "android",
603
+ "application",
604
+ "react",
605
+ "framework",
606
+ "lines",
607
+ "agents",
608
+ "interacting",
609
+ "unofficial",
610
+ "github",
611
+ "simple",
612
+ "implementation",
613
+ "official",
614
+ "gpt-2",
615
+ "attention",
616
+ "tuning",
617
+ "de",
618
+ "fast",
619
+ "contains",
620
+ "backend",
621
+ "gpt-3",
622
+ "rust",
623
+ "python",
624
+ "way",
625
+ "desktop",
626
+ "optimization",
627
+ "codes",
628
+ "users",
629
+ "community",
630
+ "experimental",
631
+ "collection",
632
+ "documents",
633
+ "gpt3",
634
+ "knowledge",
635
+ "key",
636
+ "version",
637
+ "work",
638
+ "video",
639
+ "gpt4all",
640
+ "information",
641
+ "attempt",
642
+ "application",
643
+ "enables",
644
+ "whisper",
645
+ "support",
646
+ "script",
647
+ "generated",
648
+ "auto",
649
+ "file",
650
+ "content",
651
+ "access",
652
+ "run",
653
+ "real",
654
+ "plugins",
655
+ "shell",
656
+ "wrapper",
657
+ "alpaca",
658
+ "unity",
659
+ "fully",
660
+ "tools",
661
+ "better",
662
+ "awesome",
663
+ "including",
664
+ "built",
665
+ "integration",
666
+ "prompt",
667
+ "files",
668
+ "supports",
669
+ "mac",
670
+ "linux",
671
+ "gpt-3.5",
672
+ "100",
673
+ "build",
674
+ "local",
675
+ "learning",
676
+ "paper",
677
+ "answers",
678
+ "agent",
679
+ "need",
680
+ "memory",
681
+ "chrome",
682
+ "transformers",
683
+ "inference",
684
+ "free",
685
+ "research",
686
+ "generation",
687
+ "uses",
688
+ "learning",
689
+ "assistant",
690
+ "api",
691
+ "scripts",
692
+ "pdf",
693
+ "provides",
694
+ "list",
695
+ "model",
696
+ "build",
697
+ "gpt-4",
698
+ "large",
699
+ "questions",
700
+ "single",
701
+ "repository",
702
+ "voice",
703
+ "create",
704
+ "ui",
705
+ "windows",
706
+ "messages",
707
+ "written",
708
+ "allows",
709
+ "natural",
710
+ "chat",
711
+ "implementation",
712
+ "new",
713
+ "project",
714
+ "use",
715
+ "search",
716
+ "tasks",
717
+ "large",
718
+ "run",
719
+ "code",
720
+ "commands",
721
+ "autonomous",
722
+ "training",
723
+ "gpt",
724
+ "models",
725
+ "open",
726
+ "commit",
727
+ "llama",
728
+ "repo",
729
+ "prompt",
730
+ "prompts",
731
+ "cli",
732
+ "interface",
733
+ "line",
734
+ "terminal",
735
+ "chatbot",
736
+ "help",
737
+ "app",
738
+ "simple",
739
+ "command",
740
+ "browser",
741
+ "text",
742
+ "generate",
743
+ "client",
744
+ "library",
745
+ "language",
746
+ "like",
747
+ "data",
748
+ "plugin",
749
+ "extension",
750
+ "use",
751
+ "llms",
752
+ "bot",
753
+ "web",
754
+ "gpt-4",
755
+ "llm",
756
+ "tool",
757
+ "powered",
758
+ "gpt-3",
759
+ "python",
760
+ "source",
761
+ "open",
762
+ "chat",
763
+ "chatgpt",
764
+ "models",
765
+ "model",
766
+ "code",
767
+ "based",
768
+ "language",
769
+ "gpt",
770
+ "ai",
771
+ "api",
772
+ "openai",
773
+ "chatgpt"
774
+ ]
775
+ }
indexes/docs/_f.fdm ADDED
Binary file (157 Bytes). View file
 
indexes/docs/_f.fdt ADDED
Binary file (105 kB). View file
 
indexes/docs/_f.fdx ADDED
Binary file (82 Bytes). View file
 
indexes/docs/_f.fnm ADDED
Binary file (343 Bytes). View file
 
indexes/docs/_f.nvd ADDED
Binary file (748 Bytes). View file
 
indexes/docs/_f.nvm ADDED
Binary file (103 Bytes). View file
 
indexes/docs/_f.si ADDED
Binary file (522 Bytes). View file
 
indexes/docs/_f.tvd ADDED
Binary file (48.2 kB). View file
 
indexes/docs/_f.tvm ADDED
Binary file (162 Bytes). View file
 
indexes/docs/_f.tvx ADDED
Binary file (98 Bytes). View file
 
indexes/docs/_f_Lucene90_0.doc ADDED
Binary file (9.89 kB). View file
 
indexes/docs/_f_Lucene90_0.dvd ADDED
Binary file (2.72 kB). View file
 
indexes/docs/_f_Lucene90_0.dvm ADDED
Binary file (171 Bytes). View file
 
indexes/docs/_f_Lucene90_0.pos ADDED
Binary file (9.49 kB). View file
 
indexes/docs/_f_Lucene90_0.tim ADDED
Binary file (29.2 kB). View file
 
indexes/docs/_f_Lucene90_0.tip ADDED
Binary file (810 Bytes). View file
 
indexes/docs/_f_Lucene90_0.tmd ADDED
Binary file (275 Bytes). View file
 
indexes/docs/segments_h ADDED
Binary file (154 Bytes). View file
 
indexes/docs/write.lock ADDED
File without changes
packages.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ openjdk-11-jdk
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ pyserini
2
+ faiss-cpu
3
+ torch