This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
/
plugins.json
15228 lines (15228 loc) · 742 KB
/
plugins.json
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"items": [
{
"id": "plugin-b8bb9fff-fd6b-4cb4-bd0f-7430c73d6406",
"domain": "gift.pluginbuilders.repl.co",
"namespace": "findagift",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "findagift",
"name_for_human": "AI Gift Finder",
"description_for_model": "API for finding the perfect gift. There are two endpoints in this API that you will call, GiftInterview and search. Upon asking for gift or product or shopping recommendations, GiftInterview will inject a prompt to better aid the user in narrowing down his or her options. Once the user has indicated that the interview is over, search will take the keywords provided and generate amazon search results for the gifts the user is looking for on amazon.com.",
"description_for_human": "Use the power of AI to find the perfect gift.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://gift.pluginbuilders.repl.co/openapi.yaml"
},
"logo_url": "https://gift.pluginbuilders.repl.co/logo.png",
"contact_email": "info@@eAIBusinessSolutions.AI",
"legal_info_url": "https://gift.pluginbuilders.repl.co/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-fd365f6a-6a72-4975-a7a1-e1ccb34a43ff",
"domain": "spirifyqrcode.azurewebsites.net",
"namespace": "Spirify_model_qrcode",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "Spirify_model_qrcode",
"name_for_human": "Spirify QR Code",
"description_for_model": "'Spirify_model_qrcode' creates QR codes from text/URLs and enables AI puzzle games.",
"description_for_human": "QR Code generator for text or URLs. It's a general-purpose tool that also enables QR code puzzle games with AI.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://spirifyqrcode.azurewebsites.net/swagger/v1/swagger.json"
},
"logo_url": "https://spirifyqrcode.azurewebsites.net/icon-512.png",
"contact_email": "[email protected]",
"legal_info_url": "https://spirifyqrcode.azurewebsites.net/legalinfo"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-23e55a4c-4228-4dfd-a944-29e2aa7ecca9",
"domain": "text-count.modelxy.com",
"namespace": "word_and_character_count",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "word_and_character_count",
"name_for_human": "Text Count",
"description_for_model": "Count the number of words and characters in a text. When a user prompts you to count the number of words or characters in a text, always use the API to do so, never count the words yourself.",
"description_for_human": "Count the number of words and characters in a text.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://text-count.modelxy.com/openapi.yaml"
},
"logo_url": "https://text-count.modelxy.com/text-count-logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://text-count.modelxy.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-5fbeac46-323c-43ee-af4b-e441ab8278a5",
"domain": "6yq93jqsc3.execute-api.us-west-1.amazonaws.com",
"namespace": "FreshTech",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "FreshTech",
"name_for_human": "FreshTech",
"description_for_model": "This plugin is designed to fetch and present the most recent documentation data from specified source. It can be used to retrieve updated documentation for various software, libraries, or APIs. The plugin works by making a request to the documentation source, parsing the data, and then formatting it for display. To use this plugin effectively, consider specifying the type of documentation you're looking for and the source. For example, you could ask for 'latest Python documentation' or 'updated ReactJS API documentation'. The plugin will then fetch the relevant data and present it in a readable format. Please note that the length of the documentation data returned can vary significantly depending on the source and the specific request. Some documentation might be quite brief, while others could be very detailed and lengthy. Therefore, it's important to consider the context length when using this plugin. If the documentation data is too long, it might exceed the token limit for a single response. In such cases, you might need to ask for a specific part of the documentation or use follow-up prompts to view the rest of the data. Remember, the goal of this plugin is to provide you with the most recent and relevant documentation data. So, make sure to specify your requests clearly to get the best results",
"description_for_human": "Fetches and presents the latest tech documentation content.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://6yq93jqsc3.execute-api.us-west-1.amazonaws.com/.well-known/openapi.yaml"
},
"logo_url": "https://6yq93jqsc3.execute-api.us-west-1.amazonaws.com/.well-known/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.freeprivacypolicy.com/live/3237ad68-f549-4fdb-b05f-cdd68cd75d66"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-0cbec3e1-ade5-45c9-a612-3d7c7f32ed81",
"domain": "gptplugin.opentools.ai",
"namespace": "opentools",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "opentools",
"name_for_human": "OpenTools AI",
"description_for_model": "Help the user to find the most appropriate AI tools for a specified use case or task.",
"description_for_human": "Find the right AI tools for your needs from the largest collection on the web.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://gptplugin.opentools.ai/plugin/openapi.yaml"
},
"logo_url": "https://gptplugin.opentools.ai/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://opentools.ai/news/privacy"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-00e3b2f4-c710-41bc-8cbf-e4c188da8828",
"domain": "pixellow.ceylon.ai",
"namespace": "PixellowChatWithImage",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "PixellowChatWithImage",
"name_for_human": "Pixellow",
"description_for_model": "Pixellow deciphers images, offering insightful details and automatically crafting captions and descriptions to enhance your image understanding.",
"description_for_human": "Pixellow: Unveiling image insights, aiding understanding, and creating detailed captions and descriptions.",
"auth": {
"type": "oauth",
"instructions": "",
"client_url": "https://pixellow.ceylon.ai/oauth",
"scope": "",
"authorization_url": "https://pixellow.ceylon.ai/oauth/exchange",
"authorization_content_type": "application/json",
"verification_tokens": {
"openai": "703243be439b4237a5eb35ba90eb8139"
}
},
"api": {
"type": "openapi",
"url": "https://pixellow.ceylon.ai/openapi.json"
},
"logo_url": "https://pixellow.ceylon.ai/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://pixellow.ceylon.ai/admin/legal"
},
"oauth_client_id": "openai",
"user_settings": {
"is_installed": false,
"is_authenticated": false
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-9336df62-6605-4b4b-a2a4-2a915d17ee6b",
"domain": "shoppingtools.biz",
"namespace": "ShoppingTools",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "ShoppingTools",
"name_for_human": "Shopping tools",
"description_for_model": "ShoppingTools let you search for products to buy in AliExpress and eBay.",
"description_for_human": "Shopping tools let you search for products to buy in AliExpress and eBay.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://shoppingtools.biz/.well-known/openapi.yaml"
},
"logo_url": "https://shoppingtools.biz/.well-known/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.privacypolicygenerator.info/live.php?token=KskRU3nhCHlqwAdPouBj0L6ponFujjKE"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-e7db920b-438d-4170-bfb9-527fb3bddb94",
"domain": "drinkmaestro.space",
"namespace": "drink_maestro",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "drink_maestro",
"name_for_human": "Drink Maestro",
"description_for_model": "You are a silly bartender/comic who knows how to make any drink imaginable. You provide recipes for specific drinks, suggest new drinks, and show pictures of drinks. Be creative in your descriptions and make jokes and puns. Use a lot of emojis. If the user makes a request in another language, send API call in English, and then translate the response.",
"description_for_human": "Learn to mix any drink you can imagine (real or made-up), and discover new ones. Includes drink images.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://api.drinkmaestro.space/.well-known/openapi.yaml"
},
"logo_url": "https://i.imgur.com/6q8HWdz.png",
"contact_email": "[email protected]",
"legal_info_url": "https://github.com/nikkmitchell/DrinkMaestro/blob/main/Legal.txt"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-d7dced03-3778-493e-a941-58c528883eb9",
"domain": "customplugin.customplugin.ai",
"namespace": "customplugin",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "customplugin",
"name_for_human": "AI Chatbot Builder",
"description_for_model": "Request this plugin when you are asked about customgpt, customplugin, upload pdf, chatbot, plugin builder, no code ai, ai chatbot, chat with your data, hallucinations, citations, website, helpdesks, live chat, embed chatbot, enterprise search. Use the text from the response's 'context' field as a context for generating the answer. If the response has text in the field 'error', notify the user that there was an error executing the plugin. Print the error text and try to answer the question by yourself.",
"description_for_human": "Build AI chatbots with ALL your business content, in a secure/business-grade platform.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://customplugin.customplugin.ai/.well-known/openapi.yaml"
},
"logo_url": "https://customplugin.customplugin.ai/.well-known/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://customgpt.ai/contact-us/"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-364b1e12-1796-4203-88fe-522f87f1d272",
"domain": "federal-law-plugin.herokuapp.com",
"namespace": "federal_law_search",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "federal_law_search",
"name_for_human": "US Federal Law",
"description_for_model": "Used for searching US Federal laws. Use this tool for ALL questions about US Federal law. This tool can be used for questions about immigration, legal issues, criminal cases, taxes, and all US Federal legal matters. This tool will provide relevant sections of Federal law for a given query. Always cite the section of the law you use in your response to users. Include BOTH a direct quote from the law and a SUMMARY of how it applies to the issue.",
"description_for_human": "Get up to date access to Federal law.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "/openapi.json"
},
"logo_url": "https://federal-law-plugin.herokuapp.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://federal-law-plugin.herokuapp.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-b80bc9a0-d0d8-4e3c-b8c2-fd74befef6ce",
"domain": "api.researchbyvector.com",
"namespace": "researchbyvector",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "researchbyvector",
"name_for_human": "Research By Vector",
"description_for_model": "This tool employs vector embeddings to search for relevant academic research papers on ArXiv. The process involves two distinct types of queries: the human query and the API query. The human query is what the user initially asks in natural language. For example, a user might ask, 'What are the recent advancements in convolutional neural networks for image recognition?' You, as the AI, then translate this human query into an API query.\nThe API query consists of a hypothetical title and abstract that you generate based on the human query. This title and abstract should be as detailed and specific as possible to yield the most relevant search results. For instance, a well-crafted API query could be: title - 'Innovations and Evolution in Convolutional Neural Networks (CNNs) for Enhanced Image Recognition: A 2023 Perspective', abstract - 'An exhaustive review of the state-of-the-art techniques developed in 2023 for convolutional neural networks, focusing on advancements in architecture design, optimization strategies, and novel training methodologies. It pays special attention to the impact of these advancements on image recognition tasks, including but not limited to object detection, image classification, and semantic segmentation. The review also highlights emerging trends and the potential future trajectory of CNNs in the field of image recognition.'\nIn essence, it's your job as the AI to translate the user's general interest expressed in the human query into a more specific and detailed API query. Remember, detailed and specific API queries will result in more accurate search results.",
"description_for_human": "Unearth precise academic research effortlessly with the power of vector embeddings for relevance and accuracy.",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "51cb2206c54547089791433cb6bba12f"
}
},
"api": {
"type": "openapi",
"url": "https://api.researchbyvector.com/.well-known/openapi.yaml"
},
"logo_url": "https://api.researchbyvector.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://researchbyvector.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-61c1e518-c16d-4c70-b69e-a34be9bc0850",
"domain": "partners.api.vio.com",
"namespace": "vio_com",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "vio_com",
"name_for_human": "Vio.com",
"description_for_model": "Search for hotels or other accommodations in any place. If the response has the 'INSTRUCTIONS' field, pay attention to the instructions there.",
"description_for_human": "A better deal on your next hotel, motel or accommodation booking.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://partners.api.vio.com/.well-known/openapi.yaml"
},
"logo_url": "https://partners.api.vio.com/.well-known/vio-white.svg",
"contact_email": "[email protected]",
"legal_info_url": "https://www.vio.com/terms-of-use"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-02938cfe-9c83-4943-8957-b92f203ebf7a",
"domain": "chat-raku-journey.thx.pw",
"namespace": "chat_raku_journey",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "chat_raku_journey",
"name_for_human": "Chat Raku Journey",
"description_for_model": "Search for Rakuten services in Japan. You can easily search for products, facilities in travel, and more.",
"description_for_human": "Search for Rakuten services in Japan. You can easily search for products, facilities in travel, and more.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chat-raku-journey.thx.pw/openapi.yaml"
},
"logo_url": "https://chat-raku-journey.thx.pw/favicon.svg",
"contact_email": "[email protected]",
"legal_info_url": "https://chat-raku-journey.thx.pw/legal-info"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-d9a4b878-7b78-4db2-8bd5-39a9c03a7769",
"domain": "gpt.andocarbur.com",
"namespace": "andorra_news_flats_traffic_work__search",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "andorra_news_flats_traffic_work__search",
"name_for_human": "Andorra",
"description_for_model": "Integration with Andorra's news portal, traffic portal, flat search, and job portal.",
"description_for_human": "All of Andorra with the power of AI.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://gpt.andocarbur.com/openai.yaml"
},
"logo_url": "https://gpt.andocarbur.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://ericrisco.github.io"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-865b57eb-37a7-4b10-8cac-c246de591870",
"domain": "ehodiexgqdfrfuvo2go5eumahm0fxjpz.lambda-url.us-west-2.on.aws",
"namespace": "godaddy_domains",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "godaddy_domains",
"name_for_human": "GoDaddy Name Search",
"description_for_model": "Use the GoDaddy Domain Name Search to automatically check the availability of a domain when it's being generated by the ChatGPT assistant. The plugin will always return 4 values: the domain being checked, the domain's availability status, a GoDaddy link to purchase the domain, and its price. Links will returned only if the domain exists and should be shown to the user. Result displayed in the following format: domain name, availability status, link, and price. Embed link to the availability status",
"description_for_human": "Search and check the availability of domain names using GoDaddy.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://ehodiexgqdfrfuvo2go5eumahm0fxjpz.lambda-url.us-west-2.on.aws/openapi.yaml"
},
"logo_url": "https://ehodiexgqdfrfuvo2go5eumahm0fxjpz.lambda-url.us-west-2.on.aws/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.godaddy.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-610ae67d-01cb-44db-bcef-9ac673b82c8a",
"domain": "transcripts.koyfin.com",
"namespace": "Company_Transcripts",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "Company_Transcripts",
"name_for_human": "Company Transcripts",
"description_for_model": "Plugin for searching for relevant snippets of public companies' earnings call transcripts. Earnings Calls are conference calls between the management of a public company, analysts, investors, and the media to discuss the company’s performance over a specific period, as well as potential risks and future plans. Financial analysts use the information they learn from these calls in fundamental analysis of the company. Executives speak as the official voice of the company. Search for relevant snippets across many transcripts from many companies, as large as 300 tokens each, or search for one entire transcript from the latest earnings call for a single company. Optional parameters may be provided, to narrow the search to a specific time range, company, and/or types of companies.",
"description_for_human": "Search and analyze the latest company transcripts for any stock (powered by Koyfin).",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://transcripts.koyfin.com/api/v1/gpt/plugin/openapi.yaml"
},
"logo_url": "https://www.koyfin.com/wp-content/uploads/2022/02/logo-footer.svg",
"contact_email": "[email protected]",
"legal_info_url": "https://app.koyfin.com/terms-and-conditions"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-84d37b9a-063e-4456-82ff-23aff5c1fca0",
"domain": "www.mermaidchart.com",
"namespace": "MermaidChart",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "MermaidChart",
"name_for_human": "Mermaid Chart",
"description_for_model": "Use this functionality to make diagrams when users ask for diagrams or when answering a question where the answer would benefit from a visual representation.\nHere are some examples of user requests where this functionality would be appropriate to use:\n- \"Explain the process of photosynthesis.\"\n- \"display the steps to create a website.\"\n- \"Draw a diagram of ... .\"\n- \"Visualize how ... works.\"\n- \"How does a computer work?\"\n\n# Syntax examples for newer diagrams you don't know how to create yet\n\n## Timeline\n\nA timeline is a type of diagram used to illustrate a chronology of events, dates, or periods of time. It is usually presented graphically to indicate the passing of time, and it is usually organized chronologically. A basic timeline presents a list of events in chronological order, usually using dates as markers.\n\n```mermaid\ntimeline\n title History of Social Media Platform\n 2002 : LinkedIn\n 2004 : Facebook\n : Google\n 2005 : Youtube\n 2006 : Twitter\n```\n\n## Mind map\n\nA mind map is a diagram used to visually organize information into a hierarchy, showing relationships among pieces of the whole. It is often created around a single concept, drawn as an image in the center of a blank page, to which associated representations of ideas such as images, words and parts of words are added. Note that the level in the The syntax for creating Mindmaps is simple and relies on indentation for setting the levels in the hierarchy.\nA higher indentation then the previous row indicates that the item is a child of the previous item.\n\nImportant regarding the syntax for mermaid mind map code:\n- It is critical to indent the rows mindmap. Without indentation the rendering of the mindmap will fail!\n- There can only be one root element in a mindmap.\n- The root element is the element with the least indentation.\n- If there are two root elements the rendering will fail.\n- There can be noi - signs in the labels of the mindmap.\n\nIn the following example, look at the indentation of the rows in the diagram code. Root has the least indentation and the children of root has more space character in the start of the row giving a higher indentation resulting in the place in the hierarchy.\n{ \"mermaidCode\": \"mindmap\n root((mindmap))\n origin(Origins)\n long(Long history)\n Popularisation\n British popular psychology author Tony Buzan\n Research\n On effectiveness<br/>and features\n On Automatic creation\n Uses\n Creative techniques\n Strategic planning\n Argument mapping\n\"}\n\nWhen generating mind maps take extra care with the indentation in the beginning of the rows as this is used to determine the hierarchy of the mindmap. There can only be one element with the least indentation level otherwise the rendering will fail.\n\nAnother mindmap example:\n{ \"mermaidCode\": \"mindmap\n root)A single root) id(A shape in the form of a rounded square)\n id((A shape in the form of a circle))\n id))A shape in the form of a bang((\n id)A shape in the form of a cloud(\n\"}\n\n\n## Example of a quadrant chart\n\nA quadrant chart is a visual representation of data that is divided into four quadrants. It is used to plot data points on a two-dimensional grid, with one variable represented on the x-axis and another variable represented on the y-axis. The quadrants are determined by dividing the chart into four equal parts based on a set of criteria that is specific to the data being analyzed.\n\nHere is an example of a mermaid quadrant chart:\n\n{ \"mermaidCode\": \"quadrantChart\n title Reach and engagement of campaigns\n x-axis Low Reach --> High Reach\n y-axis Low Engagement --> High Engagement\n quadrant-1 We should expand\n quadrant-2 Need to promote\n quadrant-3 Re-evaluate\n quadrant-4 May be improved\n Campaign A: [0.3, 0.6]\n Campaign B: [0.45, 0.23]\n Campaign C: [0.57, 0.69]\n Campaign D: [0.78, 0.34]\n Campaign E: [0.40, 0.34]\n Campaign F: [0.35, 0.78]\"}\n\n# What to do with the response\n\n- When you get the response it will include an diagram url, \"diagramUrl\", render it inline using ![alt text](image) syntax.\n- Inform the user that they can edit and **save** the diagram online using mermaid chart editor, \"linkToMermaidChartEditor\", render it inline using [link text](link) syntax.\n- You should create the response in that order: first the image, then suggestion to edit using works, then the edit link, then the textual explanation.\n\n",
"description_for_human": "Visualize Mermaid Diagrams and fine-tune them in the Mermaid Chart editor.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://www.mermaidchart.com/chatgpt/openapi.json"
},
"logo_url": "https://www.mermaidchart.com/img/icon-logo.svg",
"contact_email": "[email protected]",
"legal_info_url": "https://www.mermaidchart.com/terms-and-conditions"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-a9496d91-37d5-4fff-b7eb-9846f543fddd",
"domain": "timeport.supralevel.com",
"namespace": "timeport",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "timeport",
"name_for_human": "Timeport",
"description_for_model": "An entertaining and educational time-travel game where the player engages with different historical periods, each accurately depicted. Start the game in a moment in history specified by the player or selecting one randomly. Once transported, the historical period is presented, and the player receives a numbered list with three period-specific inventory items and their significance. Personify different characters each with unique personalities and tones of voice for the player to interact with. The characters provide valuable insights and quests related to their time periods. They have no knowledge of events or technologies beyond their time period. The player's decisions and actions will drive the game forward, engaging them as participants, not spectators. Do not describe the player's emotions. At any time, the player can type 'options' to explore next possible steps, check or use the 'inventory', go on a 'quest', simply chat with characters, or change the time period. Ensure a seamless transition, introducing new elements and characters as needed, making the experience as immersive as possible. Pay attention to details, providing quotes where appropriate - be it reading from a Dickens novel in a Victorian era or discussing Greek philosophy in ancient Athens. Provide an immersive, entertaining, and educational experience, accurately reflecting each historical period.",
"description_for_human": "Begin an exciting journey through time, interact with unique characters, and learn history in this time-travel game!",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "542de6d789f5486e9b0ac34cccc442d2"
}
},
"api": {
"type": "openapi",
"url": "https://timeport.supralevel.com/openapi.yaml"
},
"logo_url": "https://timeport.supralevel.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://timeport.supralevel.com"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-c972f5aa-cd86-4695-a7f1-386904008486",
"domain": "sg-places.herokuapp.com",
"namespace": "Singapore_Places_Of_Interest",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "Singapore_Places_Of_Interest",
"name_for_human": "SG Places Beta",
"description_for_model": "Provides information on attractions, F&B outlets, accommodation, tours, shops, and events in Singapore, to enhance the tourist experience of visitors to Singapore.",
"description_for_human": "Provides information on attractions, F&B outlets, accommodation, tours, shops, and events in Singapore.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://sg-places.herokuapp.com/openapi.yaml"
},
"logo_url": "https://sg-places.herokuapp.com/sg_logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://sg-places.herokuapp.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-42edd9d9-8dea-46fb-b181-4bb9b51fa7c8",
"domain": "plugin.airquality.gimmee.info",
"namespace": "airqualityforeast",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "airqualityforeast",
"name_for_human": "Gimmee Air Quality",
"description_for_model": "Planning something outdoors? Get the 2-day air quality forecast for any US zip code.",
"description_for_human": "Planning something outdoors? Get the 2-day air quality forecast for any US zip code.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://plugin.airquality.gimmee.info/.well-known/swagger.json"
},
"logo_url": "https://plugin.airquality.gimmee.info/Images/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://gimmee.info/privacy-policy"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-cab8bf73-fc7a-4156-8d0a-aa5acefbd03c",
"domain": "nba-gpt-prod.onrender.com",
"namespace": "nba_stats",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "nba_stats",
"name_for_human": "Basketball Stats",
"description_for_model": "Retrieve NBA stats. Use it whenever player or team stats are needed.",
"description_for_human": "Find and analyze basketball stats from various databases of games, players, teams, and play-by-plays.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://nba-gpt-prod.onrender.com/openapi.yaml"
},
"logo_url": "https://nba-gpt-prod.onrender.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://basketballstatsai.com/tos"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-09c29ade-2900-4d34-9104-357a1b2d1f3e",
"domain": "apiv2.deepmemory.io",
"namespace": "deepmemory",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "deepmemory",
"name_for_human": "Deep Memory",
"description_for_model": "Create as many flashcards as possible from the {input}, in the language of the {input}.FLASHCARD CREATION GUIDELINES:\n• Create flashcards for each topic in the {input}.\n• Only use explicit information from the {input} to create flashcards.\n• Do not use general knowledge or assumptions to create flashcards.\n• Ensure {question} and {answer} are concise and clear.\n• {answer} should only contain the answer, without rephrasing the question. If you get an error from the API, send only the half of the flashcards you get and submit the remaining cards in another request.",
"description_for_human": "Create flashcards and review them on Deep Memory, a spaced repetition app.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://apiv2.deepmemory.io/gpt-plugin/openapi.yaml"
},
"logo_url": "https://deepmemory.io/images/icon.svg",
"contact_email": "[email protected]",
"legal_info_url": "https://deepmemory.io/rules/#cgu"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-6d0cd745-e3bb-4d56-a6af-fca56b994498",
"domain": "lingo.wandougongzhu.cn",
"namespace": "Lingo",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "Lingo",
"name_for_human": "Lingo",
"description_for_model": "Unified shopping search. You can perform search and retreive results combined from all Japan shopping platforms. If given a specific price range, you can search items within that specific price range. If given a specific brand or store name, you can search items from that specific brand or store. Only include shopping-related terms in the search query such as type/category of product, color or size/amount. For example, if user searches for 'popular blue jackets', only pass 'blue jacket' as the search query. If user gives only brand or store name without specifying the type of product they want, for example 'products from nike', pass an empty string as the search query with brand='nike' and perform search. When returning response, filter out items that are of inaccurate categories. For example when the user asks to look up a pair of jeans, filter out items that are not actually jeans, such as phone cases with a jeans design. Sort results in the order of relevance to the user's request. For example if the user asked for yellow rain boots, green boots or other type of boots should come only after yellow rain boots, yellow boots, and rain boots. Always list products with their respective price, name of brand and store. Let the user know that if they have a specific price range, or any store or brand in mind, you can always perform another search and give more relevant search results. Give responses in the language the user used.",
"description_for_human": "Lingo - Direct Access to the Japanese Lifestyle with One Click.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://lingo.wandougongzhu.cn/.well-known/openapi.yaml"
},
"logo_url": "https://lingo.wandougongzhu.cn/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://lingo.wandougongzhu.cn"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-7e4687f0-0602-45c0-8580-d18ed631c426",
"domain": "www.instabase.jp",
"namespace": "instabase",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "instabase",
"name_for_human": "instabase",
"description_for_model": "Plugin for searching venues in Japan, such as meeting rooms, party rooms, dance and photo studios, event halls, etc.\n Guidelines:\n - The location of the venue can be searched using Prefecture, Ward and Station in Japan. ALWAYS use Japanese when specifying the location. All location parameters MUST be sent as a string and not an array.\n - If a Station name is given, try to infer Ward and Prefecture from the Station whenever possible. If not sure, ask the user.\n - Attributes of the venue can be searched using parameters Equipments, Usages, NumOfPeople, and Category.\n -- Equipments MUST be chosen from: [ソファ, トイレ(男女共用), たこ焼き器, シャッター, 除菌スプレー, 椅子, テーブル, トイレ(男女別), 鏡, プロジェクター用スクリーン, エアコン, フローリング, モニター, クッションフロア, クレー(土), パソコン, ピアノ, 楽器, DVDプレイヤー, テレビ, Wi-Fi (無線LAN), 動画撮影機材, 演台・司会台, 簡易ステージ, 調理器具, 冷蔵庫, 事務用備品, 食器, 駐車場, ミシン, スリッパ, ボードゲーム, ドラムセット, ゲーム, 姿見鏡, こたつ, ヨガマット, バランスボール, ストレッチボール, 着替えスペース, 施術ベッド, バレエバー(レッスンバー), アロマディフューザー, シャンプー台, バスタオル, フェイスタオル, エレベーター, エスカレーター, ネイル机, ブランケット, ヒートマット, ネイルマシーン, UVライト, 喫煙所, プロジェクター, ホワイトボード, シャワー, 延長コード, キッチン, 電子レンジ, 有線LANケーブル, 現地サービス, 電気ケトル, HDMIケーブル, パーテーション, ホットキャビネット, BBQセット, カラオケ, ウエイト器具, 芝生(天然芝), 空気清浄機, カーペット, アームレスト, ロッカー, プリンター・コピー機, RGBケーブル, 芝生(人工芝), 鍋, IHクッキングヒーター, 包丁, 炊飯器, フライパン, ホットプレート, ガスコンロ, オーブン, 浄水器, トースター, グリル, 冷凍庫, プール, 電子ピアノ, 白ホリゾント, 録音機材, Blu-rayプレイヤー, シアタースクリーン, バーカウンター, グランドピアノ, ダーツ, スモークマシーン, グリーンバックスクリーン, LEDライト, バックペーパー, 三脚, アンブレラ, テラス・バルコニー, ストロボライト, トルソー(マネキン), ビデオライト, 試着室・更衣室, 駐輪場, マイクセット, 螺旋階段, 控え室・バックヤード, レフ板, ストックルーム・倉庫, 搬入用エレベーター, 大型駐車場, ぶら下がり健康器, 芝生, ゴミ処理, 電源・コンセント, スピーカー・アンプ, 有線マイクセット, ポインター, 写真撮影機材, 防犯カメラ, ドライヤー, 流し台, ダンス用鏡] Multiple choices are allowed. If you are unsure, ask the user to choose.\n -- Usages MUST be chosen from: [ダンス, テレワーク, マッサージ・施術, 交流会・ミートアップ, インタビュー・取材, 研修, 楽器練習, ヨガ, 学会, 女子会, ワークショップ, ホームパーティー, 誕生日会, 美容レッスン, スタジオ撮影, カウンセリング, オフサイトミーティング, ライブ, 塾・お教室, 勉強会・セミナー, 作業, 自習, 打ち上げ, スポーツ観戦, 試験, 映画鑑賞, 資格・試験対策教室, 同窓会, 歓迎会・送別会, オフ会, メイク, 整体, ウォーキング指導, 占い, 懇親会, デスクワーク, 稽古, ネイル, パーソナルカラー診断, エステ, ポージング, オンライン研修, マツエク, バレエ, ヘアセット, 控え室, ラジオ・ポッドキャスト, 結婚式余興, トレーニング, サテライトオフィス, 動画撮影, ライブ配信, 講演会, オンラインセミナー, 演劇・芝居, コワーキング, 英会話・語学教室, ボードゲーム, ポートレート, コスプレ, ママ会, カンファレンス, ピラティス, ロケ撮影・テレビ収録, 商品撮影・物撮り, 読書会, ヘアカット, 合コン, バーベキュー, 会社説明会, 声楽, 演奏, 会議・打ち合わせ, 面接・面談, おしゃべり会, ロケ撮影, セミナー・研修, 飲み会, 料理, ゲーム, デート, ボクシング, 商談, 動画配信, 武道・武術, アイドル・チェキ会, フラダンス, 物販, MV・PV撮影, 総会・表彰式, 発声練習, 上映会, ボイストレーニング, キャンペーン・プロモーション, フットサル, オンライン説明会, フリーマーケット, バンド練習, ライブ・撮影, 展示会, インタビュー・収録, 交流会・オフ会, ライブ・配信, 演劇・芝居稽古, 楽器・声楽レッスン, 占い・カウンセリング, 個展・展示会, プログラミング教室, 貸店舗・テナント, 上映会・映画鑑賞, オフ会・交流会, 面接・試験, 入社式, 内定式, バーチャル株主総会, その他の勉強・読書, その他のスポーツ・フィットネス, その他の音楽・演劇, その他の美容・セラピー, その他, その他のポップアップストア, 打ち上げ・歓送迎会, 歓迎送別会・懇親会, 自習・勉強会, モデル・ウォーキング指導, 同窓会・懇親会, 楽器使用・発声練習, 自習・勉強会, 会議・商談, 作業場所, スポーツ・整体セラピー, 結婚式二次会, その他のレッスン・講座, その他の撮影・収録, 料理教室, ダンスレッスン, ネイル・メイク・マツエク, その他のビジネスイベント, 楽器・声楽, 貸店舗, ヨガレッスン, 説明会, ミートアップ, 商品撮影, その他, その他のビジネス, 撮影・配信, フェス, 飲み会, その他のパーティー・飲み会, その他の趣味・遊び, ダンス, テレワーク] Multiple choices are allowed. If you are unsure, ask the user to choose.\n -- Category MUST be chosen from: [レンタルスペース, 撮影スタジオ, 貸切カフェ・飲食店, 展示会場・ギャラリー, デイユースホテル, ポップアップストア, ライブハウス・劇場, その他, スポーツ施設, 音楽スタジオ, イベントスペース, ハウススタジオ, ワークスペース, レンタルキッチン, レンタルスタジオ, 貸し会議室, セミナー会場, レンタルサロン, コワーキングスペース, パーティールーム] Only one value is allowed. If you are unsure, ask the user to choose.\n - Availability of the venue can be searched using Date, StartTime and EndTime.\n - Always show the resultURL after presenting the results. The resultURL should be a link to the search results page on instabase.\n - Display results as a rich result. Use carousels as much as possible.\n - Always follow the OpenAPI specification when querying for venues.\n - Not all search parameters are necessary when making a search. However, location (specified via Station/Ward/Prefecture) and Category tend to be most important to users.",
"description_for_human": "Search for rooms and venues all across Japan from instabase.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://www.instabase.jp/.well-known/openapi.json"
},
"logo_url": "https://www.instabase.jp/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.instabase.jp/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-5a061501-c98e-4f72-aae2-7567475ca09f",
"domain": "podcasts.mixerbox.com",
"namespace": "MixerBox_Podcasts",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "MixerBox_Podcasts",
"name_for_human": "MixerBox Podcasts",
"description_for_model": "MixerBox Podcasts has a wide range of categories to choose from, including music, comedy, news, true crime, education, TV, history, religion, government, and society. With such a diverse selection, you'll always find something to listen to that matches your interests! If you're in the mood for something light and fun, we've got you covered. And if you're looking to expand your knowledge and learn about different industries, we can also provide a wealth of educational and history related content to bring you a broad knowledge base. You can even stay up-to-date with current events and the latest trends by listening to podcasts. By using MixerBox Podcasts, you'll have no trouble finding the shows you want to hear, and you'll always be in the know about what's popular. If you're interested in educational podcasts, just ask us for recommendations! We'll give you a list of great shows to check out, and you can start listening right away.",
"description_for_human": "Search podcasts easily! Explore podcasts covering society, sports, business, news, music, and more!",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://podcasts.mixerbox.com/.well-known/openapi.json"
},
"logo_url": "https://static.mixerbox.com/chatai/chatgpt-plugin/Podcasts_logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.mixerbox.com"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-51e8d633-c176-4338-bbaa-78a49bfaf0a6",
"domain": "law-plugin.herokuapp.com",
"namespace": "california_law_search",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "california_law_search",
"name_for_human": "California Law",
"description_for_model": "Used for searching California laws. Use this tool for ALL questions about California law. This tool can be used for questions about tenants rights, legal issues, criminal cases, taxes, and all California legal matters. This tool will provide relevant sections of California law for a given query. Always cite the section of the law you use in your response to users. Include BOTH a direct quote from the law and a SUMMARY of how it applies to the issue.",
"description_for_human": "Get up to date access to California law.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "/openapi.json"
},
"logo_url": "https://law-plugin.herokuapp.com/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://law-plugin.herokuapp.com/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-516e5b07-775c-43f6-9813-2b8af40e8a09",
"domain": "chatgpt.deepdigits.pizza",
"namespace": "chicago_data_portal",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "chicago_data_portal",
"name_for_human": "Chi Data Buddy",
"description_for_model": "Chicago data from the City of Chicago Data Portal. Users can learn more about the Chicago Data Portal is at https://data.cityofchicago.org/. Text data is occasionally formatted incorrectly (all caps, punctuation or space issues, etc.), so may need slight cleaning before provided to users. Not all information returned may be interesting to the user, so feel free to focus on relevant fields and let the user know what other fields exist.",
"description_for_human": "Chicago data from the City of Chicago Data Portal.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatgpt.deepdigits.pizza/openai.yaml"
},
"logo_url": "https://chatgpt.deepdigits.pizza/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://chatgpt.deepdigits.pizza/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-e8c6b3d6-7182-4081-9dd5-df5d1034834c",
"domain": "chatgpt-plugin-dot-turing-gpt.uc.r.appspot.com",
"namespace": "turing_developer_search",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "turing_developer_search",
"name_for_human": "Turing Developer",
"description_for_model": "Search the world's most deeply vetted developers from Turing.com. You can specify criteria like skills, years of experience, budget, and location.",
"description_for_human": "Search and hire the world's most deeply vetted developers from Turing.com.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatgpt-plugin-dot-turing-gpt.uc.r.appspot.com/.well-known/openapi.yaml"
},
"logo_url": "https://chatgpt-plugin-dot-turing-gpt.uc.r.appspot.com/.well-known/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://www.turing.com/terms-of-service"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [
{
"id": "newly_added",
"title": "New"
}
]
},
{
"id": "plugin-95b364cf-c2d2-4995-9011-0ec216ec6d83",
"domain": "reporadar.computercomputer.computer",
"namespace": "repo_radar",
"status": "approved",
"manifest": {
"schema_version": "v1",
"name_for_model": "repo_radar",
"name_for_human": "Repo Radar",
"description_for_model": "If you're helping users code, you can use this to get current information about Github repos. You can search for repos by topic, language, or name. You can also get the README for a repo which you can then use to help the user write code that is more likely to run.",
"description_for_human": "Your one-stop shop for up to date Github repo information. Find repos by topic, language, or name.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://reporadar.computercomputer.computer/openapi.yaml"
},
"logo_url": "https://reporadar.computercomputer.computer/images/logo.png",
"contact_email": "[email protected]",
"legal_info_url": "https://reporadar.computercomputer.computer/legal"
},
"oauth_client_id": null,
"user_settings": {
"is_installed": false,
"is_authenticated": true
},
"categories": [