taishi-i commited on
Commit
2d0606c
1 Parent(s): e613efe

update index files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. app.py +4 -7
  2. candidate_words.json +1042 -704
  3. indexes/docs/_0.fdm +0 -0
  4. indexes/docs/_0.fdt +0 -0
  5. indexes/docs/_0.fdx +0 -0
  6. indexes/docs/{_1g.fnm → _0.fnm} +0 -0
  7. indexes/docs/_0.nvd +0 -0
  8. indexes/docs/_0.nvm +0 -0
  9. indexes/docs/_0.si +0 -0
  10. indexes/docs/_0.tvd +0 -0
  11. indexes/docs/_0.tvm +0 -0
  12. indexes/docs/_0.tvx +0 -0
  13. indexes/docs/_0_Lucene90_0.doc +0 -0
  14. indexes/docs/{_1g_Lucene90_0.dvd → _0_Lucene90_0.dvd} +0 -0
  15. indexes/docs/_0_Lucene90_0.dvm +0 -0
  16. indexes/docs/_0_Lucene90_0.pos +0 -0
  17. indexes/docs/_0_Lucene90_0.tim +0 -0
  18. indexes/docs/_0_Lucene90_0.tip +0 -0
  19. indexes/docs/_0_Lucene90_0.tmd +0 -0
  20. indexes/docs/_1.fdm +0 -0
  21. indexes/docs/_1.fdt +0 -0
  22. indexes/docs/_1.fdx +0 -0
  23. indexes/docs/_1.fnm +0 -0
  24. indexes/docs/_1.nvd +0 -0
  25. indexes/docs/_1.nvm +0 -0
  26. indexes/docs/_1.si +0 -0
  27. indexes/docs/_1.tvd +0 -0
  28. indexes/docs/_1.tvm +0 -0
  29. indexes/docs/_1.tvx +0 -0
  30. indexes/docs/_1_Lucene90_0.doc +0 -0
  31. indexes/docs/_1_Lucene90_0.dvd +0 -0
  32. indexes/docs/_1_Lucene90_0.dvm +0 -0
  33. indexes/docs/_1_Lucene90_0.pos +0 -0
  34. indexes/docs/_1_Lucene90_0.tim +0 -0
  35. indexes/docs/_1_Lucene90_0.tip +0 -0
  36. indexes/docs/_1_Lucene90_0.tmd +0 -0
  37. indexes/docs/_1g.fdm +0 -0
  38. indexes/docs/_1g.fdt +0 -0
  39. indexes/docs/_1g.fdx +0 -0
  40. indexes/docs/_1g.nvd +0 -0
  41. indexes/docs/_1g.nvm +0 -0
  42. indexes/docs/_1g.si +0 -0
  43. indexes/docs/_1g.tvd +0 -0
  44. indexes/docs/_1g.tvm +0 -0
  45. indexes/docs/_1g.tvx +0 -0
  46. indexes/docs/_1g_Lucene90_0.doc +0 -0
  47. indexes/docs/_1g_Lucene90_0.dvm +0 -0
  48. indexes/docs/_1g_Lucene90_0.pos +0 -0
  49. indexes/docs/_1g_Lucene90_0.tim +0 -0
  50. indexes/docs/_1g_Lucene90_0.tip +0 -0
app.py CHANGED
@@ -29,7 +29,7 @@ class SearchApplication:
29
  self.search_button = st.button("🔎")
30
 
31
  st.caption(
32
- "You can search for open-source software from [900+ "
33
  " repositories](https://github.com/taishi-i/awesome-ChatGPT-repositories)."
34
  )
35
  st.write("#")
@@ -95,7 +95,6 @@ class SearchApplication:
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)
@@ -104,7 +103,6 @@ class SearchApplication:
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"]
@@ -121,15 +119,14 @@ class SearchApplication:
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:
 
29
  self.search_button = st.button("🔎")
30
 
31
  st.caption(
32
+ "You can search for open-source software from [1250+ "
33
  " repositories](https://github.com/taishi-i/awesome-ChatGPT-repositories)."
34
  )
35
  st.write("#")
 
95
  st.write(f"A total of {num_search_results} repositories found.")
96
 
97
  if num_search_results > 0:
 
98
  json_search_results = []
99
  for result in search_results:
100
  json_data = json.loads(result.raw)
 
103
  for json_data in sorted(
104
  json_search_results, key=lambda x: x["freq"], reverse=True
105
  ):
 
106
  description = json_data["description"]
107
  url = json_data["url"]
108
  project_name = json_data["project_name"]
 
119
  info.append("Laugage: Unkwown")
120
 
121
  license = json_data["license"]
122
+ if license is None:
 
 
123
  info.append("License: Unkwown")
124
+ else:
125
+ info.append(license)
126
 
127
  st.caption(" / ".join(info))
128
 
129
  else:
 
130
  if len(self.query) > 0:
131
  scores = []
132
  for candidate_word in self.candidate_words:
candidate_words.json CHANGED
@@ -1,168 +1,180 @@
1
  {
2
  "candidate_words": [
 
 
3
  "allow",
4
  "enabling",
5
- "alternatives",
6
- "interesting",
7
- "artificial",
8
- "updated",
 
 
 
 
9
  "unlock",
10
  "train",
11
- "webpage",
12
- "join",
13
- "discord",
14
- "ask",
 
 
 
 
 
 
15
  "lecture",
 
 
 
 
 
 
 
 
16
  "promptr",
17
  "dynamically",
18
  "parse",
19
  "apply",
20
  "changes",
21
- "included",
22
  "purposes",
23
- "switching",
 
24
  "creative",
 
25
  "starting",
26
- "send",
27
- "replicate",
28
- "efficiency",
29
- "siri",
30
- "save",
31
- "created",
32
- "23",
33
- "switch",
34
- "oriented",
35
- "rewrite",
36
- "engineer",
37
- "product",
38
- "brainstorming",
39
  "folks",
 
40
  "sentence",
41
  "dan",
42
- "storage",
43
- "subtitles",
 
 
44
  "吴恩达《chatgpt",
45
  "jailbreak",
46
- "updates",
47
  "short",
48
  "term",
49
  "benchmarking",
50
  "webui",
51
  "dynamic",
52
- "@langchainai",
53
  "descriptive",
54
  "understanding",
55
- "million",
56
  "creates",
57
  "test",
58
- "notes",
 
59
  "tests",
 
60
  "thought",
 
61
  "optimize",
62
- "good",
63
  "autohotkey",
64
  "share",
65
- "csv",
66
  "qa",
67
- "chains",
68
- "aigc",
69
- "vector",
70
  "personal",
71
  "devices",
72
- "testing",
73
- "stories",
74
- "dialogue",
75
- "party",
76
- "issues",
77
- "con",
78
- "en",
79
- "robust",
80
- "moderation",
81
- "youtube",
82
- "summarizer",
 
 
 
83
  "wechat",
84
- "example",
85
- "integrate",
 
 
 
 
 
 
 
86
  "databricks",
 
 
 
 
 
87
  "repl",
88
  "querying",
89
- "summarizing",
90
- "basic",
 
 
 
 
 
 
 
 
91
  "trading",
92
  "predictive",
 
93
  "teach",
94
- "ai",
 
 
 
 
 
 
95
  "phind.com",
96
  "chat.openai.com",
97
- "speaker",
 
 
98
  "multilingual",
99
- "wait",
100
  "contents",
101
  "pdf",
102
- "corpus",
103
- "leverage",
104
- "workers",
105
- "ease",
106
- "reflection",
107
- "specified",
108
- "fixed",
109
- "comment",
110
- "fetch",
111
- "resource",
112
- "center",
113
- "policy",
114
- "wechat",
115
- "network",
116
- "state",
117
- "exploring",
118
- "website",
119
- "macos",
120
- "edits",
121
- "studio",
122
- "js",
123
- "backed",
124
- "hopefully",
125
- "voice",
126
- "gptchat",
127
  "drop",
128
  "consumer",
 
129
  "hardware",
130
  "ggml",
131
- "aims",
132
- "3d",
133
- "interacts",
134
- "highlighting",
135
  "joy",
136
  "rasa",
137
  "figmachain",
138
- "html",
139
  "starter",
140
  "right",
141
  "rails",
142
- "console",
143
  "transcripts",
144
  "openchat",
145
- "summarization",
146
- "concise",
147
- "meaningful",
148
  "combines",
149
  "pretrained",
150
  "encoder",
151
  "ethereum",
 
152
  "labs",
153
  "adds",
154
- "modes",
155
  "endless",
156
- "network",
157
  "apps",
158
- "framework",
 
159
  "solving",
160
  "risk",
161
  "convert",
162
  "falcon",
163
- "通义千问",
164
- "word",
165
- "user",
166
  "interfaces",
167
  "drug",
168
  "cluster",
@@ -171,79 +183,96 @@
171
  "frontend",
172
  "free",
173
  "lightweight",
174
- "implement",
175
  "manage",
176
  "variables",
177
- "jetpack",
 
 
178
  "version",
179
  "calling",
180
  "ensure",
181
  "reducing",
 
182
  "applications",
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  "asking",
184
- "ida",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  "@ykdojo",
 
 
 
 
 
 
186
  "decompilation",
187
  "textual",
 
 
188
  "coming",
189
  "soon",
 
190
  "suite",
191
- "discover",
192
  "endpoints",
 
 
 
 
 
193
  "artificial",
194
  "browsing",
195
- "browsers",
196
  "cool",
197
  "@langchainai",
198
- "minutes",
199
  "execute",
200
  "session",
201
- "jupyter",
202
- "ipython",
203
- "chrome",
204
- "box",
205
- "pages",
206
- "的文本翻译、文本润色、语法纠错",
207
- "bob",
208
- "docs",
209
- "add",
210
- "manual",
211
- "summary",
212
- "manifest",
213
- "v3",
214
- "cross",
215
- "note",
216
- "logseq",
217
- "engines",
218
- "responsive",
219
- "friends",
220
- "assemble",
221
- "experiment",
222
- "start",
223
- "ts",
224
- "vulnerabilities",
225
- "list",
226
  "controls",
227
  "metatrader",
228
  "traders",
229
  "softly",
230
- "reference",
231
  "wallet",
232
  "tokens",
233
  "solutions",
234
  "utilizes",
235
- "processing",
236
- "automate",
237
- "current",
238
  "stores",
239
  "msbuild",
 
240
  "independently",
 
241
  "analyzer",
242
  "crypto",
243
  "instructions",
244
  "real",
245
  "detection",
246
- "easiest",
247
  "choice",
248
  "cost",
249
  "load",
@@ -254,52 +283,57 @@
254
  "specific",
255
  "clerk",
256
  "vs",
 
257
  "serves",
258
  "ons",
259
  "extensions",
260
  "assistance",
261
  "freely",
 
262
  "times",
 
 
263
  "enabled",
264
- "windows",
265
- "people",
266
  "helping",
267
- "shortcut",
268
- "enterprise",
269
  "cross",
270
- "docker",
271
  "secure",
 
 
 
272
  "efficiently",
273
- "tracking",
274
- "nmap",
275
- "great",
276
- "memories",
277
- "rest",
278
- "xml",
279
- "tutorial",
280
- "main",
281
  "一键拥有你自己的",
282
  "网页服务",
283
  "click",
284
- "impressive",
285
- "second",
286
- "authentication",
287
- "toolkit",
288
- "converts",
289
  "prepare",
290
  "msg",
291
- "terminal",
292
- "preview",
293
- "feature",
294
- "entire",
295
- "weight",
296
  "reliable",
297
  "result",
298
- "master",
299
- "goal",
 
 
 
 
 
 
 
300
  "delphi",
301
- "log",
302
- "node",
 
 
 
 
 
 
 
303
  "pair",
304
  "readme",
305
  "samples",
@@ -307,207 +341,260 @@
307
  "notebooks",
308
  "chatgpt+midjourney",
309
  "reporting",
310
- "databases",
311
  "capabilities.(智能的通用数据库sql客户端和报表工具",
 
312
  "immediately",
313
  "saas",
 
314
  "super",
315
- "background",
316
- "universal",
317
- "aware",
318
  "tailored",
 
319
  "unleash",
320
  "digestible",
321
  "lightweight",
322
  "extensible",
323
  "runtime",
324
  "startup",
325
- "pretrained",
326
- "parallel",
 
 
 
327
  "networks",
328
- "optimized",
 
329
  "iclr",
330
  "pytorch",
331
  "int8",
332
  "4bit",
333
- "distilbert",
334
- "question",
335
  "stablelm",
 
 
336
  "drag",
337
  "point",
338
  "pure",
339
  "reproduction",
340
  "domain",
341
  "means",
 
 
342
  "30",
 
343
  "tutorials",
 
344
  "microsoft",
345
  "biomedical",
346
- "literature",
 
 
347
  "gpt2",
348
  "ended",
349
- "books",
350
  "bilingual",
 
 
351
  "validation",
 
 
352
  "citations",
 
 
353
  "evaluate",
354
- "llms",
355
- "fine",
356
  "emails",
 
357
  "camel",
358
  "communicative",
359
- "mind",
360
  "exploration",
361
  "society",
362
  "common",
363
  "hallucinations",
364
  "pipeline",
365
- "tasks",
366
- "languages",
367
- "project",
368
  "subtitle",
369
- "transform",
370
- "world",
371
- "led",
372
- "medical",
373
  "predict",
374
- "json",
375
- "description",
376
- "translate",
 
 
 
 
 
 
 
 
377
  "op",
378
  "stack",
379
  "pinecone",
380
  "upload",
381
  "lora",
382
- "ready",
383
- "modified",
384
- "health",
385
- "flask",
386
- "github",
387
- "siri",
388
- "i.e.",
389
  "understand",
390
- "pull",
391
  "context",
392
- "sales",
393
  "explain",
394
  "neuron",
395
  "showing",
396
- "explanation",
397
  "cohere",
398
  "know",
399
- "structured",
400
  "efficient",
401
- "medical",
402
- "unlimited",
403
  "size",
404
  "multithreading",
405
  "evaluating",
406
  "algorithm",
407
- "synthesis",
408
  "integrated",
 
409
  "bias",
410
- "e.g.",
411
  "alignment",
 
412
  "analyzing",
 
413
  "cloud",
414
  "environments",
415
  "mag",
416
  "haystack",
417
  "vpc",
418
- "form",
419
  "meta",
420
  "searching",
421
  "facebook",
422
  "enabling",
423
- "play",
424
  "fun",
425
- "zero",
 
 
 
426
  "translating",
 
427
  "notion",
428
- "proxy",
429
  "experimenting",
430
- "languages",
431
  "rss",
432
- "intelligent",
 
 
 
 
 
 
 
 
 
 
433
  "galactica",
434
  "external",
435
  "names",
 
 
436
  "completion",
437
  "face",
438
- "moss",
 
439
  "blip2",
440
  "grit",
441
- "@openai",
442
- "simpler",
443
- "flow",
444
- "port",
445
  "generativeai",
446
- "original",
447
- "try",
 
 
 
448
  "toolkit",
449
- "代码",
450
- "training",
451
  "gpt4all",
452
  "opencompass",
453
  "wide",
454
- "range",
455
  "llama2",
456
- "news",
 
 
 
 
 
 
 
 
457
  "mozilla",
458
- "pure",
459
  "package",
 
 
 
 
 
 
460
  "benchmarks",
461
- "typed",
462
- "doc",
463
- "sre",
464
- "ey",
465
  "remote",
 
466
  "swiftui",
467
  "ipados",
 
468
  "remaining",
469
- "supercharged",
 
 
 
 
 
 
 
 
470
  "cosmos",
471
  "worker",
 
 
 
 
 
472
  "automatic",
 
473
  "outputs",
474
- "boot",
475
- "实现",
476
- "laravel",
477
- "tailwind",
478
- "site",
479
  "vontigo",
 
480
  "starter",
481
  "golang",
482
- "qq",
483
- "机器人",
484
  "medium",
485
  "sized",
486
- "gpts",
487
  "networks",
488
- "accessible",
489
- "babyagi",
490
- "flexible",
491
- "recognition",
492
- "cloud",
493
- "update",
494
- "dl",
495
- "deep",
496
- "pytorch",
497
  "flutter",
498
  "room",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
499
  "notification",
500
- "quality",
 
501
  "gt",
502
- "搭建的",
503
- "evolution",
504
- "effects",
505
  "vosviewer",
506
- "neox",
 
 
507
  "story",
 
508
  "gpt4company",
509
- "advanced",
510
- "private",
 
 
 
 
 
511
  "review",
512
  "bionicgpt",
513
  "premise",
@@ -515,764 +602,1015 @@
515
  "maintaining",
516
  "strict",
517
  "confidentiality",
518
- "curated",
 
 
 
 
 
 
 
 
 
519
  "keys",
520
- "usage",
521
- "libraries",
522
  "giving",
523
- "intelligence",
524
- "developed",
525
  "mirror",
526
- "continuously",
 
 
 
 
 
 
 
 
527
  "explore",
528
- "related",
529
- "train",
530
- "communicate",
 
 
 
 
531
  "blender",
532
  "structured",
533
- "output",
534
- "magic",
 
 
 
 
 
535
  "shot",
536
  "learners",
537
- "prompting",
538
- "general",
539
- "technology",
540
- "w/",
541
- "audio",
542
  "clone",
543
  "gpt4",
 
544
  "game",
545
- "midjourney",
546
- "figma",
547
- "continuous",
548
- "small",
549
- "complete",
550
- "light",
551
- "branch",
552
- "bug",
553
- "bounty",
554
- "taking",
555
- "speed",
556
  "correct",
557
- "word",
558
  "games",
559
  "50",
560
- "customizable",
 
 
 
561
  "unofficial",
 
562
  "developers",
563
- "useful",
564
  "interactive",
565
  "reasoning",
566
- "task",
567
- "learn",
568
  "introducing",
569
  "systems",
570
- "presets",
571
- "unified",
572
- "requests",
573
- "analyze",
574
- "improve",
575
  "indexing",
 
576
  "tweets",
 
577
  "hugging",
578
  "db",
579
  "rag",
580
- "production",
 
 
 
 
 
 
 
 
 
581
  "having",
582
- "rwkv",
583
- "machine",
584
- "similar",
585
- "proof",
586
- "concept",
587
- "hours",
588
- "speech",
589
- "autogpt",
590
  "human",
591
- "deploy",
 
 
592
  "state",
593
  "art",
594
- "accuracy",
595
- "comments",
596
- "twitter",
 
 
 
 
 
597
  "post",
598
- "issue",
599
  "hackathon",
600
- "driven",
 
 
 
 
 
 
 
 
601
  "replacement",
602
  "cpu",
603
- "stream",
604
  "detection",
605
- "agi",
606
  "built",
607
  "fastapi",
608
- "llamaindex",
609
- "css",
610
- "streamlit",
611
  "slack",
612
  "analysis",
613
  "live",
614
  "transcription",
615
- "level",
616
  "urls",
 
617
  "runs",
618
- "featured",
619
- "vercel",
620
  "utilize",
621
  "arxiv",
622
- "intelligent",
623
  "control",
624
  "ultimate",
625
- "problem",
626
  "stable",
627
  "gradio",
628
  "tuned",
629
  "shows",
630
  "terraform",
 
 
631
  "offline",
632
  "device",
633
- "new",
634
  "uses",
635
  "streaming",
636
- "easily",
 
 
637
  "answer",
638
- "free",
 
 
 
 
 
 
 
639
  "find",
640
- "google",
641
- "decompiler",
642
- "burp",
643
- "intelligence",
644
- "providers",
645
- "day",
646
- "bringing",
647
- "snippets",
648
- "diffusion",
649
  "link",
650
- "summary",
651
- "vim",
652
- "js",
653
  "experimental",
654
  "human",
 
 
 
 
 
 
 
 
 
655
  "scan",
656
- "account",
 
 
 
 
 
657
  "enable",
658
- "source",
659
  "qgis",
660
- "store",
 
 
661
  "talk",
 
662
  "started",
663
  "vulnerability",
664
- "fastest",
665
  "edit",
666
- "seamlessly",
667
  "steroids",
668
- "available",
669
- "plus",
670
- "image",
671
  "ocr",
672
- "export",
 
673
  "cli",
674
  "semantic",
675
  "kernel",
676
- "database",
677
- "speech",
678
- "support",
 
 
679
  "token",
 
680
  "shell",
681
  "giving",
682
- "modules",
683
- "conversational",
684
- "writes",
685
  "hook",
686
- "client",
 
 
 
687
  "single",
688
- "powershell",
689
- "php",
690
  "offers",
691
- "docker",
692
- "general",
 
 
 
 
693
  "nice",
 
694
  "seamless",
695
- "context",
696
- "extract",
697
  "directory",
698
- "high",
699
- "document",
700
- "environment",
701
  "backend",
702
  "server",
703
- "locally",
704
  "rlhf",
705
  "reinforcement",
706
  "feedback",
707
- "multimodal",
708
  "chain",
709
- "reasoning",
710
  "stay",
 
711
  "transformers",
712
  "neural",
 
 
713
  "flash",
714
- "adapter",
715
  "pre",
716
  "apache",
717
- "implementations",
718
- "c++",
719
- "bert",
720
- "para",
721
  "stanford",
 
 
722
  "distributed",
723
- "transformer",
724
- "benchmark",
725
  "seconds",
726
  "channel",
727
  "quantized",
 
 
728
  "scale",
729
- "blog",
730
- "reading",
731
  "finetuning",
732
- "gpt3.5",
733
- "database",
734
- "locally",
735
  "second",
736
- "amp",
737
- "superior",
738
  "activations",
 
739
  "visualization",
 
740
  "dev",
741
- "finetuning",
742
  "algo",
 
743
  "extraction",
744
- "semantic",
745
- "instruct",
746
  "engine",
747
- "enterprise",
748
- "programming",
 
749
  "dall·e",
 
750
  "secure",
751
  "chatglm2",
752
- "llama",
753
- "bindings",
 
 
754
  "simplest",
 
 
 
 
 
 
 
 
 
 
 
755
  "menubar",
756
- "template",
757
- "automated",
758
  "http",
759
- "request",
760
- "spring",
 
 
 
 
 
761
  "bypass",
762
- "function",
 
 
 
763
  "talking",
 
764
  "profile",
765
  "automatically",
 
 
 
 
 
766
  "internal",
767
  "configure",
768
- "supporting",
 
 
 
769
  "cases",
770
- "things",
771
- "engineering",
772
- "papers",
773
- "power",
774
- "slack",
775
- "read",
776
- "foundation",
777
- "makes",
778
  "notebooks",
779
- "message",
780
- "productivity",
781
- "javascript",
782
- "prompts",
783
  "building",
784
- "chain",
785
- "want",
 
 
786
  "template",
 
 
 
787
  "apple",
788
  "personalized",
789
- "notes",
790
- "writing",
791
- "long",
792
- "long",
793
- "supported",
794
- "examples",
795
- "sample",
796
- "check",
797
  "quick",
798
  "neovim",
 
 
799
  "layer",
 
800
  "jupyter",
 
 
 
 
 
 
 
 
 
801
  "telegram",
802
- "gui",
803
  "swift",
804
- "functions",
805
- "let",
806
- "talk",
807
- "website",
808
- "coding",
809
- "sample",
810
- "implemented",
811
  "filesystem",
812
  "example",
 
 
 
 
 
 
 
 
813
  "self",
814
- "provide",
815
- "sdk",
816
- "compose",
817
- "interactive",
818
- "service",
819
- "multimodal",
820
  "summaries",
821
- "functionality",
 
 
822
  "privacy",
823
  "enhance",
824
  "bot",
825
  "supabase",
826
- "inference",
827
- "使用",
 
 
 
828
  "notebook",
829
- "markdown",
830
- "inside",
831
- "superpowers",
832
- "internet",
833
- "minimal",
834
- "editor",
835
- "extension",
836
  "vscode",
837
- "translation",
 
838
  "brings",
839
- "emacs",
840
  "perform",
 
841
  "connect",
842
- "tool",
843
  "babyagi",
844
- "program",
845
- "integrated",
846
  "effective",
847
- "comprehensive",
848
- "architecture",
849
  "fast",
 
850
  "20",
851
- "system",
 
 
 
 
 
 
852
  "faster",
 
853
  "dns",
854
- "node.js",
855
- "module",
856
- "purpose",
857
  "native",
858
- "java",
859
- "online",
860
- "automatic",
861
  "developer",
862
- "markdown",
863
- "service",
864
- "click",
865
  "style",
866
- "transformer",
867
  "deepspeed",
868
- "pre",
 
869
  "nanogpt",
870
  "gptq",
871
  "quantization",
872
  "lora",
 
873
  "2.0",
874
  "licensed",
875
- "answering",
876
  "deep",
877
  "generating",
878
- "game",
 
879
  "favorite",
880
  "json",
881
- "llm",
882
- "question",
883
  "augmented",
884
  "pattern",
885
- "index",
886
- "machine",
887
- "security",
888
- "awesome",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
889
  "interpreter",
890
- "projects",
891
- "format",
892
- "summarize",
 
 
 
 
 
893
  "videos",
894
- "mode",
 
 
895
  "latest",
896
- "responses",
897
- "reverse",
898
- "creating",
899
- "share",
900
- "released",
901
- "set",
902
  "play",
903
- "generation",
904
- "microsoft",
905
- "possible",
 
 
 
 
 
906
  "agents",
907
  "query",
908
- "chatgpt",
909
- "deployment",
 
 
910
  "kubernetes",
911
- "gpt-3.5",
912
- "bots",
913
- "solution",
914
- "turn",
915
  "test",
916
- "assistant",
917
- "error",
918
- "visual",
919
  "documentation",
920
  "typescript",
921
  "interact",
 
922
  "llama.cpp",
923
- "application",
924
- "streaming",
925
  "execution",
 
926
  "generates",
927
  "leaks",
928
- "vision",
929
- "google",
930
- "bard",
931
- "video",
932
  "visual",
933
- "features",
934
- "auto",
935
- "enhanced",
936
- "chatglm",
937
  "plus",
938
- "palm",
939
- "clone",
940
  "interpreter",
941
- "directly",
 
 
 
 
 
 
942
  "retrieval",
943
  "lets",
944
- "queries",
945
- "versatile",
946
- "基于",
947
- "lines",
948
  "browser",
949
- "generator",
950
- "accomplish",
 
951
  "nlp",
952
- "programming",
 
 
 
 
 
 
953
  "copilot",
954
- "agent",
955
- "required",
956
- "datasets",
957
  "transform",
958
  "javascript",
959
  "offering",
960
- "multi",
961
- "reverse",
962
- "library",
 
 
 
 
963
  "tuned",
964
  "ml",
965
- "data",
966
  "cognitive",
 
 
967
  "gpt-3",
 
 
968
  "q&a",
969
- "app",
970
- "desktop",
 
 
 
 
971
  "vue3",
972
- "optimization",
973
  "codes",
974
- "includes",
 
975
  "demos",
976
- "experimental",
977
- "following",
 
 
 
 
 
 
 
 
 
978
  "friendly",
979
- "2023",
980
- "templates",
981
- "create",
982
- "turbo",
983
  "useful",
984
- "complex",
 
 
985
  "ability",
986
- "platform",
987
- "best",
988
- "implementation",
989
- "private",
990
- "gpt4all",
991
- "attempt",
992
- "review",
993
  "git",
 
 
 
994
  "minimal",
995
- "ios",
 
 
 
996
  "helps",
997
- "response",
998
- "advanced",
999
- "supports",
1000
- "instruction",
 
 
 
 
 
1001
  "interacting",
1002
- "management",
1003
- "server",
1004
- "development",
1005
- "openai",
1006
  "obsidian",
1007
- "building",
1008
  "ask",
1009
  "autogpt",
1010
- "integrate",
 
1011
  "sources",
 
 
1012
  "repo",
1013
- "anthropic",
1014
- "english",
1015
- "translate",
1016
- "sql",
1017
- "efficient",
 
1018
  "attention",
1019
- "de",
 
1020
  "base",
 
1021
  "macos",
1022
  "alternative",
1023
- "unity",
1024
- "docs",
1025
- "community",
1026
- "applications",
1027
- "resources",
1028
- "gpt4",
1029
- "youtube",
1030
- "gpt3",
1031
- "official",
1032
- "engineered",
1033
- "images",
1034
  "desktop",
 
 
 
 
 
 
 
 
 
 
 
 
1035
  "mac",
1036
- "linux",
 
 
 
 
 
1037
  "experiences",
1038
- "access",
 
 
 
1039
  "llama",
1040
- "analysis",
1041
- "demo",
1042
  "history",
1043
  "deploy",
1044
- "trained",
1045
- "interaction",
1046
- "generating",
1047
- "gpu",
1048
- "designed",
1049
- "experience",
1050
  "write",
 
1051
  "quickly",
1052
- "input",
1053
  "privately",
1054
- "package",
1055
- "integrates",
1056
- "add",
1057
  "simple",
1058
- "multiple",
1059
- "personal",
1060
- "scale",
1061
- "shell",
1062
  "transformers",
1063
- "results",
1064
- "process",
 
 
 
 
 
 
1065
  "gpt-2",
1066
- "apis",
1067
- "robot",
1068
- "self",
1069
- "engineering",
1070
- "chatbot",
1071
- "text",
1072
- "generative",
1073
- "image",
1074
- "page",
1075
- "gpt-3.5",
1076
- "conversations",
1077
  "software",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1078
  "stable",
1079
- "performance",
1080
  "evaluation",
1081
- "official",
1082
- "retrieval",
1083
  "langchain",
1084
  "developers",
 
1085
  "discord",
1086
- "whisper",
1087
- "easy",
1088
- "dall",
1089
  "hosted",
1090
- "compatible",
1091
- "android",
1092
- "python",
1093
- "easily",
1094
  "rust",
1095
- "backend",
1096
- "proxy",
1097
- "chinese",
1098
- "apps",
1099
- "users",
1100
- "curated",
1101
- "dataset",
1102
  "instruction",
1103
- "alpaca",
1104
- "integration",
1105
- "research",
1106
- "generate",
1107
- "gpt-4",
1108
  "fine",
1109
- "version",
1110
- "work",
1111
- "contains",
1112
- "automatically",
1113
- "diffusion",
1114
- "etc",
1115
- "file",
1116
- "unofficial",
1117
- "chrome",
1118
- "inference",
1119
- "fast",
1120
- "better",
1121
- "awesome",
1122
- "langchain",
1123
  "codebase",
1124
- "bing",
1125
- "windows",
1126
- "generated",
1127
- "custom",
 
1128
  "agents",
1129
  "interact",
1130
- "paper",
1131
- "telegram",
1132
- "auto",
1133
- "cloudflare",
1134
- "need",
1135
- "run",
1136
- "running",
1137
- "next.js",
1138
  "react",
1139
- "system",
1140
- "tuning",
 
 
 
 
1141
  "way",
1142
- "collection",
1143
- "capabilities",
1144
- "uses",
1145
- "key",
1146
- "video",
1147
- "memory",
 
 
 
 
 
 
1148
  "langchain",
 
1149
  "enables",
1150
- "information",
 
 
 
 
 
 
 
 
1151
  "learning",
1152
- "conversation",
1153
- "answers",
1154
  "scripts",
1155
- "multi",
1156
- "powered",
1157
  "wrapper",
1158
- "claude",
1159
  "plugins",
1160
- "powerful",
1161
  "fully",
1162
- "chatgpt",
1163
- "voice",
1164
- "prompt",
1165
- "supports",
1166
- "learning",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1167
  "assistant",
1168
- "style",
 
1169
  "script",
 
 
 
 
 
 
 
 
1170
  "single",
1171
- "real",
1172
- "user",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1173
  "new",
1174
- "including",
1175
- "documents",
1176
  "build",
1177
- "support",
1178
- "framework",
1179
  "pdf",
1180
- "api",
1181
  "content",
1182
- "natural",
 
1183
  "provides",
1184
- "search",
1185
- "knowledge",
1186
- "100",
1187
- "local",
1188
- "messages",
1189
- "agent",
1190
- "web",
1191
- "github",
1192
- "tools",
1193
- "project",
1194
  "build",
 
 
 
1195
  "gpt",
1196
- "allows",
1197
- "commands",
1198
- "plugin",
1199
- "repo",
1200
- "generation",
1201
- "application",
1202
  "run",
1203
- "questions",
1204
  "time",
1205
- "power",
1206
- "autonomous",
1207
- "free",
1208
- "built",
1209
  "model",
1210
- "create",
1211
- "tasks",
 
1212
  "written",
1213
- "access",
1214
- "commit",
1215
- "training",
1216
- "help",
1217
- "platform",
1218
  "line",
 
1219
  "browser",
1220
- "implementation",
1221
- "list",
1222
- "repository",
1223
- "use",
 
 
 
 
 
1224
  "llama",
1225
  "cli",
1226
- "open",
1227
- "interface",
1228
- "simple",
1229
  "command",
 
 
 
 
 
1230
  "plugins",
 
1231
  "library",
1232
- "generate",
1233
- "chatbot",
1234
- "models",
1235
- "prompts",
 
 
 
 
1236
  "files",
1237
- "search",
1238
- "chat",
1239
  "prompt",
1240
- "large",
1241
- "extension",
1242
  "bot",
1243
- "terminal",
1244
- "ui",
 
 
 
 
 
 
 
1245
  "client",
 
1246
  "gpt-3",
1247
- "azure",
1248
  "code",
1249
  "app",
 
1250
  "large",
 
1251
  "language",
 
1252
  "text",
1253
  "gpt-4",
 
1254
  "web",
1255
- "tool",
1256
- "data",
1257
- "use",
1258
  "like",
1259
- "chat",
1260
- "plugin",
1261
- "powered",
1262
  "python",
 
 
 
 
1263
  "llms",
1264
  "chatgpt",
1265
  "llm",
1266
- "model",
1267
  "open",
1268
  "source",
1269
  "code",
1270
  "based",
1271
- "models",
1272
  "language",
 
1273
  "gpt",
1274
- "ai",
1275
  "api",
 
1276
  "openai",
1277
  "chatgpt"
1278
  ]
 
1
  {
2
  "candidate_words": [
3
+ "usage",
4
+ "listen",
5
  "allow",
6
  "enabling",
7
+ "resource",
8
+ "better",
9
+ "sites",
10
+ "expert",
11
+ "research",
12
+ "knowledge",
13
+ "10",
14
+ "glm",
15
  "unlock",
16
  "train",
17
+ "focus",
18
+ "references",
19
+ "projects",
20
+ "welcome",
21
+ "tracking",
22
+ "segment",
23
+ "cutting",
24
+ "edge",
25
+ "subscription",
26
+ "ranked",
27
  "lecture",
28
+ "siri",
29
+ "co",
30
+ "convert",
31
+ "webpage",
32
+ "23",
33
+ "types",
34
+ "oriented",
35
+ "rewrite",
36
  "promptr",
37
  "dynamically",
38
  "parse",
39
  "apply",
40
  "changes",
 
41
  "purposes",
42
+ "unlock",
43
+ "engineer",
44
  "creative",
45
+ "chatbot",
46
  "starting",
47
+ "adventure",
 
 
 
 
 
 
 
 
 
 
 
 
48
  "folks",
49
+ "interested",
50
  "sentence",
51
  "dan",
52
+ "send",
53
+ "pdfs",
54
+ "details",
55
+ "notion",
56
  "吴恩达《chatgpt",
57
  "jailbreak",
58
+ "enhance",
59
  "short",
60
  "term",
61
  "benchmarking",
62
  "webui",
63
  "dynamic",
 
64
  "descriptive",
65
  "understanding",
 
66
  "creates",
67
  "test",
68
+ "summarized",
69
+ "manage",
70
  "tests",
71
+ "tree",
72
  "thought",
73
+ "prompting",
74
  "optimize",
 
75
  "autohotkey",
76
  "share",
 
77
  "qa",
78
+ "scientific",
79
+ "deployed",
80
+ "parameter",
81
  "personal",
82
  "devices",
83
+ "problem",
84
+ "solving",
85
+ "70",
86
+ "covers",
87
+ "topics",
88
+ "developing",
89
+ "feedback",
90
+ "understands",
91
+ "release",
92
+ "gptchat",
93
+ "early",
94
+ "3d",
95
+ "indexes",
96
+ "knowledgebase",
97
  "wechat",
98
+ "demonstration",
99
+ "workers",
100
+ "ease",
101
+ "wechat",
102
+ "corpus",
103
+ "state",
104
+ "repository",
105
+ "exploring",
106
+ "website",
107
  "databricks",
108
+ "reflection",
109
+ "got",
110
+ "extremely",
111
+ "wait",
112
+ "edits",
113
  "repl",
114
  "querying",
115
+ "synthesized",
116
+ "collaboration",
117
+ "leverage",
118
+ "interacts",
119
+ "js",
120
+ "backed",
121
+ "latest",
122
+ "keyword",
123
+ "fixed",
124
+ "comment",
125
  "trading",
126
  "predictive",
127
+ "modular",
128
  "teach",
129
+ "convenient",
130
+ "asked",
131
+ "operations",
132
+ "certain",
133
+ "company",
134
+ "hopefully",
135
+ "sourced",
136
  "phind.com",
137
  "chat.openai.com",
138
+ "fetch",
139
+ "policy",
140
+ "monetization",
141
  "multilingual",
 
142
  "contents",
143
  "pdf",
144
+ "work",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
145
  "drop",
146
  "consumer",
147
+ "grade",
148
  "hardware",
149
  "ggml",
150
+ "import",
151
+ "big",
 
 
152
  "joy",
153
  "rasa",
154
  "figmachain",
155
+ "design",
156
  "starter",
157
  "right",
158
  "rails",
 
159
  "transcripts",
160
  "openchat",
161
+ "embed",
 
 
162
  "combines",
163
  "pretrained",
164
  "encoder",
165
  "ethereum",
166
+ "hackable",
167
  "labs",
168
  "adds",
 
169
  "endless",
170
+ "errors",
171
  "apps",
172
+ "foundation",
173
+ "allowing",
174
  "solving",
175
  "risk",
176
  "convert",
177
  "falcon",
 
 
 
178
  "interfaces",
179
  "drug",
180
  "cluster",
 
183
  "frontend",
184
  "free",
185
  "lightweight",
 
186
  "manage",
187
  "variables",
188
+ "coroutine",
189
+ "mvvm",
190
+ "retrofit2",
191
  "version",
192
  "calling",
193
  "ensure",
194
  "reducing",
195
+ "brain",
196
  "applications",
197
+ "vector",
198
+ "respond",
199
+ "customer",
200
+ "fully",
201
+ "component",
202
+ "mplug",
203
+ "family",
204
+ "huggingchat",
205
+ "known",
206
+ "sso",
207
+ "huggingface",
208
+ "openrouter",
209
+ "portal",
210
  "asking",
211
+ "的划词翻译浏览器插件和跨平台桌面端应用",
212
+ "chrome",
213
+ "replies",
214
+ "box",
215
+ "pages",
216
+ "note",
217
+ "logseq",
218
+ "engines",
219
+ "bob",
220
+ "polishing",
221
+ "tower",
222
+ "babel",
223
+ "docs",
224
+ "add",
225
+ "manual",
226
+ "manifest",
227
+ "v3",
228
+ "providing",
229
  "@ykdojo",
230
+ "responsive",
231
+ "permanent",
232
+ "install",
233
+ "de",
234
+ "recognition",
235
+ "accessing",
236
  "decompilation",
237
  "textual",
238
+ "development",
239
+ "interfaces",
240
  "coming",
241
  "soon",
242
+ "browsers",
243
  "suite",
 
244
  "endpoints",
245
+ "assemble",
246
+ "jupyter",
247
+ "passive",
248
+ "highly",
249
+ "vulnerabilities",
250
  "artificial",
251
  "browsing",
 
252
  "cool",
253
  "@langchainai",
254
+ "start",
255
  "execute",
256
  "session",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  "controls",
258
  "metatrader",
259
  "traders",
260
  "softly",
 
261
  "wallet",
262
  "tokens",
263
  "solutions",
264
  "utilizes",
265
+ "effort",
 
 
266
  "stores",
267
  "msbuild",
268
+ "autonomy",
269
  "independently",
270
+ "typescript",
271
  "analyzer",
272
  "crypto",
273
  "instructions",
274
  "real",
275
  "detection",
 
276
  "choice",
277
  "cost",
278
  "load",
 
283
  "specific",
284
  "clerk",
285
  "vs",
286
+ "ide",
287
  "serves",
288
  "ons",
289
  "extensions",
290
  "assistance",
291
  "freely",
292
+ "descriptions",
293
  "times",
294
+ "content",
295
+ "batch",
296
  "enabled",
297
+ "diagrams",
 
298
  "helping",
299
+ "install",
300
+ "useful",
301
  "cross",
 
302
  "secure",
303
+ "scalable",
304
+ "postgres",
305
+ "binary",
306
  "efficiently",
 
 
 
 
 
 
 
 
307
  "一键拥有你自己的",
308
  "网页服务",
309
  "click",
310
+ "rest",
 
 
 
 
311
  "prepare",
312
  "msg",
313
+ "impressive",
314
+ "second",
315
+ "xml",
 
 
316
  "reliable",
317
  "result",
318
+ "nmap",
319
+ "reports",
320
+ "main",
321
+ "weight",
322
+ "feature",
323
+ "memories",
324
+ "preview",
325
+ "terminal",
326
+ "toolkit",
327
  "delphi",
328
+ "supported",
329
+ "search.no",
330
+ "measurement",
331
+ "graphics",
332
+ "免费的chatgpt客户端,已支持联网搜索",
333
+ "无需密钥,无需登录",
334
+ "多节点自动测速切换",
335
+ "长文翻译不限字数",
336
+ "ai出图",
337
  "pair",
338
  "readme",
339
  "samples",
 
341
  "notebooks",
342
  "chatgpt+midjourney",
343
  "reporting",
 
344
  "capabilities.(智能的通用数据库sql客户端和报表工具",
345
+ "proofreading",
346
  "immediately",
347
  "saas",
348
+ "email",
349
  "super",
350
+ "setup",
 
 
351
  "tailored",
352
+ "lobe",
353
  "unleash",
354
  "digestible",
355
  "lightweight",
356
  "extensible",
357
  "runtime",
358
  "startup",
359
+ "claude2",
360
+ "core",
361
+ "un",
362
+ "non",
363
+ "pytorch",
364
  "networks",
365
+ "distilbert",
366
+ "question",
367
  "iclr",
368
  "pytorch",
369
  "int8",
370
  "4bit",
 
 
371
  "stablelm",
372
+ "online",
373
+ "draggan",
374
  "drag",
375
  "point",
376
  "pure",
377
  "reproduction",
378
  "domain",
379
  "means",
380
+ "shot",
381
+ "scratch",
382
  "30",
383
+ "colab",
384
  "tutorials",
385
+ "character",
386
  "microsoft",
387
  "biomedical",
388
+ "json",
389
+ "description",
390
+ "combining",
391
  "gpt2",
392
  "ended",
393
+ "flask",
394
  "bilingual",
395
+ "llms",
396
+ "github",
397
  "validation",
398
+ "ready",
399
+ "led",
400
  "citations",
401
+ "translate",
402
+ "consistent",
403
  "evaluate",
 
 
404
  "emails",
405
+ "languages",
406
  "camel",
407
  "communicative",
 
408
  "exploration",
409
  "society",
410
  "common",
411
  "hallucinations",
412
  "pipeline",
 
 
 
413
  "subtitle",
 
 
 
 
414
  "predict",
415
+ "transform",
416
+ "siri",
417
+ "i.e.",
418
+ "tasks",
419
+ "modified",
420
+ "zero",
421
+ "able",
422
+ "health",
423
+ "empowered",
424
+ "join",
425
+ "resume",
426
  "op",
427
  "stack",
428
  "pinecone",
429
  "upload",
430
  "lora",
431
+ "legal",
 
 
 
 
 
 
432
  "understand",
 
433
  "context",
 
434
  "explain",
435
  "neuron",
436
  "showing",
 
437
  "cohere",
438
  "know",
 
439
  "efficient",
440
+ "finetuning",
 
441
  "size",
442
  "multithreading",
443
  "evaluating",
444
  "algorithm",
445
+ "guided",
446
  "integrated",
447
+ "problems",
448
  "bias",
 
449
  "alignment",
450
+ "academic",
451
  "analyzing",
452
+ "translates",
453
  "cloud",
454
  "environments",
455
  "mag",
456
  "haystack",
457
  "vpc",
 
458
  "meta",
459
  "searching",
460
  "facebook",
461
  "enabling",
 
462
  "fun",
463
+ "ranking",
464
+ "xunfei",
465
+ "xinghuo",
466
+ "forms",
467
  "translating",
468
+ "editor",
469
  "notion",
 
470
  "experimenting",
471
+ "40",
472
  "rss",
473
+ "series",
474
+ "improved",
475
+ "mnbvc",
476
+ "consists",
477
+ "comparable",
478
+ "posts",
479
+ "xinference",
480
+ "gives",
481
+ "compositional",
482
+ "db",
483
+ "port",
484
  "galactica",
485
  "external",
486
  "names",
487
+ "extract",
488
+ "7b",
489
  "completion",
490
  "face",
491
+ "simpler",
492
+ "@openai",
493
  "blip2",
494
  "grit",
 
 
 
 
495
  "generativeai",
496
+ "builds",
497
+ "@openai",
498
+ "editing",
499
+ "existing",
500
+ "include",
501
  "toolkit",
502
+ "asynchronous",
 
503
  "gpt4all",
504
  "opencompass",
505
  "wide",
 
506
  "llama2",
507
+ "easy",
508
+ "provide",
509
+ "buttons",
510
+ "harness",
511
+ "lora",
512
+ "enthusiasts",
513
+ "pr",
514
+ "technologies",
515
+ "embeddings",
516
  "mozilla",
 
517
  "package",
518
+ "forked",
519
+ "e.",
520
+ "games",
521
+ "cubic",
522
+ "voxel",
523
+ "maker",
524
  "benchmarks",
525
+ "course",
526
+ "binaries",
 
 
527
  "remote",
528
+ "sre",
529
  "swiftui",
530
  "ipados",
531
+ "typed",
532
  "remaining",
533
+ "ey",
534
+ "gitlab",
535
+ "doc",
536
+ "making",
537
+ "incredibly",
538
+ "smooth",
539
+ "canceling",
540
+ "cloning",
541
+ "purifying",
542
  "cosmos",
543
  "worker",
544
+ "enhancement",
545
+ "active",
546
+ "homepage",
547
+ "screen",
548
+ "practice",
549
  "automatic",
550
+ "helpful",
551
  "outputs",
552
+ "brain",
553
+ "continue",
554
+ "accounts",
 
 
555
  "vontigo",
556
+ "routing",
557
  "starter",
558
  "golang",
 
 
559
  "medium",
560
  "sized",
 
561
  "networks",
562
+ "mobile",
 
 
 
 
 
 
 
 
563
  "flutter",
564
  "room",
565
+ "effects",
566
+ "chatgpt3.5",
567
+ "evolution",
568
+ "dual",
569
+ "formulas",
570
+ "dl",
571
+ "babyagi",
572
+ "distribution",
573
+ "called",
574
+ "digital",
575
+ "mathematical",
576
+ "recognition",
577
+ "golang",
578
+ "dynamic",
579
  "notification",
580
+ "deep",
581
+ "audit",
582
  "gt",
583
+ "pytorch",
 
 
584
  "vosviewer",
585
+ "fake",
586
+ "days",
587
+ "programs",
588
  "story",
589
+ "poe",
590
  "gpt4company",
591
+ "components",
592
+ "credit",
593
+ "july",
594
+ "anchor",
595
+ "number",
596
+ "xmind",
597
+ "gitlab",
598
  "review",
599
  "bionicgpt",
600
  "premise",
 
602
  "maintaining",
603
  "strict",
604
  "confidentiality",
605
+ "qr",
606
+ "epsilla",
607
+ "pwa",
608
+ "win",
609
+ "一键拥有你自己的跨平台",
610
+ "modelscope",
611
+ "alternatives",
612
+ "guide",
613
+ "scenarios",
614
+ "learn",
615
  "keys",
616
+ "selected",
617
+ "training",
618
  "giving",
619
+ "artificial",
 
620
  "mirror",
621
+ "network",
622
+ "network",
623
+ "forwarding",
624
+ "collect",
625
+ "million",
626
+ "people",
627
+ "officially",
628
+ "tutorials",
629
+ "evaluation",
630
  "explore",
631
+ "issues",
632
+ "pull",
633
+ "custom",
634
+ "experiment",
635
+ "small",
636
+ "switch",
637
+ "branch",
638
  "blender",
639
  "structured",
640
+ "join",
641
+ "discord",
642
+ "bug",
643
+ "bounty",
644
+ "sharing",
645
+ "taking",
646
+ "figma",
647
  "shot",
648
  "learners",
 
 
 
 
 
649
  "clone",
650
  "gpt4",
651
+ "examples",
652
  "game",
653
+ "brainstorming",
 
 
 
 
 
 
 
 
 
 
654
  "correct",
655
+ "grammar",
656
  "games",
657
  "50",
658
+ "technology",
659
+ "w/",
660
+ "audio",
661
+ "storage",
662
  "unofficial",
663
+ "subtitles",
664
  "developers",
665
+ "user",
666
  "interactive",
667
  "reasoning",
668
+ "@langchainai",
 
669
  "introducing",
670
  "systems",
671
+ "notes",
672
+ "good",
 
 
 
673
  "indexing",
674
+ "chains",
675
  "tweets",
676
+ "aigc",
677
  "hugging",
678
  "db",
679
  "rag",
680
+ "windows",
681
+ "mobile",
682
+ "plug",
683
+ "structured",
684
+ "range",
685
+ "literature",
686
+ "clean",
687
+ "stories",
688
+ "dialogue",
689
+ "party",
690
  "having",
691
+ "rnn",
692
+ "talk",
693
+ "robust",
694
+ "moderation",
695
+ "youtube",
696
+ "summarizer",
 
 
697
  "human",
698
+ "twitter",
699
+ "integrate",
700
+ "machine",
701
  "state",
702
  "art",
703
+ "aims",
704
+ "summarizing",
705
+ "sample",
706
+ "autogpt",
707
+ "basic",
708
+ "proof",
709
+ "concept",
710
+ "specified",
711
  "post",
 
712
  "hackathon",
713
+ "medical",
714
+ "weights",
715
+ "ai",
716
+ "issue",
717
+ "center",
718
+ "organization",
719
+ "original",
720
+ "speaker",
721
+ "vpn",
722
  "replacement",
723
  "cpu",
 
724
  "detection",
725
+ "highlighting",
726
  "built",
727
  "fastapi",
728
+ "html",
 
 
729
  "slack",
730
  "analysis",
731
  "live",
732
  "transcription",
733
+ "summarization",
734
  "urls",
735
+ "meaningful",
736
  "runs",
737
+ "modes",
 
738
  "utilize",
739
  "arxiv",
740
+ "inference",
741
  "control",
742
  "ultimate",
743
+ "virtual",
744
  "stable",
745
  "gradio",
746
  "tuned",
747
  "shows",
748
  "terraform",
749
+ "calls",
750
+ "era",
751
  "offline",
752
  "device",
 
753
  "uses",
754
  "streaming",
755
+ "dingtalk",
756
+ "jetpack",
757
+ "使用",
758
  "answer",
759
+ "flexible",
760
+ "elegant",
761
+ "smart",
762
+ ".net",
763
+ "databases",
764
+ "unlimited",
765
+ "instantly",
766
+ "upload",
767
  "find",
768
+ "基于",
 
 
 
 
 
 
 
 
769
  "link",
770
+ "ida",
771
+ "correction",
772
+ "google",
773
  "experimental",
774
  "human",
775
+ "friends",
776
+ "decompiler",
777
+ "vim",
778
+ "chats",
779
+ "bringing",
780
+ "diffusion",
781
+ "burp",
782
+ "discover",
783
+ "ipython",
784
  "scan",
785
+ "intelligence",
786
+ "providers",
787
+ "ts",
788
+ "minutes",
789
+ "snippets",
790
+ "reference",
791
  "enable",
 
792
  "qgis",
793
+ "processing",
794
+ "automate",
795
+ "current",
796
  "talk",
797
+ "exchange",
798
  "started",
799
  "vulnerability",
800
+ "easiest",
801
  "edit",
 
802
  "steroids",
 
 
 
803
  "ocr",
804
+ "douyin",
805
+ "coding",
806
  "cli",
807
  "semantic",
808
  "kernel",
809
+ "let",
810
+ "docker",
811
+ "completely",
812
+ "specifically",
813
+ "powershell",
814
  "token",
815
+ "tracking",
816
  "shell",
817
  "giving",
 
 
 
818
  "hook",
819
+ "writes",
820
+ "mind",
821
+ "modules",
822
+ "great",
823
  "single",
 
 
824
  "offers",
825
+ "conversational",
826
+ "converts",
827
+ "achieve",
828
+ "goal",
829
+ "node",
830
+ "limit",
831
  "nice",
832
+ "background",
833
  "seamless",
834
+ "aware",
835
+ "configuration",
836
  "directory",
 
 
 
837
  "backend",
838
  "server",
 
839
  "rlhf",
840
  "reinforcement",
841
  "feedback",
842
+ "pretrained",
843
  "chain",
 
844
  "stay",
845
+ "parallel",
846
  "transformers",
847
  "neural",
848
+ "optimized",
849
+ "bert",
850
  "flash",
 
851
  "pre",
852
  "apache",
853
+ "demo",
854
+ "course",
 
 
855
  "stanford",
856
+ "locally",
857
+ "books",
858
  "distributed",
859
+ "amp",
860
+ "superior",
861
  "seconds",
862
  "channel",
863
  "quantized",
864
+ "neox",
865
+ "fine",
866
  "scale",
 
 
867
  "finetuning",
 
 
 
868
  "second",
869
+ "world",
870
+ "future",
871
  "activations",
872
+ "explanation",
873
  "visualization",
874
+ "given",
875
  "dev",
876
+ "medical",
877
  "algo",
878
+ "synthesis",
879
  "extraction",
 
 
880
  "engine",
881
+ "tongyi",
882
+ "qianwen",
883
+ "proxy",
884
  "dall·e",
885
+ "languages",
886
  "secure",
887
  "chatglm2",
888
+ "intelligent",
889
+ "corpus",
890
+ "pure",
891
+ "news",
892
  "simplest",
893
+ "bindings",
894
+ "llama",
895
+ "moss",
896
+ "try",
897
+ "bilibili",
898
+ "equipped",
899
+ "popular",
900
+ "editing",
901
+ "methods",
902
+ "currently",
903
+ "laravel",
904
  "menubar",
905
+ "table",
 
906
  "http",
907
+ "automated",
908
+ "audits",
909
+ "supercharged",
910
+ "management",
911
+ "displaying",
912
+ "boot",
913
+ "acceleration",
914
  "bypass",
915
+ "comes",
916
+ "tailwind",
917
+ "business",
918
+ "private",
919
  "talking",
920
+ "accessible",
921
  "profile",
922
  "automatically",
923
+ "report",
924
+ "channels",
925
+ "应用",
926
+ "based",
927
+ "principles",
928
  "internal",
929
  "configure",
930
+ "summary",
931
+ "continuously",
932
+ "boost",
933
+ "libraries",
934
  "cases",
935
+ "interesting",
936
+ "intelligence",
937
+ "train",
938
+ "source",
939
+ "updates",
940
+ "plus",
941
+ "resource",
 
942
  "notebooks",
943
+ "continuous",
944
+ "save",
945
+ "records",
 
946
  "building",
947
+ "read",
948
+ "communicate",
949
+ "improving",
950
+ "javascript",
951
  "template",
952
+ "light",
953
+ "included",
954
+ "magic",
955
  "apple",
956
  "personalized",
957
+ "switching",
958
+ "message",
959
+ "ask",
960
+ "prompting",
961
+ "general",
962
+ "customizable",
963
+ "task",
 
964
  "quick",
965
  "neovim",
966
+ "presets",
967
+ "unified",
968
  "layer",
969
+ "improve",
970
  "jupyter",
971
+ "csv",
972
+ "streamlit",
973
+ "communication",
974
+ "quality",
975
+ "testing",
976
+ "play",
977
+ "summary",
978
+ "seamlessly",
979
+ "multimodal",
980
  "telegram",
981
+ "stream",
982
  "swift",
983
+ "deploy",
984
+ "form",
985
+ "japanese",
986
+ "macos",
987
+ "accuracy",
988
+ "studio",
989
+ "services",
990
  "filesystem",
991
  "example",
992
+ "voice",
993
+ "comments",
994
+ "coding",
995
+ "hours",
996
+ "sales",
997
+ "entire",
998
+ "update",
999
+ "zero",
1000
  "self",
1001
+ "driven",
1002
+ "agi",
1003
+ "llamaindex",
1004
+ "css",
1005
+ "console",
1006
+ "concise",
1007
  "summaries",
1008
+ "featured",
1009
+ "vercel",
1010
+ "auto",
1011
  "privacy",
1012
  "enhance",
1013
  "bot",
1014
  "supabase",
1015
+ "problem",
1016
+ "word",
1017
+ "implement",
1018
+ "easily",
1019
+ "stream",
1020
  "notebook",
1021
+ "capability",
1022
+ "semantic",
1023
+ "extract",
 
 
 
 
1024
  "vscode",
1025
+ "welcome",
1026
+ "extension",
1027
  "brings",
1028
+ "inside",
1029
  "perform",
1030
+ "day",
1031
  "connect",
 
1032
  "babyagi",
1033
+ "fastest",
 
1034
  "effective",
 
 
1035
  "fast",
1036
+ "llama2",
1037
  "20",
1038
+ "image",
1039
+ "bilibili",
1040
+ "baidu",
1041
+ "shortcut",
1042
+ "speech",
1043
+ "support",
1044
+ "node.js",
1045
  "faster",
1046
+ "minimal",
1047
  "dns",
1048
+ "tutorial",
 
 
1049
  "native",
1050
+ "master",
1051
+ "log",
 
1052
  "developer",
1053
+ "general",
1054
+ "universal",
 
1055
  "style",
1056
+ "locally",
1057
  "deepspeed",
1058
+ "c++",
1059
+ "implementations",
1060
  "nanogpt",
1061
  "gptq",
1062
  "quantization",
1063
  "lora",
1064
+ "adapter",
1065
  "2.0",
1066
  "licensed",
 
1067
  "deep",
1068
  "generating",
1069
+ "benchmark",
1070
+ "blog",
1071
  "favorite",
1072
  "json",
1073
+ "database",
 
1074
  "augmented",
1075
  "pattern",
1076
+ "e.g.",
1077
+ "enterprise",
1078
+ "programming",
1079
+ "yiyuan",
1080
+ "app",
1081
+ "reverse",
1082
+ "commercial",
1083
+ "flow",
1084
+ "advanced",
1085
+ "topic",
1086
+ "template",
1087
+ "spring",
1088
+ "wall",
1089
+ "output",
1090
+ "list",
1091
+ "productivity",
1092
+ "experimental",
1093
+ "things",
1094
+ "developed",
1095
+ "engineering",
1096
  "interpreter",
1097
+ "github",
1098
+ "pre",
1099
+ "transformer",
1100
+ "collection",
1101
+ "requests",
1102
+ "context",
1103
+ "chain",
1104
+ "slack",
1105
  "videos",
1106
+ "efficiency",
1107
+ "want",
1108
+ "complete",
1109
  "latest",
1110
+ "foundation",
1111
+ "makes",
1112
+ "notes",
1113
+ "speed",
 
 
1114
  "play",
1115
+ "word",
1116
+ "responses",
1117
+ "long",
1118
+ "long",
1119
+ "examples",
1120
+ "check",
1121
+ "learn",
1122
+ "analyze",
1123
  "agents",
1124
  "query",
1125
+ "vector",
1126
+ "production",
1127
+ "reasoning",
1128
+ "store",
1129
  "kubernetes",
1130
+ "attempt",
1131
+ "rwkv",
1132
+ "gui",
1133
+ "end",
1134
  "test",
1135
+ "similar",
 
 
1136
  "documentation",
1137
  "typescript",
1138
  "interact",
1139
+ "speech",
1140
  "llama.cpp",
 
 
1141
  "execution",
1142
+ "interactive",
1143
  "generates",
1144
  "leaks",
 
 
 
 
1145
  "visual",
1146
+ "functionality",
1147
+ "framework",
1148
+ "intelligent",
1149
+ "feishu",
1150
  "plus",
1151
+ "new",
 
1152
  "interpreter",
1153
+ "kotlin",
1154
+ "markdown",
1155
+ "site",
1156
+ "js",
1157
+ "qq",
1158
+ "enterprise",
1159
+ "free",
1160
  "retrieval",
1161
  "lets",
 
 
 
 
1162
  "browser",
1163
+ "cross",
1164
+ "editor",
1165
+ "openai",
1166
  "nlp",
1167
+ "develop",
1168
+ "emacs",
1169
+ "lines",
1170
+ "accomplish",
1171
+ "versatile",
1172
+ "superpowers",
1173
+ "tool",
1174
  "copilot",
 
 
 
1175
  "transform",
1176
  "javascript",
1177
  "offering",
1178
+ "platforms",
1179
+ "download",
1180
+ "system",
1181
+ "module",
1182
+ "docker",
1183
+ "markdown",
1184
+ "environment",
1185
  "tuned",
1186
  "ml",
1187
+ "answering",
1188
  "cognitive",
1189
+ "llm",
1190
+ "transformer",
1191
  "gpt-3",
1192
+ "question",
1193
+ "project",
1194
  "q&a",
1195
+ "wenxin",
1196
+ "index",
1197
+ "playing",
1198
+ "function",
1199
+ "role",
1200
+ "non",
1201
  "vue3",
1202
+ "card",
1203
  "codes",
1204
+ "registration",
1205
+ "curated",
1206
  "demos",
1207
+ "usage",
1208
+ "updated",
1209
+ "guide",
1210
+ "set",
1211
+ "internet",
1212
+ "midjourney",
1213
+ "palm",
1214
+ "created",
1215
+ "public",
1216
+ "machine",
1217
+ "prompts",
1218
  "friendly",
1219
+ "format",
1220
+ "summarize",
1221
+ "share",
 
1222
  "useful",
1223
+ "templates",
1224
+ "2023",
1225
+ "product",
1226
  "ability",
1227
+ "sample",
1228
+ "possible",
1229
+ "access",
1230
+ "chatgpt",
1231
+ "gpt3.5",
1232
+ "high",
1233
+ "vision",
1234
  "git",
1235
+ "bots",
1236
+ "error",
1237
+ "visual",
1238
  "minimal",
1239
+ "application",
1240
+ "let",
1241
+ "review",
1242
+ "request",
1243
  "helps",
1244
+ "creation",
1245
+ "turn",
1246
+ "streaming",
1247
+ "service",
1248
+ "multimodal",
1249
+ "level",
1250
+ "bard",
1251
+ "enhanced",
1252
+ "clone",
1253
  "interacting",
1254
+ "queries",
 
 
 
1255
  "obsidian",
 
1256
  "ask",
1257
  "autogpt",
1258
+ "program",
1259
+ "comprehensive",
1260
  "sources",
1261
+ "display",
1262
+ "export",
1263
  "repo",
1264
+ "client",
1265
+ "library",
1266
+ "purpose",
1267
+ "authentication",
1268
+ "service",
1269
+ "login",
1270
  "attention",
1271
+ "data",
1272
+ "game",
1273
  "base",
1274
+ "instruct",
1275
  "macos",
1276
  "alternative",
 
 
 
 
 
 
 
 
 
 
 
1277
  "desktop",
1278
+ "optimization",
1279
+ "payment",
1280
+ "docs",
1281
+ "instruction",
1282
+ "security",
1283
+ "papers",
1284
+ "power",
1285
+ "projects",
1286
+ "following",
1287
+ "turbo",
1288
+ "creating",
1289
+ "youtube",
1290
  "mac",
1291
+ "mode",
1292
+ "output",
1293
+ "engineered",
1294
+ "gpt3",
1295
+ "writing",
1296
+ "released",
1297
  "experiences",
1298
+ "generation",
1299
+ "supported",
1300
+ "complex",
1301
+ "platform",
1302
  "llama",
1303
+ "cloud",
 
1304
  "history",
1305
  "deploy",
1306
+ "gpt4all",
1307
+ "sdk",
1308
+ "compose",
1309
+ "ios",
 
 
1310
  "write",
1311
+ "gpu",
1312
  "quickly",
 
1313
  "privately",
1314
+ "advanced",
1315
+ "supports",
1316
+ "chatglm",
1317
  "simple",
1318
+ "database",
1319
+ "generator",
 
 
1320
  "transformers",
1321
+ "document",
1322
+ "datasets",
1323
+ "architecture",
1324
+ "words",
1325
+ "anthropic",
1326
+ "translate",
1327
+ "java",
1328
+ "online",
1329
  "gpt-2",
1330
+ "awesome",
1331
+ "related",
1332
+ "available",
1333
+ "desktop",
1334
+ "reverse",
 
 
 
 
 
 
1335
  "software",
1336
+ "microsoft",
1337
+ "retrieval",
1338
+ "process",
1339
+ "website",
1340
+ "unity",
1341
+ "interaction",
1342
+ "gpt-3.5",
1343
+ "solution",
1344
+ "click",
1345
+ "compatible",
1346
+ "response",
1347
+ "python",
1348
+ "google",
1349
+ "integrates",
1350
+ "required",
1351
+ "directly",
1352
+ "agent",
1353
+ "results",
1354
+ "reading",
1355
+ "server",
1356
+ "multi",
1357
+ "sql",
1358
+ "includes",
1359
+ "gpt4",
1360
+ "shell",
1361
+ "provide",
1362
+ "alpaca",
1363
+ "best",
1364
+ "gpt-3.5",
1365
+ "gpt-4",
1366
+ "integration",
1367
+ "linux",
1368
+ "create",
1369
+ "generate",
1370
+ "images",
1371
+ "page",
1372
  "stable",
 
1373
  "evaluation",
1374
+ "implementation",
 
1375
  "langchain",
1376
  "developers",
1377
+ "deployment",
1378
  "discord",
1379
+ "generating",
1380
+ "programming",
1381
+ "file",
1382
  "hosted",
1383
+ "input",
1384
+ "package",
1385
+ "video",
1386
+ "add",
1387
  "rust",
1388
+ "integrated",
1389
+ "building",
1390
+ "scale",
1391
+ "php",
1392
+ "automatic",
1393
+ "drawing",
1394
+ "better",
1395
  "instruction",
1396
+ "trained",
1397
+ "gpts",
 
 
 
1398
  "fine",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1399
  "codebase",
1400
+ "chatbot",
1401
+ "text",
1402
+ "diffusion",
1403
+ "private",
1404
+ "demo",
1405
  "agents",
1406
  "interact",
1407
+ "personal",
1408
+ "account",
1409
+ "implemented",
 
 
 
 
 
1410
  "react",
1411
+ "unofficial",
1412
+ "group",
1413
+ "translation",
1414
+ "chrome",
1415
+ "development",
1416
+ "inference",
1417
  "way",
1418
+ "english",
1419
+ "efficient",
1420
+ "apps",
1421
+ "community",
1422
+ "curated",
1423
+ "apis",
1424
+ "supporting",
1425
+ "dataset",
1426
+ "contains",
1427
+ "generative",
1428
+ "windows",
1429
+ "self",
1430
  "langchain",
1431
+ "memory",
1432
  "enables",
1433
+ "generated",
1434
+ "official",
1435
+ "multiple",
1436
+ "functions",
1437
+ "run",
1438
+ "android",
1439
+ "dall",
1440
+ "assistant",
1441
+ "whisper",
1442
  "learning",
 
 
1443
  "scripts",
1444
+ "auto",
1445
+ "running",
1446
  "wrapper",
 
1447
  "plugins",
 
1448
  "fully",
1449
+ "users",
1450
+ "resources",
1451
+ "conversations",
1452
+ "official",
1453
+ "performance",
1454
+ "analysis",
1455
+ "integrate",
1456
+ "information",
1457
+ "telegram",
1458
+ "answers",
1459
+ "api",
1460
+ "real",
1461
+ "designed",
1462
+ "fast",
1463
+ "next.js",
1464
+ "powered",
1465
+ "features",
1466
+ "powerful",
1467
+ "input",
1468
+ "awesome",
1469
+ "applications",
1470
+ "engineering",
1471
+ "research",
1472
+ "bing",
1473
  "assistant",
1474
+ "capabilities",
1475
+ "video",
1476
  "script",
1477
+ "easily",
1478
+ "claude",
1479
+ "100",
1480
+ "uses",
1481
+ "image",
1482
+ "system",
1483
+ "langchain",
1484
+ "automatically",
1485
  "single",
1486
+ "chatgpt",
1487
+ "natural",
1488
+ "wechat",
1489
+ "easy",
1490
+ "tuning",
1491
+ "search",
1492
+ "repo",
1493
+ "key",
1494
+ "robot",
1495
+ "work",
1496
+ "backend",
1497
+ "style",
1498
+ "cloudflare",
1499
+ "paper",
1500
+ "commands",
1501
+ "github",
1502
  "new",
1503
+ "collection",
1504
+ "prompt",
1505
  "build",
1506
+ "generation",
 
1507
  "pdf",
1508
+ "experience",
1509
  "content",
1510
+ "multi",
1511
+ "power",
1512
  "provides",
1513
+ "plugin",
1514
+ "autonomous",
1515
+ "etc",
 
 
 
 
 
 
 
1516
  "build",
1517
+ "documents",
1518
+ "voice",
1519
+ "messages",
1520
  "gpt",
 
 
 
 
 
 
1521
  "run",
 
1522
  "time",
1523
+ "commit",
1524
+ "tools",
1525
+ "knowledge",
 
1526
  "model",
1527
+ "agent",
1528
+ "framework",
1529
+ "custom",
1530
  "written",
1531
+ "questions",
1532
+ "user",
1533
+ "support",
 
 
1534
  "line",
1535
+ "need",
1536
  "browser",
1537
+ "training",
1538
+ "learning",
1539
+ "help",
1540
+ "local",
1541
+ "conversation",
1542
+ "access",
1543
+ "tasks",
1544
+ "allows",
1545
+ "web",
1546
  "llama",
1547
  "cli",
1548
+ "create",
1549
+ "proxy",
 
1550
  "command",
1551
+ "version",
1552
+ "use",
1553
+ "chinese",
1554
+ "project",
1555
+ "open",
1556
  "plugins",
1557
+ "built",
1558
  "library",
1559
+ "list",
1560
+ "including",
1561
+ "management",
1562
+ "application",
1563
+ "implementation",
1564
+ "free",
1565
+ "repository",
1566
+ "terminal",
1567
  "files",
1568
+ "generate",
 
1569
  "prompt",
 
 
1570
  "bot",
1571
+ "search",
1572
+ "platform",
1573
+ "simple",
1574
+ "extension",
1575
+ "supports",
1576
+ "interface",
1577
+ "prompts",
1578
+ "large",
1579
+ "models",
1580
  "client",
1581
+ "ui",
1582
  "gpt-3",
1583
+ "chatbot",
1584
  "code",
1585
  "app",
1586
+ "chat",
1587
  "large",
1588
+ "azure",
1589
  "language",
1590
+ "tool",
1591
  "text",
1592
  "gpt-4",
1593
+ "powered",
1594
  "web",
 
 
 
1595
  "like",
1596
+ "use",
 
 
1597
  "python",
1598
+ "plugin",
1599
+ "data",
1600
+ "model",
1601
+ "chat",
1602
  "llms",
1603
  "chatgpt",
1604
  "llm",
 
1605
  "open",
1606
  "source",
1607
  "code",
1608
  "based",
 
1609
  "language",
1610
+ "models",
1611
  "gpt",
 
1612
  "api",
1613
+ "ai",
1614
  "openai",
1615
  "chatgpt"
1616
  ]
indexes/docs/_0.fdm ADDED
Binary file (157 Bytes). View file
 
indexes/docs/_0.fdt ADDED
Binary file (224 kB). View file
 
indexes/docs/_0.fdx ADDED
Binary file (94 Bytes). View file
 
indexes/docs/{_1g.fnm → _0.fnm} RENAMED
Binary files a/indexes/docs/_1g.fnm and b/indexes/docs/_0.fnm differ
 
indexes/docs/_0.nvd ADDED
Binary file (1.36 kB). View file
 
indexes/docs/_0.nvm ADDED
Binary file (103 Bytes). View file
 
indexes/docs/_0.si ADDED
Binary file (519 Bytes). View file
 
indexes/docs/_0.tvd ADDED
Binary file (103 kB). View file
 
indexes/docs/_0.tvm ADDED
Binary file (162 Bytes). View file
 
indexes/docs/_0.tvx ADDED
Binary file (125 Bytes). View file
 
indexes/docs/_0_Lucene90_0.doc ADDED
Binary file (22.5 kB). View file
 
indexes/docs/{_1g_Lucene90_0.dvd → _0_Lucene90_0.dvd} RENAMED
Binary files a/indexes/docs/_1g_Lucene90_0.dvd and b/indexes/docs/_0_Lucene90_0.dvd differ
 
indexes/docs/_0_Lucene90_0.dvm ADDED
Binary file (171 Bytes). View file
 
indexes/docs/_0_Lucene90_0.pos ADDED
Binary file (19.6 kB). View file
 
indexes/docs/_0_Lucene90_0.tim ADDED
Binary file (43.4 kB). View file
 
indexes/docs/_0_Lucene90_0.tip ADDED
Binary file (1.12 kB). View file
 
indexes/docs/_0_Lucene90_0.tmd ADDED
Binary file (274 Bytes). View file
 
indexes/docs/_1.fdm ADDED
Binary file (157 Bytes). View file
 
indexes/docs/_1.fdt ADDED
Binary file (219 kB). View file
 
indexes/docs/_1.fdx ADDED
Binary file (94 Bytes). View file
 
indexes/docs/_1.fnm ADDED
Binary file (343 Bytes). View file
 
indexes/docs/_1.nvd ADDED
Binary file (1.36 kB). View file
 
indexes/docs/_1.nvm ADDED
Binary file (103 Bytes). View file
 
indexes/docs/_1.si ADDED
Binary file (519 Bytes). View file
 
indexes/docs/_1.tvd ADDED
Binary file (103 kB). View file
 
indexes/docs/_1.tvm ADDED
Binary file (162 Bytes). View file
 
indexes/docs/_1.tvx ADDED
Binary file (125 Bytes). View file
 
indexes/docs/_1_Lucene90_0.doc ADDED
Binary file (22.5 kB). View file
 
indexes/docs/_1_Lucene90_0.dvd ADDED
Binary file (6.15 kB). View file
 
indexes/docs/_1_Lucene90_0.dvm ADDED
Binary file (171 Bytes). View file
 
indexes/docs/_1_Lucene90_0.pos ADDED
Binary file (19.6 kB). View file
 
indexes/docs/_1_Lucene90_0.tim ADDED
Binary file (43.4 kB). View file
 
indexes/docs/_1_Lucene90_0.tip ADDED
Binary file (1.12 kB). View file
 
indexes/docs/_1_Lucene90_0.tmd ADDED
Binary file (274 Bytes). View file
 
indexes/docs/_1g.fdm DELETED
Binary file (157 Bytes)
 
indexes/docs/_1g.fdt DELETED
Binary file (185 kB)
 
indexes/docs/_1g.fdx DELETED
Binary file (91 Bytes)
 
indexes/docs/_1g.nvd DELETED
Binary file (1.27 kB)
 
indexes/docs/_1g.nvm DELETED
Binary file (103 Bytes)
 
indexes/docs/_1g.si DELETED
Binary file (538 Bytes)
 
indexes/docs/_1g.tvd DELETED
Binary file (92.2 kB)
 
indexes/docs/_1g.tvm DELETED
Binary file (162 Bytes)
 
indexes/docs/_1g.tvx DELETED
Binary file (118 Bytes)
 
indexes/docs/_1g_Lucene90_0.doc DELETED
Binary file (21.5 kB)
 
indexes/docs/_1g_Lucene90_0.dvm DELETED
Binary file (171 Bytes)
 
indexes/docs/_1g_Lucene90_0.pos DELETED
Binary file (18.6 kB)
 
indexes/docs/_1g_Lucene90_0.tim DELETED
Binary file (42.9 kB)
 
indexes/docs/_1g_Lucene90_0.tip DELETED
Binary file (1.29 kB)