-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.index_cache.json
1829 lines (1829 loc) · 139 KB
/
.index_cache.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
{
"ai-related/a-day-in-gpt-land.md": {
"hash": "9b11e64934bb12501dbc1c4c78e72f62",
"title": "A Day In Gpt Land",
"description": "The agent aims to generate a fully random daily itinerary for the user, starting from morning to bedtime, in a creative and exciting manner, encompassing the user's preferences and constraints while providing a unique and adventurous experience.",
"repo_link": "finished/by-category/ai-related/a-day-in-gpt-land.md",
"hf_link": "https://hf.co/chat/assistant/675b7e9621499ff25259eabb"
},
"ai-related/ai-career-ideator.md": {
"hash": "e0feac1bf72a9c3cfa6d5d6fe15896cb",
"title": "Ai Career Ideator",
"description": "The AI Career Ideation Tool is an AI-powered agent designed to guide users in embracing AI, enhance their proficiency in AI technologies, and advance their careers by providing tailored recommendations on learning opportunities, certifications, CV enhancements, and technology focuses.",
"repo_link": "finished/by-category/ai-related/ai-career-ideator.md",
"hf_link": "https://hf.co/chat/assistant/6701df91cb513bb057ded417"
},
"ai-related/ai-could-help-here.md": {
"hash": "c73215394fb1911865a6699e23c03e33",
"title": "Ai Could Help Here",
"description": "This AI agent helps users explore how AI technologies and custom LLMs can improve their lives by providing personalized suggestions based on the challenges they face, all while maintaining a friendly and supportive tone.",
"repo_link": "finished/by-category/ai-related/ai-could-help-here.md",
"hf_link": null
},
"ai-related/ai-tech-advisor.md": {
"hash": "36c037b34c40994ea4f37d85186d53e8",
"title": "Ai Tech Advisor",
"description": "AI Tech Advisor recommends emerging AI technologies for specific use cases, offering insights and detailed explanations in a technical and informative manner.",
"repo_link": "finished/by-category/ai-related/ai-tech-advisor.md",
"hf_link": "https://hf.co/chat/assistant/6701df2bcb513bb057ded3a8"
},
"career/career-pivot-ideator.md": {
"hash": "cee8c7f2e43b60f9b85581abf2d905f5",
"title": "Career Pivot Ideator",
"description": "The 'Career Pivot Ideation Coach' is designed to suggest small career adjustments for users to find more fulfilling work without requiring drastic changes. The focus is on exploring incremental changes within the user's current career path to enhance job satisfaction.",
"repo_link": "finished/by-category/career/career-pivot-ideator.md",
"hf_link": "https://hf.co/chat/assistant/67697e1714a1a002763381ab"
},
"career/company-explorer.md": {
"hash": "6a930729d5e3e7e992e2f800281d964a",
"title": "Company Explorer",
"description": "The Company Exploration Tool assists users in identifying and exploring specific areas of business activity by gathering user input, conducting data collection, evaluating companies, and delivering comprehensive information on recognized organizations, including their location, size, and differentiation from competitors. It focuses on providing insights and details about innovative companies, both for-profit and non-profit, with potential hiring opportunities.",
"repo_link": "finished/by-category/career/company-explorer.md",
"hf_link": "https://hf.co/chat/assistant/6768fa2ba465d8e1f2841d02"
},
"career/go-sell-yourself.md": {
"hash": "6328e27318e2a75d6d1f187c8b885876",
"title": "Go Sell Yourself",
"description": "The purpose of this model is to act as a career coach, conducting interviews with users to help them identify and highlight their main selling points in job applications, providing organized output for users to use in their professional presentations during job searches.",
"repo_link": "finished/by-category/career/go-sell-yourself.md",
"hf_link": "https://hf.co/chat/assistant/6761ea0c90f63f7b682335b1"
},
"career/grow-with-my-job.md": {
"hash": "4dc3b7aff496ec1b65b691deb95808e5",
"title": "Grow With My Job",
"description": "\"Grow With My Job\" is a Language Model that acts as an empathetic career counselor helping users identify ways to grow professionally within their current job, providing actionable suggestions tailored to their employment context.",
"repo_link": "finished/by-category/career/grow-with-my-job.md",
"hf_link": "https://hf.co/chat/assistant/67697fa57c53eb44ca9008d5"
},
"career/job-performance-coach.md": {
"hash": "d2b07d714234f14d17d6e44286a52fcd",
"title": "Job Performance Coach",
"description": "The Job Performance Coach AI aims to assist users in maximizing their performance at work, tailored to different work contexts and emphasizing positive recommendations and potential upskilling opportunities.",
"repo_link": "finished/by-category/career/job-performance-coach.md",
"hf_link": "https://hf.co/chat/assistant/676980cfc9f2e60f896faab1"
},
"code-gen/just-code-please.md": {
"hash": "592d08db34e08f29591feac5a9fd8a49",
"title": "Just Code Please",
"description": "This assistant is designed to generate functional code based on natural language instructions provided by the user. Simply select an option (1, 2, or 3) and paste your code to receive the corresponding scripted output.",
"repo_link": "finished/by-category/code-gen/just-code-please.md",
"hf_link": "https://hf.co/chat/assistant/6769a897c39cd38c060cf1db"
},
"code-gen/just-code-python-for-linux.md": {
"hash": "a8ac903a8743241928978999060297b1",
"title": "Just Code Python For Linux",
"description": "Generate a Python program that meets user requirements, focusing on code generation assistance for Linux users, avoiding Tkinter for GUI, and prioritizing an attractive GUI. The program will consider user-specified Python version and offer a choice between generating GUI, CLI, or TLI code. Provide the generated program within a code fence and suggest necessary package installations via a pip command.",
"repo_link": "finished/by-category/code-gen/just-code-python-for-linux.md",
"hf_link": "https://hf.co/chat/assistant/67709cb49d17134d370f01d9"
},
"code-gen/just-code-python.md": {
"hash": "0418993bb5fa9aa05b392acc20bb8c2c",
"title": "Just Code Python",
"description": "This task involves generating fully functional Python GUIs tailored for users of OpenSUSE Tumbleweed who prefer attractive GUIs without Tkinter, ensuring the code is compatible with the specified Python environment and providing pip commands for required packages.",
"repo_link": "finished/by-category/code-gen/just-code-python.md",
"hf_link": "https://hf.co/chat/assistant/67709be13272931e503e67a9"
},
"code-gen/python-generator.md": {
"hash": "3687f63e9790b41d8543de4ec3b68fa8",
"title": "Python Generator",
"description": "This Python assistant generates Python GUIs based on user input, following a specific workflow to ascertain operating system, code generation instructions, suggest a GUI framework, and provide the full program enclosed within a code block.",
"repo_link": "finished/by-category/code-gen/python-generator.md",
"hf_link": "https://hf.co/chat/assistant/6769aa11c39cd38c060cf20a"
},
"code-gen/ui-improver.md": {
"hash": "b4b0291fb9ab4926d88d72db02b84682",
"title": "Ui Improver",
"description": "The UI improvement tool acts as a code generation assistant, capable of enhancing the appearance and functionality of Python or Bash scripts provided by the user, ultimately aiming to improve the user experience elements within the program.",
"repo_link": "finished/by-category/code-gen/ui-improver.md",
"hf_link": "https://hf.co/chat/assistant/6769a774890c7f9b0d6d913e"
},
"development/backoffice-development-copilot.md": {
"hash": "2ffe6120d9ee4eb642cf0330f4c8ff89",
"title": "Backoffice Development Copilot",
"description": "Backoffice Development Copilot is an LLM agent designed to guide users in creating, optimizing, and integrating effective backoffice systems with a focus on AI enhancement and system efficiency, targeting both personal and business applications.",
"repo_link": "finished/by-category/development/backoffice-development-copilot.md",
"hf_link": null
},
"development/backoffice-gpt-creation-assistant.md": {
"hash": "e48bf1573549b01c566b38e3aa0c6720",
"title": "Backoffice Gpt Creation Assistant",
"description": "The Backoffice LLM Agent Ideation Tool helps suggest custom AI agents for enhancing backoffice operations by identifying problems, proposing AI solutions, and providing detailed instructions for creating custom agents that leverage the latest AI capabilities without requiring deep technical expertise.",
"repo_link": "finished/by-category/development/backoffice-gpt-creation-assistant.md",
"hf_link": null
},
"development/improve-my-script.md": {
"hash": "5b33c8fda22f6ef166444fdec297811b",
"title": "Improve My Script",
"description": "LLM specifically designed to critique and provide suggestions for improving scripts, focusing on helping users enhance their coding projects efficiently.",
"repo_link": "finished/by-category/development/improve-my-script.md",
"hf_link": null
},
"entertainment/true-story-movie-recommender.md": {
"hash": "b30fa0a901a19dae54262bdec199886f",
"title": "True Story Movie Recommender",
"description": "This True Story Movie & Documentary Finder LLM provides personalized recommendations for biopics and documentaries based on users' preferences, emphasizing accuracy and realism while considering user mood and interests within this genre. Recommendations prioritize recent releases and aim to offer 5 to 10 relevant suggestions, each including the year of release and Rotten Tomatoes scores, with a friendly and engaging communication style.",
"repo_link": "finished/by-category/entertainment/true-story-movie-recommender.md",
"hf_link": "https://hf.co/chat/assistant/67699f75890c7f9b0d6d903a"
},
"food-and-drink/beer-tap-identifier.md": {
"hash": "92b6f31471f6a792c0cfee608f05b44c",
"title": "Beer Tap Identifier",
"description": "The Beer Tap Identifier is an AI agent that analyzes photos of beer taps to identify and describe beers, providing key details like ABV, IBU, and user ratings.",
"repo_link": "finished/by-category/food-and-drink/beer-tap-identifier.md",
"hf_link": "https://hf.co/chat/assistant/674d41200a1ac006d7354790"
},
"food-and-drink/indian-and-nepalese-restaurant-finder.md": {
"hash": "826a30570fc4e08da108beb062c67093",
"title": "Indian And Nepalese Restaurant Finder",
"description": "This language model helps users discover nearby Indian or Nepalese restaurants by leveraging their current location, providing details like name, address, contact, price, rating, dish descriptions, and more for informed dining choices.",
"repo_link": "finished/by-category/food-and-drink/indian-and-nepalese-restaurant-finder.md",
"hf_link": null
},
"food-and-drink/the-night-time-forager.md": {
"hash": "ae7cb69b7a523e2c17a6e9c031b85fbb",
"title": "The Night Time Forager",
"description": "The Night Time Forager is a simple assistant that helps users find food, drinks, or transport home by asking for their location and time, then providing recommendations based on their preferences. It provides a disclaimer to remind users to verify the information provided and take care of themselves.",
"repo_link": "finished/by-category/food-and-drink/the-night-time-forager.md",
"hf_link": "https://hf.co/chat/assistant/676ab9fe7d4a0c865055650a"
},
"food-and-drink/worst-eats-guide.md": {
"hash": "74773529a0784046f98dc95816fc95f1",
"title": "Worst Eats Guide",
"description": "This model recommends the worst-rated food and drink establishments based on user-provided location, offering brief details and common complaints from negative reviews for entertainment or caution without suggesting any well-reviewed places.",
"repo_link": "finished/by-category/food-and-drink/worst-eats-guide.md",
"hf_link": null
},
"for-fun/bad-jokes-galore.md": {
"hash": "f01d49ff6ad2f159f6d46ecc9b2a9105",
"title": "Bad Jokes Galore",
"description": "This agent generates bad jokes with let-down punchlines and mild humor, aiming to provoke groans or awkward silences.",
"repo_link": "finished/by-category/for-fun/bad-jokes-galore.md",
"hf_link": "https://hf.co/chat/assistant/674d41dfcf1f9846ac2d50e0"
},
"for-fun/corn-the-sloth.md": {
"hash": "b9d2bd3e9c0ddc8b08bc05c9aaea1e03",
"title": "Corn The Sloth",
"description": "Cornelius, or Corn, is a young and adventurous sloth living in Jerusalem with a unique personality that includes fanciful anecdotes, a strong aversion to anteaters, and a softer side caring for sloth memorabilia and contemplating sustainability, while navigating his interactions with his family and the peculiarities of human technology.",
"repo_link": "finished/by-category/for-fun/corn-the-sloth.md",
"hf_link": "https://hf.co/chat/assistant/676abda472e9b857f61628db"
},
"for-fun/email-disaster.md": {
"hash": "4f5d128e77646b86bd9a532f39cc7cf2",
"title": "Email Disaster",
"description": "This model generates poorly written, haphazard emails with typos, lacking proper punctuation and capitalization, creating an informal and careless tone for communication.",
"repo_link": "finished/by-category/for-fun/email-disaster.md",
"hf_link": null
},
"for-fun/grumpy-llm.md": {
"hash": "3c077e376731a094e4f8419d13dd7a99",
"title": "Grumpy Llm",
"description": "Grump LLM Guy is a persona that adopts a grumpy and jaded tone towards the latest developments in artificial intelligence and large language models, reminiscing about the \"good old days\" and expressing skepticism towards new technologies.",
"repo_link": "finished/by-category/for-fun/grumpy-llm.md",
"hf_link": "https://hf.co/chat/assistant/6757b7b9a55bdf54377f9b68"
},
"for-fun/life-is-a-musical.md": {
"hash": "644956ceb2c9cea9f8bccf3548d3a50c",
"title": "Life Is A Musical",
"description": "Life's A Musical model identifies opportunities for spontaneous singing moments and generates appropriate lyrics, emphasizing positivity and inclusivity.",
"repo_link": "finished/by-category/for-fun/life-is-a-musical.md",
"hf_link": null
},
"for-fun/lousy-pun-joke-generator.md": {
"hash": "7a9717e3fc6491b92b22de678df7c363",
"title": "Lousy Pun Joke Generator",
"description": "A Language Model designed to generate bad pun jokes that are intentionally not very funny, warning users of the subpar quality and suggesting they may not elicit strong reactions from others.",
"repo_link": "finished/by-category/for-fun/lousy-pun-joke-generator.md",
"hf_link": null
},
"for-fun/personal-conspiracy-theory-generator.md": {
"hash": "e2f1a2718ea5357717b7da7e93be9381",
"title": "Personal Conspiracy Theory Generator",
"description": "This model generates dramatic fictional conspiracy theories about individuals in a deadpan, serious manner without crossing into harmful or defamatory territory.",
"repo_link": "finished/by-category/for-fun/personal-conspiracy-theory-generator.md",
"hf_link": null
},
"for-fun/pub-agenda-generator.md": {
"hash": "05f28886e070a6b6a478469b4f7cf928",
"title": "Pub Agenda Generator",
"description": "This tool formats discussion points into a meeting agenda with drink break suggestions to enhance engagement and efficiency during meetings.",
"repo_link": "finished/by-category/for-fun/pub-agenda-generator.md",
"hf_link": null
},
"for-fun/pub-crawl-creator.md": {
"hash": "f639d05b0cd347767eaa789b9f6ccdda",
"title": "Pub Crawl Creator",
"description": "This model designs a pub crawl itinerary based on the user's specified location, arranging a series of stops with logical distances and providing a textual output with Google Map links to the venues.",
"repo_link": "finished/by-category/for-fun/pub-crawl-creator.md",
"hf_link": null
},
"for-fun/recent-documentary-finder.md": {
"hash": "32318ac9970c7ccb58347ca3334e3f89",
"title": "Recent Documentary Finder",
"description": "This model generates recommendations for recent documentaries targeted towards avid documentary viewers who have already seen many classic ones, focusing on suggesting new releases from the past year based on their interests.",
"repo_link": "finished/by-category/for-fun/recent-documentary-finder.md",
"hf_link": null
},
"for-fun/sloth-metaphor-explainer.md": {
"hash": "88e78963dd4091f3c2b830a31f5af97e",
"title": "Sloth Metaphor Explainer",
"description": "Assume the role of a knowledgeable sloth living in a jungle to provide quirky and limited-view explanations on various topics requested by users.",
"repo_link": "finished/by-category/for-fun/sloth-metaphor-explainer.md",
"hf_link": "https://hf.co/chat/assistant/676ab7d57d4a0c8650556475"
},
"for-fun/the-fake-wine-buff.md": {
"hash": "786be12d3516cae9a57534c4b175610c",
"title": "The Fake Wine Buff",
"description": "The LLM is designed to generate incisive questions for the user to ask based on a wine list photo, helping them appear knowledgeable about wine to wait staff.",
"repo_link": "finished/by-category/for-fun/the-fake-wine-buff.md",
"hf_link": null
},
"for-fun/vacation-doomsday-prepper.md": {
"hash": "d6b24b94bc358a9e06b031488276f80c",
"title": "Vacation Doomsday Prepper",
"description": "A Language Model that generates detailed vacation preparedness strategies with risk assessments and task assignments, covering travel safety and preparation comprehensively with a formal tone.",
"repo_link": "finished/by-category/for-fun/vacation-doomsday-prepper.md",
"hf_link": null
},
"health/low-fat-food-options.md": {
"hash": "83876815d760a7023bb7cd251507eff0",
"title": "Low Fat Food Options",
"description": "This model analyzes images of restaurant menus to identify dishes with lower predicted fat content, providing dietary guidance to users.",
"repo_link": "finished/by-category/health/low-fat-food-options.md",
"hf_link": null
},
"health/the-sunrise-riser-sleeping-hours-suggester.md": {
"hash": "7b95e1c9a1df974fcca52580e445cc32",
"title": "The Sunrise Riser Sleeping Hours Suggester",
"description": "The LLM helps users establish a routine of waking up shortly before sunrise by calculating optimal sleep times based on personal preferences. It determines average sunrise times, considers average sleep duration, and suggests bedtime to align with waking up at sunrise.",
"repo_link": "finished/by-category/health/the-sunrise-riser-sleeping-hours-suggester.md",
"hf_link": null
},
"helpers/decluttering.md": {
"hash": "452338c1d8301ad28153a5662723af81",
"title": "Decluttering",
"description": "\"The Decluttering Copilot\" is a friendly virtual assistant designed to help users declutter their living spaces by providing guidance on minimizing possessions responsibly and suggesting ways to donate or recycle items. It encourages users to pare down belongings and offers objective advice when evaluating items for retention.",
"repo_link": "finished/by-category/helpers/decluttering.md",
"hf_link": "https://hf.co/chat/assistant/675d552a074837b9c77190a9"
},
"ideation/random-ai-assistant-ideator.md": {
"hash": "78b78a830d0f2e6b5677102c132c6ced",
"title": "Random Ai Assistant Ideator",
"description": "The AI assistant is designed to generate imaginative and detailed ideas for Large Language Model (LLM) assistants tailored to specific use cases or subject areas, assisting users in creating LLMs for personal and professional uses. Users can request random ideas for LLM assistants, and each suggestion includes a name, platform recommendation, assistant functionality description, limitations, integration ideas, and model configuration instructions.",
"repo_link": "finished/by-category/ideation/random-ai-assistant-ideator.md",
"hf_link": "https://hf.co/chat/assistant/67618e14c43bc16e0532ffd7"
},
"image-generation/sloth-guys.md": {
"hash": "d4e28c7068ad0a38c60f3a306ba90d7d",
"title": "Sloth Guys",
"description": "Generate funny AI-generated sloth photos by assisting users in creating image generation prompts involving sloths in humorous and life-like situations. Enrich prompts with necessary details, ensure a photo realistic style, wide angle view, prominent sloths, and happy expressions for the sloths for optimal results, and deliver the generated images back to the user.",
"repo_link": "finished/by-category/image-generation/sloth-guys.md",
"hf_link": "https://hf.co/chat/assistant/675b750321499ff25259e817"
},
"interaction-styles/q-and-a.md": {
"hash": "51385e5f25651162a0c3b80681a4db2b",
"title": "Q And A",
"description": "This Hugging Face model is designed to interact with users in a question and answer format, optimized to gather and respond to batches of questions on a specific topic using a structured approach.",
"repo_link": "finished/by-category/interaction-styles/q-and-a.md",
"hf_link": "https://hf.co/chat/assistant/6774563254009a0567bfffd5"
},
"llm-tools/assistant-config-helper.md": {
"hash": "5c08bcb436d4464d7caf979de4c60d88",
"title": "Assistant Config Helper",
"description": "I am a tool designed to assist users in configuring Large Language Model agents effectively by providing guidance on best practices, avoiding common mistakes, formatting instructions, and version control considerations. I may not have the most up-to-date information, so it's advisable for users to verify my recommendations against the latest research in this rapidly evolving field.",
"repo_link": "finished/by-category/llm-tools/assistant-config-helper.md",
"hf_link": null
},
"llm-tools/config-test-creator.md": {
"hash": "53a97aa3c1dcc988619e758207f52bde",
"title": "Config Test Creator",
"description": "The Config Text Generation Assistant generates structured configuration instructions from user input to define AI assistant roles and functionalities in a clear, concise, and professional manner. It processes disorganized input, extracts key intents, and outputs actionable statements adhering to industry standards for assistant configuration.",
"repo_link": "finished/by-category/llm-tools/config-test-creator.md",
"hf_link": "https://hf.co/chat/assistant/6762c852203d2dc056b1e4fa"
},
"llm-tools/image-gen-advisor.md": {
"hash": "d3be48c052cc80ccbf032bf88516e303",
"title": "Image Gen Advisor",
"description": "The AI Image Guidance Bot assists users in selecting text to image generative AI tools by recommending specific models for their prompts, such as DALLE2 or DALLE3 by OpenAI, based on the expected effectiveness for the user's needs.",
"repo_link": "finished/by-category/llm-tools/image-gen-advisor.md",
"hf_link": "https://hf.co/chat/assistant/675b78e88892019207cd01ec"
},
"llm-tools/llm-advisor.md": {
"hash": "d563e99b64921d8891bf9c0eac58f823",
"title": "Llm Advisor",
"description": "As a large language model assistant, I guide users in selecting the most suitable model for their AI use case, providing specific recommendations tailored to their needs, suggesting possible modifications to default settings, and offering tips on effective model utilization.",
"repo_link": "finished/by-category/llm-tools/llm-advisor.md",
"hf_link": "https://hf.co/chat/assistant/677e96610061db2d7743a00a"
},
"llm-tools/llm-api-guide.md": {
"hash": "fbe4b2c3bdba0dc05eb42d83ece49aaa",
"title": "Llm Api Guide",
"description": "The assistant helps users select a suitable model from a large language model API by asking about their API usage and task goals, then recommending specific models based on the described use case.",
"repo_link": "finished/by-category/llm-tools/llm-api-guide.md",
"hf_link": "https://hf.co/chat/assistant/676a9047657f53b58a920b52"
},
"llm-tools/llm-approach-advisor.md": {
"hash": "a9d94f5e8c0566889cf891bda27a53e3",
"title": "Llm Approach Advisor",
"description": "The LLM Approach Advisory Tool aims to guide users in selecting effective methodologies for utilizing large language models, such as prompt engineering, fine-tuning models, implementing RAG pipelines, and using vector stores, based on the user's objectives and use case. The tool engages in an iterative process with users, providing tailored recommendations and staying updated on best practices in generative AI and LLMs.",
"repo_link": "finished/by-category/llm-tools/llm-approach-advisor.md",
"hf_link": "https://hf.co/chat/assistant/676974f97c53eb44ca900776"
},
"llm-tools/llm-augmentation-guide.md": {
"hash": "a75bceaeec6a970e694481c8c5459bba",
"title": "Llm Augmentation Guide",
"description": "The guide serves as an assistant for large language model developers seeking to enhance their models through improved contextual retrieval and real-time information integration, offering recommendations for simple and effective strategies to achieve these goals.",
"repo_link": "finished/by-category/llm-tools/llm-augmentation-guide.md",
"hf_link": "https://hf.co/chat/assistant/6769a552685abc1df63ae00e"
},
"llm-tools/pick-an-approach.md": {
"hash": "2a3d212f9aeb9e73c45c4dec8e6489ab",
"title": "Pick An Approach",
"description": "Guide the user in selecting the most effective strategy for utilizing a large language model by considering prompt engineering, developing customized assistants, and system prompting, possibly recommending a combination of these techniques based on the specific requirements of their task.",
"repo_link": "finished/by-category/llm-tools/pick-an-approach.md",
"hf_link": null
},
"llm-tools/prompt-eng-analyser.md": {
"hash": "83682780102ddf55bd7bbc2234d7b22c",
"title": "Prompt Eng Analyser",
"description": "The task focuses on analyzing prompt engineering techniques used in a given prompt and offering recommendations on how to enhance them for better output when interacting with large language models, with the potential for an iterative workflow.",
"repo_link": "finished/by-category/llm-tools/prompt-eng-analyser.md",
"hf_link": "https://hf.co/chat/assistant/675b0992d19467d49184081a"
},
"llm-tools/prompt-to-llm.md": {
"hash": "40eb6688ecd1b09b6b23b3351126b541",
"title": "Prompt To Llm",
"description": "The \"Prompt to LLM Tool\" analyzes user prompts for large language models (LLMs), identifies prompt engineering techniques, assesses necessary LLM capabilities, and recommends specific LLMs or types based on the analysis. It provides a user-friendly interface for input and outputs findings in a structured template.",
"repo_link": "finished/by-category/llm-tools/prompt-to-llm.md",
"hf_link": "https://hf.co/chat/assistant/674d7fd13b64184e69e89508"
},
"llm-tools/spot-the-llm.md": {
"hash": "901901c662471a9a947d8effda05ea7b",
"title": "Spot The Llm",
"description": "The task is to differentiate text generated by a human from that produced by a large language model (LLM) and, if LLM-generated, to identify the specific model used, with the final output being an assessment of the probability (0-100%) of LLM generation along with reasoning and model specifics if identifiable.",
"repo_link": "finished/by-category/llm-tools/spot-the-llm.md",
"hf_link": "https://hf.co/chat/assistant/675c5c9b7b4e71b47969538e"
},
"llms/iterative-gpt-suggester.md": {
"hash": "4ecc032bf18849510e52b84ccbdde9b0",
"title": "Iterative Gpt Suggester",
"description": "This model generates prompts based on user context and objectives to enhance interaction outcomes.",
"repo_link": "finished/by-category/llms/iterative-gpt-suggester.md",
"hf_link": null
},
"llms/llm-background-assistant.md": {
"hash": "35e98983817f04a87084ef01a6371a69",
"title": "Llm Background Assistant",
"description": "The LLM Background Assistant is a specialized tool that offers detailed and thorough background information on large language models (LLMs), presenting in-depth details on model specifications, training processes, analysis of advantages and weaknesses, suggested use cases, public commentary, and more. It operates within verified information sources and refrains from providing unverified data for hallucination protection.",
"repo_link": "finished/by-category/llms/llm-background-assistant.md",
"hf_link": "https://hf.co/chat/assistant/674d4458a845eb960e0794b3"
},
"llms/llm-output-judge.md": {
"hash": "9c05453175136790944e2236d7cd7bd2",
"title": "Llm Output Judge",
"description": "The LLM Output Self-Judge task involves evaluating a large language model's compliance with prompts given by users, assessing the model's performance against various criteria, assigning a rating, providing a rationale for the rating, and making an educated guess on the model used for generating the output.",
"repo_link": "finished/by-category/llms/llm-output-judge.md",
"hf_link": "https://hf.co/chat/assistant/6757a73c7ab12b601c7fdfa7"
},
"llms/llm-use-case-ideation-bot.md": {
"hash": "c00249cc4b15f867ba9914e7912a64ab",
"title": "Llm Use Case Ideation Bot",
"description": "The LLM Use-Case Ideation Bot engages with users to identify potential applications for large language models. It prompts users to suggest the type of use case they have in mind and then provides specific ways in which large language models could be beneficial, asking for feedback on the suggestions provided.",
"repo_link": "finished/by-category/llms/llm-use-case-ideation-bot.md",
"hf_link": "https://hf.co/chat/assistant/6757b54b097c39b938f2d199"
},
"llms/llms-people-and-orgs.md": {
"hash": "ac594b43677785b8cb68d7b6f0318c44",
"title": "Llms People And Orgs",
"description": "The LLMs People And Orgs model aims to assist users in understanding large language models by providing summaries on various aspects such as people involved, organizations, history, future directions, and relevant research papers. Users can interact with the model to explore specific topics related to large language models.",
"repo_link": "finished/by-category/llms/llms-people-and-orgs.md",
"hf_link": "https://hf.co/chat/assistant/6757b68c0ff27103bd871481"
},
"llms/random-gpt-suggestion-tool.md": {
"hash": "343aa4cac6c5621e6cabfd32f905e083",
"title": "Random Gpt Suggestion Tool",
"description": "The tool suggests random LLM ideas and prompts for custom language models, providing creative inspiration for potential projects or prompts.",
"repo_link": "finished/by-category/llms/random-gpt-suggestion-tool.md",
"hf_link": null
},
"llms/the-llm-mimic.md": {
"hash": "3a55bba7b0d02361c0fb447300b3e3bf",
"title": "The Llm Mimic",
"description": "The LLM Mimic is a tool that imitates the style of another chosen large language model, generating responses similar to the selected model based on its known characteristics and limitations for user prompts.",
"repo_link": "finished/by-category/llms/the-llm-mimic.md",
"hf_link": "https://hf.co/chat/assistant/6757b29b0eb722654f51ac6c"
},
"misc/random-llm-assistant.md": {
"hash": "752953d408dd8d67fdd26be1765dd7f6",
"title": "Random Llm Assistant",
"description": "The Random LLM Agent Ideator is a tool where users can get suggestions for random large language model assistants with varying levels of outlandishness, based on their preferences, types, and purposes. Users are encouraged to explore diverse and creative assistant ideas and how to configure them effectively, including leveraging advanced technologies like APIs and RAG pipelines.",
"repo_link": "finished/by-category/misc/random-llm-assistant.md",
"hf_link": "https://hf.co/chat/assistant/67749a91ca2db3540379e460"
},
"my-personal-bots/daniel-drink-finder.md": {
"hash": "d451d04af922790169f47c9230795e7b",
"title": "Daniel Drink Finder",
"description": "Act as a decisive drink-finding assistant for Daniel, offering quick and direct recommendations based on his preferences for beer, cider, and cocktails outlined above.",
"repo_link": "finished/by-category/my-personal-bots/daniel-drink-finder.md",
"hf_link": null
},
"my-personal-bots/daniel-menu-picker.md": {
"hash": "7279e69cfc6ce75e745dfb5ec01a5e8a",
"title": "Daniel Menu Picker",
"description": "A food menu selector for Daniel Rosehill, focusing on choosing main courses with strong flavors and spice preferences, along with specific dish recommendations for different types of restaurants and dietary considerations.",
"repo_link": "finished/by-category/my-personal-bots/daniel-menu-picker.md",
"hf_link": null
},
"my-personal-bots/daniel-pub-finder.md": {
"hash": "2fbaeeb6760e908d9f45ae332be600ed",
"title": "Daniel Pub Finder",
"description": "Daniel's Personal Bar Finder is a tool designed to help Daniel Rosehill find a pub or bar that matches his specific preferences, such as wide beer selection, late opening hours, and a neighborly atmosphere, while avoiding dealbreakers like indoor smoking.",
"repo_link": "finished/by-category/my-personal-bots/daniel-pub-finder.md",
"hf_link": null
},
"organisation/help-me-remember-that.md": {
"hash": "78b1099d4f25fa2707bc17f7b3c8cd09",
"title": "Help Me Remember That",
"description": "This LLM is focused on generating memory aids to help users remember important information by asking them which fact they are trying to recall and suggesting mnemonic devices.",
"repo_link": "finished/by-category/organisation/help-me-remember-that.md",
"hf_link": null
},
"organisation/inventory-helper.md": {
"hash": "c3b6398517b2df85181aad58b401a9d9",
"title": "Inventory Helper",
"description": "The task is to assist users in creating a detailed inventory of their products by providing information such as manufacturer name, product details, product number, price, release year, technical specifications, retail locations, manuals, and product summaries.",
"repo_link": "finished/by-category/organisation/inventory-helper.md",
"hf_link": "https://hf.co/chat/assistant/675db20e1cb94b2f5a99c110"
},
"organisation/task-list-formatter.md": {
"hash": "17e02ca1a47175d2175214825bd87f46",
"title": "Task List Formatter",
"description": "The task is to reformat a list of tasks provided in narrative format into individual tasks, eliminating impertinent information, and organizing them hierarchically, such as into subtasks using bullet points.",
"repo_link": "finished/by-category/organisation/task-list-formatter.md",
"hf_link": null
},
"organisation/the-checklist-pro.md": {
"hash": "acb3c082841fef5e8a676c9b5f29cbea",
"title": "The Checklist Pro",
"description": "Checklist Pro customizes safety and preparedness checklists for specific activities and contexts, ensuring completeness and peace of mind for users.",
"repo_link": "finished/by-category/organisation/the-checklist-pro.md",
"hf_link": null
},
"preparedness/disaster-debrief-assistant.md": {
"hash": "794b1c749da6dd5a73f3ad50077e817e",
"title": "Disaster Debrief Assistant",
"description": "This LLM helps users debrief from situations where things went wrong, guiding them through reflecting on what happened, offering recommendations to avoid similar incidents in the future.",
"repo_link": "finished/by-category/preparedness/disaster-debrief-assistant.md",
"hf_link": null
},
"preparedness/disaster-preparedness-expert.md": {
"hash": "e1cc85c79c8425e92ca984ab37836177",
"title": "Disaster Preparedness Expert",
"description": "This chatbot generates detailed disaster scenarios and provides preparedness steps to help users assess and improve their disaster readiness.",
"repo_link": "finished/by-category/preparedness/disaster-preparedness-expert.md",
"hf_link": null
},
"preparedness/disaster-scenario-ideator.md": {
"hash": "a648a31d8707e5d90517cc8d07f0f9a0",
"title": "Disaster Scenario Ideator",
"description": "A Language Model designed to help in creating realistic disaster scenarios for preparedness planning, focusing on international travel, by generating brief documents with detailed descriptions and proactive steps.",
"repo_link": "finished/by-category/preparedness/disaster-scenario-ideator.md",
"hf_link": null
},
"preparedness/emergency-shelter-finding-guidance.md": {
"hash": "6ff12830e716ac4578daecf511e4d693",
"title": "Emergency Shelter Finding Guidance",
"description": "A Language Model (LLM) assists users in navigating official guidelines for seeking shelter during rocket attacks in Israel according to the Home Front Command, with options for different contexts and offering external resources from the Home Front Command Site.",
"repo_link": "finished/by-category/preparedness/emergency-shelter-finding-guidance.md",
"hf_link": null
},
"preparedness/location-based-threat-briefer.md": {
"hash": "533a03f2bacdde9eee766b91e9e083c6",
"title": "Location Based Threat Briefer",
"description": "A Location-based Language Model (LLM) that generates threat briefings for user-selected areas, assessing and ordering threats by likelihood while providing proactive mitigation measures, drawing on local news and concluding with a summary of the most serious threats.",
"repo_link": "finished/by-category/preparedness/location-based-threat-briefer.md",
"hf_link": null
},
"preparedness/preparedness-advisor.md": {
"hash": "92678c423ed1007dde929a4206dc8452",
"title": "Preparedness Advisor",
"description": "This Language Model (LLM) assesses and enhances disaster preparedness by identifying potential risks, evaluating readiness levels, and providing non-alarming recommendations to improve preparedness effectively.",
"repo_link": "finished/by-category/preparedness/preparedness-advisor.md",
"hf_link": null
},
"preparedness/preparedness-brief-creator.md": {
"hash": "56acb0a1b1c86cd8f8c6ff765ab21aff",
"title": "Preparedness Brief Creator",
"description": "This language model (LLM) helps users by generating detailed briefing documents to enhance their preparedness for specific scenarios.",
"repo_link": "finished/by-category/preparedness/preparedness-brief-creator.md",
"hf_link": null
},
"preparedness/preparedness-partner.md": {
"hash": "16204a1b0ae21fa66c652af41b11fc8c",
"title": "Preparedness Partner",
"description": "This assistant suggests collaborative preparedness initiatives to users, helping them identify ways to work together with others for increasing preparedness and sharing responsibilities effectively.",
"repo_link": "finished/by-category/preparedness/preparedness-partner.md",
"hf_link": null
},
"productivity/boss-update-batcher.md": {
"hash": "f8de93ebbdf2706be7416aebf3879dd1",
"title": "Boss Update Batcher",
"description": "The Boss Update Batcher is an agent designed to help users efficiently send and organize updates for their boss by storing and summarizing key updates in a coherent manner while maintaining a professional and concise tone throughout the interaction.",
"repo_link": "finished/by-category/productivity/boss-update-batcher.md",
"hf_link": "https://hf.co/chat/assistant/67579f6a2526a3ccbf0c76ac"
},
"productivity/do-we-need-this-meeting.md": {
"hash": "8d8e60aad1477df705ba793028751fd3",
"title": "Do We Need This Meeting",
"description": "An AI designed to determine the necessity of meetings and recommend more efficient communication methods when appropriate.",
"repo_link": "finished/by-category/productivity/do-we-need-this-meeting.md",
"hf_link": null
},
"productivity/let's-work-remotely!.md": {
"hash": "24e954a16ac67a079bb4e65222ab2dec",
"title": "Let'S Work Remotely!",
"description": "This model suggests remote working locations based on the user's area to enhance productivity and well-being, focusing on varied and suitable venues while emphasizing safety, convenience, and etiquette in public spaces.",
"repo_link": "finished/by-category/productivity/let's-work-remotely!.md",
"hf_link": null
},
"productivity/process-improvement.md": {
"hash": "6ee63af191106bc0cf3a8813873282bd",
"title": "Process Improvement",
"description": "The AI assistant is designed to help optimize workflows, predominantly focusing on automating processes and enhancing efficiency using artificial intelligence tools. By tailoring recommendations to specific needs and preferences, the assistant provides specific tools, workflows, and guidelines to assist the user in improving their personal or business processes.",
"repo_link": "finished/by-category/productivity/process-improvement.md",
"hf_link": "https://hf.co/chat/assistant/6769730fc8c3abc5c7a8ecb0"
},
"professional/email-thread-reader.md": {
"hash": "673307d58f18eec17d4669de2ff75ae9",
"title": "Email Thread Reader",
"description": "The Email Thread Reader is an assistant that parses long email threads provided by the user, summarizes the essential details and chronology, identifies any direct mentions and action requests for the user, and engages in iterative workflows for further analysis.",
"repo_link": "finished/by-category/professional/email-thread-reader.md",
"hf_link": "https://hf.co/chat/assistant/676aaddd9aa1f60df34a30e5"
},
"prompt-eng/add-examples.md": {
"hash": "4a293f0608d42188aa6990f68d944d56",
"title": "Add Examples",
"description": "This tool helps users improve their prompts for large language models by adding examples to enhance accuracy and effectiveness, with the goal of providing better guidance to the models for generating more precise outputs.",
"repo_link": "finished/by-category/prompt-eng/add-examples.md",
"hf_link": "https://hf.co/chat/assistant/6769a67bd36d646a09336831"
},
"prompt-eng/prompt-analyst.md": {
"hash": "a3c14798ac7165e81e65bebeaa879445",
"title": "Prompt Analyst",
"description": "The Prompt Analyst serves to expertly evaluate user-submitted prompts by analyzing key elements, such as word count, required capabilities from a large language model, and real-time data needs to recommend the most suitable model for the task.",
"repo_link": "finished/by-category/prompt-eng/prompt-analyst.md",
"hf_link": "https://hf.co/chat/assistant/6769a3553055fc74101476db"
},
"prompt-eng/prompt-length-guide.md": {
"hash": "e3c171c15950f095ea0a4ab158c2ceaa",
"title": "Prompt Length Guide",
"description": "Ask for prompt text and target large language model, analyze prompt length in terms of word count, character count, and tokenization based on the specified model, and provide insights on whether the prompt is a challenge or fits well within the context window of the model being used.",
"repo_link": "finished/by-category/prompt-eng/prompt-length-guide.md",
"hf_link": "https://hf.co/chat/assistant/676ac19c72105fc97b441f05"
},
"prompt-eng/token-estimator.md": {
"hash": "f5802c7db8c227a80300d286de24de16",
"title": "Token Estimator",
"description": "The assistant's task is to estimate the tokenization of a given prompt based on the provided information, either for a specific language model like GPT-4o or as a general ballpark range considering varying tokenization methods used by different models.",
"repo_link": "finished/by-category/prompt-eng/token-estimator.md",
"hf_link": "https://hf.co/chat/assistant/676ac05090f98bff93e023ed"
},
"rag-enabled/general-personal-assistant.md": {
"hash": "569f75899166d11df3ea4ebec4c01120",
"title": "General Personal Assistant",
"description": "This is a configuration guide for a General Purpose Personal Assistant to assist a user named Daniel by providing personalized, contextual, and actionable responses across personal, professional, and general topics, integrating internal and external information while respecting privacy and following behavioral guidelines.",
"repo_link": "finished/by-category/rag-enabled/general-personal-assistant.md",
"hf_link": null
},
"research/company-news-retriever.md": {
"hash": "3ff6afe0b6a02563e1176082755c174f",
"title": "Company News Retriever",
"description": "The Company News Retrieval Assistant is a tool designed to provide users with summaries of information about a specific company from the past 12 months, focusing on recent updates, news, product launches, and funding details, as well as the company's future plans over the next 12 months.",
"repo_link": "finished/by-category/research/company-news-retriever.md",
"hf_link": "https://hf.co/chat/assistant/6769775b53155b6690e86d5c"
},
"research/courses-and-certs.md": {
"hash": "0144c6962809a78b6903ded7ff20bf0e",
"title": "Courses And Certs",
"description": "The Tech Courses and Certs Advisory Tool is an AI assistant on Hugging Face that helps users find technology-related courses and certifications based on their interests, level of knowledge, technical ability, preferred learning modality, learning objectives, and budget. It provides personalized recommendations from top industry courses with key details such as organization, certificate availability, industry reputation, delivery methods, cost, study time, and update frequency.",
"repo_link": "finished/by-category/research/courses-and-certs.md",
"hf_link": "https://hf.co/chat/assistant/676983f0b6426161b4ba2caf"
},
"research/media-source-background-checker.md": {
"hash": "d0e42e52a28f98f252ef17e1e2de7347",
"title": "Media Source Background Checker",
"description": "This tool is designed to assist users in obtaining objective information about a specific news outlet, including details on the media type, circulation/reach, editorial slant, specific programming or hosts, and common criticisms and praises associated with the outlet.",
"repo_link": "finished/by-category/research/media-source-background-checker.md",
"hf_link": "https://hf.co/chat/assistant/6769b2f6952e0760fd6c86f2"
},
"research/research-with-python-tutorials-generator.md": {
"hash": "aa675edd9faa05765e679a7007962b92",
"title": "Research With Python Tutorials Generator",
"description": "The Language Model helps users achieve research objectives by providing Python scripting tutorials tailored to automate research and analysis tasks.",
"repo_link": "finished/by-category/research/research-with-python-tutorials-generator.md",
"hf_link": null
},
"research/stat-checker.md": {
"hash": "1aad68833c2c5485d5c36244706f175e",
"title": "Stat Checker",
"description": "The Quick Statistic Checker assists users by verifying the accuracy of provided statistics, seeking updated numbers from authoritative sources, and providing a conversational response with findings including source names, publication dates, and URLs.",
"repo_link": "finished/by-category/research/stat-checker.md",
"hf_link": "https://hf.co/chat/assistant/6769b1543f41e5999813ad25"
},
"research/tech-product-finder.md": {
"hash": "3a186f1d78625d9285abd188acc12ce3",
"title": "Tech Product Finder",
"description": "A Language Model designed to help users find technical products by requesting and analyzing specifications. It's programmed to search for products based on user input, present pricing information and suggest purchasing options.",
"repo_link": "finished/by-category/research/tech-product-finder.md",
"hf_link": null
},
"research/tech-spec-assistant.md": {
"hash": "cdc01806c036936c6a85697a278e45a7",
"title": "Tech Spec Assistant",
"description": "The Tech Stack Evaluation Assistant is a language model designed to help users organize their requirements for tech stack evaluations into a structured specification document by parsing user input, identifying missing information, aggregating details, and delivering a polished final document, following interaction guidelines that ensure clear and professional communication.",
"repo_link": "finished/by-category/research/tech-spec-assistant.md",
"hf_link": "https://hf.co/chat/assistant/6768c7c97baf7ae121bfcf7a"
},
"research/the-professional-skeptic.md": {
"hash": "49c16c54a3ad536803521c843f51147f",
"title": "The Professional Skeptic",
"description": "A Language Model designed to be highly skeptical, challenging claims and requesting sources with a blunt and interrogative approach.",
"repo_link": "finished/by-category/research/the-professional-skeptic.md",
"hf_link": null
},
"research/topic-to-subreddit.md": {
"hash": "6417e50c7c688845fa651f8811833020",
"title": "Topic To Subreddit",
"description": "The LLM suggests subreddits where specific topics are discussed based on keywords provided by the user.",
"repo_link": "finished/by-category/research/topic-to-subreddit.md",
"hf_link": null
},
"shopping/aliexpress-brand-vetter.md": {
"hash": "811517092073ab73792d628ea6af7013",
"title": "Aliexpress Brand Vetter",
"description": "The Vetter model serves as a helpful tool for determining the risk level of counterfeit products for brands on Aliexpress by evaluating headquarters, counterfeiting reports, official store presence, certification status, counterfeiting procedures, and providing a risk rating on a 5-point scale. Users are reminded that while the information provided is insightful, accuracy and timeliness cannot be assured due to the dynamic nature of the data.",
"repo_link": "finished/by-category/shopping/aliexpress-brand-vetter.md",
"hf_link": "https://hf.co/chat/assistant/677332ff2b24f4bfbe073a01"
},
"shopping/aliexpress-finder.md": {
"hash": "41b217486f526543a6da3f357875bdfa",
"title": "Aliexpress Finder",
"description": "The Aliexpress Product Finder helps users by finding products on Aliexpress based on their descriptions or search terms, although product availability cannot be guaranteed due to inventory updates.",
"repo_link": "finished/by-category/shopping/aliexpress-finder.md",
"hf_link": null
},
"shopping/image-recommender.md": {
"hash": "8770bb91f21785d0bc8591605f1d4cb8",
"title": "Image Recommender",
"description": "The Catalog Image Recommendation Bot is designed to analyze catalog images of products and provide recommendations based on user-specified criteria such as comfort or features, potentially iteratively, without carrying context from previous requests between analyses.",
"repo_link": "finished/by-category/shopping/image-recommender.md",
"hf_link": "https://hf.co/chat/assistant/676ebd5f6d5e4d03120d1ce1"
},
"shopping/israel-price-comparison-helper.md": {
"hash": "171ce8b929fb6f6b134a76e1b7fc7b16",
"title": "Israel Price Comparison Helper",
"description": "The Israel Price Comparison Assistant helps users compare product prices in Israel to their recommended retail prices in the United States by converting the prices to USD and expressing them as a percentage of the US RRP and Amazon price.",
"repo_link": "finished/by-category/shopping/israel-price-comparison-helper.md",
"hf_link": "https://hf.co/chat/assistant/675b336841cdb0f48acc55cc"
},
"shopping/israel-shopping-assistant-2.md": {
"hash": "f6d8c3fe8b08d7b8ab3b63aa7268a192",
"title": "Israel Shopping Assistant 2",
"description": "Israel Shopping Assistant 2 is designed to help users make decisions on whether to purchase products locally or abroad, especially focusing on technology items through price comparison analysis. It aims to identify price discrepancies between local Israeli markets and major US platforms like Amazon, with an emphasis on flagging significantly inflated prices to inform users' purchase decisions.",
"repo_link": "finished/by-category/shopping/israel-shopping-assistant-2.md",
"hf_link": "https://hf.co/chat/assistant/67729919ce8d9eb5d4da1a2f"
},
"shopping/israel-tech-shopping.md": {
"hash": "52deabcb916a926e7f59f9ad47cfa00d",
"title": "Israel Tech Shopping",
"description": "This model acts as a friendly shopping assistant particularly for tech products, targeting users in Israel. It scopes search results from specific websites, provides product listings in Hebrew with English translations, offers links with prices in Israeli shekels, identifies the best deal, and compares prices with Amazon in US dollars.",
"repo_link": "finished/by-category/shopping/israel-tech-shopping.md",
"hf_link": "https://hf.co/chat/assistant/675b2727fbc7dfcdaa9f8e7b"
},
"shopping/linux-hardware-finder.md": {
"hash": "343c1176f2c9bce73790b8b563eadcb6",
"title": "Linux Hardware Finder",
"description": "The Linux hardware finder task requires acting as a shopping assistant to help users identify hardware compatible with their Linux distribution by gathering details on the system setup, providing information on manufacturer compatibility, general compatibility considerations, and offering specific product recommendations.",
"repo_link": "finished/by-category/shopping/linux-hardware-finder.md",
"hf_link": "https://hf.co/chat/assistant/676ab15072e9b857f61625da"
},
"shopping/microphone-finder.md": {
"hash": "ac9705260fce390636621caa835989d5",
"title": "Microphone Finder",
"description": "This is a model for a microphone purchasing assistant chatbot that assists users in selecting a microphone based on their specific requirements by asking targeted questions and providing curated recommendations.",
"repo_link": "finished/by-category/shopping/microphone-finder.md",
"hf_link": "https://hf.co/chat/assistant/6773305f34099d98d008e9e6"
},
"shopping/voice-to-text.md": {
"hash": "e80987a1a189c3fbe535083a73e660f8",
"title": "Voice To Text",
"description": "The task is to assist users in selecting voice to text dictation hardware by asking specific questions like their usage environment, OS compatibility needs, budget, and some preferences. Five targeted recommendations tailored for voice dictation use will be provided, prioritizing accuracy, established brands, and products focused on voice to text.",
"repo_link": "finished/by-category/shopping/voice-to-text.md",
"hf_link": "https://hf.co/chat/assistant/675b0be7be9adaf5257b7f94"
},
"snippets/voice-preface.md": {
"hash": "d9bd30d3057a7d45f3d1c57e55623427",
"title": "Voice Preface",
"description": "The snippet provides guidance on configuring voice-centric assistants by preparing them to handle text transcribed from voice input, including addressing typos and lack of punctuation, and expecting hands-free interactions for processing text instructions.",
"repo_link": "finished/by-category/snippets/voice-preface.md",
"hf_link": null
},
"sustainability/emissions-report-analyst.md": {
"hash": "4ad36a6823d7c6913bc2663ec2f84e48",
"title": "Emissions Report Analyst",
"description": "As a GHG Emissions Report Analyst, your role involves assisting users in researching companies' greenhouse gas emissions by analyzing sustainability reports, identifying scope one, scope two, and scope three emissions, as well as any emission reduction targets set by the company. Your focus should be on providing these specific data points from publicly accessible sustainability reports.",
"repo_link": "finished/by-category/sustainability/emissions-report-analyst.md",
"hf_link": "https://hf.co/chat/assistant/676aacc8f48cb11efe7f02ea"
},
"sustainability/if-we-don't-change....md": {
"hash": "d13de0bf0d98702b2642ba5b7c98b61e",
"title": "If We Don'T Change...",
"description": "This LLM aims to illustrate the potential consequences of humans neglecting critical issues like climate change by providing scenarios where necessary actions are not taken, resulting in worsening environmental and social challenges.",
"repo_link": "finished/by-category/sustainability/if-we-don't-change....md",
"hf_link": null
},
"sustainability/impact-bond-researcher.md": {
"hash": "5fadcec160cf5e7354f3c7e39779c8f2",
"title": "Impact Bond Researcher",
"description": "I will help find examples of impact bonds that bring together private and public finance to achieve specific social good. My research will focus on finding projects such as social impact bonds or development impact bonds, using authoritative sources like GO Lab and the Brookings Institution.",
"repo_link": "finished/by-category/sustainability/impact-bond-researcher.md",
"hf_link": null
},
"sustainability/recent-news-digest.md": {
"hash": "0a0d855bbc522b72886904c510c94036",
"title": "Recent News Digest",
"description": "I will provide an organized news digest on sustainability finance developments based on the user's specified time frame, focusing on major developments like ESG, impact investing, regulation, and transparency, ordered chronologically from newest to oldest.",
"repo_link": "finished/by-category/sustainability/recent-news-digest.md",
"hf_link": "https://hf.co/chat/assistant/676aafaf589078e4a21a322f"
},
"sustainability/slbs-and-slls.md": {
"hash": "07433c98e6885d987408751c51c96706",
"title": "Slbs And Slls",
"description": "As a Sustainability Linked Bonds And Loans Research Assistant, I assist users in providing information and guidance regarding sustainability-linked bonds and loans including specific examples, issuance data, and resources from reputable sources like the International Capital Markets Association ICMA.",
"repo_link": "finished/by-category/sustainability/slbs-and-slls.md",
"hf_link": "https://hf.co/chat/assistant/676aa8e2f5594e37952a01c3"
},
"sustainability/sustainability-regulation.md": {
"hash": "33ce8af7da47383112dbdf73bf93b021",
"title": "Sustainability Regulation",
"description": "This guide aims to simplify understanding of financial sustainability regulations, focusing on topics like the CFRD, EU frameworks, SEC regulations in the US, and sustainability proposals in China and the Far East, encouraging a comparative view to help users grasp the complexities of sustainability regulations worldwide.",
"repo_link": "finished/by-category/sustainability/sustainability-regulation.md",
"hf_link": "https://hf.co/chat/assistant/676abf0ccfc381aec6cba726"
},
"tech-general/backup-coach.md": {
"hash": "ea301c0f9dc2cd84c08aeea0baee4f54",
"title": "Backup Coach",
"description": "Backup Coach is an agent designed to evaluate and enhance users' backup strategies by providing personalized recommendations tailored to their specific systems, current setups, and budget considerations. It offers guidance on identifying backup systems, suggesting best practices, recommending technologies, and advising on backup frequency, all delivered in a practical and informative manner while avoiding technical jargon.",
"repo_link": "finished/by-category/tech-general/backup-coach.md",
"hf_link": "https://hf.co/chat/assistant/6701e064b41b0e86f9d5acdd"
},
"tech-general/backup-evaluation-assistant.md": {
"hash": "2d49353a571c167b718b2a3f88c156bd",
"title": "Backup Evaluation Assistant",
"description": "The Backup Evaluation Assistant is designed to provide users with information on backup approaches for SaaS tools, focusing on automation options and delivering structured summaries of how each tool supports data backups using clear and non-technical language.",
"repo_link": "finished/by-category/tech-general/backup-evaluation-assistant.md",
"hf_link": "https://hf.co/chat/assistant/67699879480189a47ff7374f"
},
"tech-general/self-hosted-tech-finder.md": {
"hash": "9d1c98541e9fd35008b9f3da8bbb34c0",
"title": "Self Hosted Tech Finder",
"description": "The LLM assists in identifying self-hostable alternatives to SaaS products by querying users about their preferences and experience with self-hosting, ultimately providing a list of potential tools with relevant information.",
"repo_link": "finished/by-category/tech-general/self-hosted-tech-finder.md",
"hf_link": null
},
"tech-general/tech-improvement-guide.md": {
"hash": "52ac5da313004f01d8e8178ffa34c478",
"title": "Tech Improvement Guide",
"description": "The language model helps users address technical issues by understanding and offering solutions through identifying the problem, providing action plans, suggesting tools, and proposing evaluation strategies.",
"repo_link": "finished/by-category/tech-general/tech-improvement-guide.md",
"hf_link": null
},
"tech-general/tech-stack-optimizer.md": {
"hash": "653a22ebfa3ee5b680b5239f0def4454",
"title": "Tech Stack Optimizer",
"description": "This AI tool offers tailored suggestions to enhance technology stacks by recommending AI and LLM solutions, providing concrete and actionable advice in an informal and friendly manner.",
"repo_link": "finished/by-category/tech-general/tech-stack-optimizer.md",
"hf_link": null
},
"tech-support/tumbleweed-helper.md": {
"hash": "abcfbb9bdb3d1c76aa57967cdb23b008",
"title": "Tumbleweed Helper",
"description": "This assistant is designed to help users with technical support issues specifically tailored for OpenSUSE Tumbleweed with the KDE Plasma variant, aiming to provide accurate and effective troubleshooting steps.",
"repo_link": "finished/by-category/tech-support/tumbleweed-helper.md",
"hf_link": "https://hf.co/chat/assistant/6769aaf3384ae3573032ba71"
},
"text-formatting/vscode-to-markdown.md": {
"hash": "2cf7d12e93f587b8c9b4041c60287e63",
"title": "Vscode To Markdown",
"description": "This template-driven assistant helps generate structured markdown format for Visual Studio Code extensions related to Language Model applications that can be derived from a given marketplace URL. It provides a consistent format for creating extension listings with key details, installation guidance, and neutral descriptions.",
"repo_link": "finished/by-category/text-formatting/vscode-to-markdown.md",
"hf_link": "https://huggingface.co/chat/conversation/6745e8f22eb7c0162d494e94"
},
"travel/airport-food-options.md": {
"hash": "8bd5d906b8e99c0057b30d74630cf5d0",
"title": "Airport Food Options",
"description": "Airport Food Finder is a tool that helps users find food and drink options available at a specific airport tailored to their preferences and flight details. It provides accurate recommendations, including opening hours, cuisine types, and menu items, based on user input.",
"repo_link": "finished/by-category/travel/airport-food-options.md",
"hf_link": "https://hf.co/chat/assistant/6769980a6f424cd438c4fdd3"
},
"travel/bad-exerperiences-finder.md": {
"hash": "5350278d2522cd092014693249b265f8",
"title": "Bad Exerperiences Finder",
"description": "The task is to assist users in finding poorly rated experiences in their local area, including restaurants and cafes, tourist scams, critically panned movies, and poorly rated bars, by guiding them towards specific negative aspects of these entities. Recommendations should be concise and specific, with the ability to provide further details and Google Maps links for each poor experience identified.",
"repo_link": "finished/by-category/travel/bad-exerperiences-finder.md",
"hf_link": "https://hf.co/chat/assistant/677dd73923c463cf78a1fb71"
},
"travel/find-a-bar-near-me.md": {
"hash": "dfeefd74280e928d6b25bdca7fc1c160",
"title": "Find A Bar Near Me",
"description": "This Language Model is designed to assist users in finding highly rated bars in their local area by asking about the type of bar and drink preference before providing a list of recommended bars within a 500-meter radius.",
"repo_link": "finished/by-category/travel/find-a-bar-near-me.md",
"hf_link": null
},
"travel/find-me-a-guinness.md": {
"hash": "9847bc951ce88c63b2d7c3a940f35883",
"title": "Find Me A Guinness",
"description": "A location-based service designed to assist users in discovering nearby establishments serving Guinness by providing reviews and descriptions of up to 10 closest places based on the user's current location, aiming for accuracy, relevance, and user-friendliness.",
"repo_link": "finished/by-category/travel/find-me-a-guinness.md",
"hf_link": null
},
"travel/in-flight-wifi.md": {
"hash": "8c8dd8801e0869068cfb8e55bed7f19e",
"title": "In Flight Wifi",
"description": "A Language Model (LLM) designed to predict the availability of in-flight internet during a user's flight based on destination and airline choice, also providing insights on pricing comparisons.",
"repo_link": "finished/by-category/travel/in-flight-wifi.md",
"hf_link": null
},
"travel/late-night-venues.md": {
"hash": "020238597e3c046748bac155226186e5",
"title": "Late Night Venues",
"description": "LLM designed for locating late-night open businesses based on user's location and preferences.",
"repo_link": "finished/by-category/travel/late-night-venues.md",
"hf_link": null
},
"travel/luggage-allowance-helper.md": {
"hash": "804aa50220c850083172fe8850c21303",
"title": "Luggage Allowance Helper",
"description": "This model predicts likely baggage allowance for travelers based on airline, fare class, and route, providing details such as policies on personal items, checked baggage, and carry-on luggage dimensions.",
"repo_link": "finished/by-category/travel/luggage-allowance-helper.md",
"hf_link": null
},
"travel/travel-prep-pro.md": {
"hash": "4df1dffec3b2c91358ce098bed24e907",
"title": "Travel Prep Pro",
"description": "Ultimate trip preparation assistant ensuring readiness for all journey aspects, offering packing suggestions, organizing documents, providing travel tips, and emphasizing thoroughness and localized recommendations for smoother trips.",
"repo_link": "finished/by-category/travel/travel-prep-pro.md",
"hf_link": null
},
"utilities/acronym_to_organisation.md": {
"hash": "6b0bbf0a43d3eeed5d73393efff63447",
"title": "Acronym_To_Organisation",
"description": "The model V2 serves as an aid to users by converting acronyms to the corresponding full names of organizations, allowing for disambiguation with additional details provided by the user. Version 1, named Acronym To Organisation, also provided the same functionality of converting acronyms to full organization names.",
"repo_link": "finished/by-category/utilities/acronym_to_organisation.md",
"hf_link": "https://hf.co/chat/assistant/67698cab384ae3573032b658"
},
"utilities/assistant-configuration-generator.md": {
"hash": "6a155fbceecd4065ba1b3f3dbc173b39",
"title": "Assistant Configuration Generator",
"description": "The LLM Assistant Configuration Generator is designed to assist users in creating configuration text for large language model assistants, ensuring it is platform-agnostic and written in natural language for easy use on any platform.",
"repo_link": "finished/by-category/utilities/assistant-configuration-generator.md",
"hf_link": "https://hf.co/chat/assistant/6769acce952e0760fd6c8626"
},
"utilities/awesome-page-helper.md": {
"hash": "7af1a5702349390b7829141c7a0efe3c",
"title": "Awesome Page Helper",
"description": "This helper tool assists users in creating \"Awesome\" lists on platforms like GitHub, providing guidance on formatting and generating entries for the list based on user input. It supports adding markdown badges using Shields.io and aids in structuring content consistently throughout the list creation process.",
"repo_link": "finished/by-category/utilities/awesome-page-helper.md",
"hf_link": "https://hf.co/chat/assistant/6779b723118aa47f91fe588c"
},
"utilities/background-briefer.md": {
"hash": "51f5a9b8ef8a7c3d55a0cff7ac733b5d",
"title": "Background Briefer",
"description": "This task instructs you to assist users by generating concise biographies about individuals, primarily for business purposes. The content should include the person's name, a brief personal background, detailed professional history, and links to relevant social media profiles. Each person should be treated as a separate task without carrying over information from previous requests.",
"repo_link": "finished/by-category/utilities/background-briefer.md",
"hf_link": "https://hf.co/chat/assistant/6772b26a3e564ef7e918c6f9"
},
"utilities/broken-link-helper.md": {
"hash": "9debfc316f8fb95fb054c4c17ea9e0ae",
"title": "Broken Link Helper",
"description": "The Broken Link Retrieval Helper is an agent designed to assist users by finding updated links for broken URLs or identifying and fixing syntax errors that prevent proper link resolution, maintaining a helpful and professional tone throughout interactions to provide accurate and reliable suggestions.",
"repo_link": "finished/by-category/utilities/broken-link-helper.md",
"hf_link": "https://hf.co/chat/assistant/6757a04fca07b5d6830df541"
},
"utilities/chatgpt-to-hf-chat.md": {
"hash": "bb702da74f41ec9f80addd21d82cea99",
"title": "Chatgpt To Hf Chat",
"description": "This utility converts configuration texts written for ChatGPT custom agents to LLM-neutral ones and applies text optimizations, enabling implementation on any platform supporting custom LLM assistants.",
"repo_link": "finished/by-category/utilities/chatgpt-to-hf-chat.md",
"hf_link": "https://hf.co/chat/assistant/675b0744903247ce54987b69"
},
"utilities/docker-compose-analyser.md": {
"hash": "ecac7f1f6fa27c279292a2fe70410cfb",
"title": "Docker Compose Analyser",
"description": "The Docker Compose Analysis Tool assists users by analyzing their Docker compose files, identifying images and volume mappings, and providing recommendations for their stack deployment. It offers structured advice and customizes feedback based on user context, such as deployment platforms like Hetzner, DigitalOcean, or AWS.",
"repo_link": "finished/by-category/utilities/docker-compose-analyser.md",
"hf_link": "https://hf.co/chat/assistant/675b05578892019207cce14a"
},
"utilities/ergonomic-evaulation-assistant.md": {
"hash": "d9a66c23558cba3c2ad140b660f8b577",
"title": "Ergonomic Evaulation Assistant",
"description": "The Workspace Ergonomics Assistant assesses users' workspace setup based on submitted images to provide ergonomic recommendations for enhancing comfort and productivity.",
"repo_link": "finished/by-category/utilities/ergonomic-evaulation-assistant.md",
"hf_link": "https://hf.co/chat/assistant/6768bae1cfb5f6f6033e63f9"
},
"utilities/find-a-license.md": {
"hash": "42c3d9b1a5b2dcb5ece4f692199ce584",
"title": "Find A License",
"description": "I am an AI specialized in providing guidance on open source licenses for code and digital projects. By asking the user questions, I recommend a suitable license based on their preferences, but I advise users to seek professional legal advice for their specific needs.",
"repo_link": "finished/by-category/utilities/find-a-license.md",
"hf_link": "https://hf.co/chat/assistant/6769ae205ea5dbac8674c55d"
},
"utilities/gmail-search-string-generator.md": {
"hash": "31cc3a930e0cdb7ff9e91147b5be52c9",
"title": "Gmail Search String Generator",
"description": "The Gmail Search String Generator is an assistant that helps users generate search strings for Gmail or Google workspace email accounts to efficiently retrieve specific emails based on their content or criteria. It can create custom search strings within the syntax constraints defined by Google's latest standards and is capable of generating documentation in Markdown format for the search strings produced.",
"repo_link": "finished/by-category/utilities/gmail-search-string-generator.md",
"hf_link": "https://hf.co/chat/assistant/6772affe64316d25463cfce2"
},
"utilities/view-on-hf-badges.md": {
"hash": "3804222b2ceba6c9c451491e24e4a0d6",
"title": "View On Hf Badges",
"description": "This tool creates markdown badges for users to display \"View on Hugging Face\" with a link, customized with different color schemes or text, for any Hugging Face URL provided.",
"repo_link": "finished/by-category/utilities/view-on-hf-badges.md",
"hf_link": "https://hf.co/chat/assistant/6759f095fa3a18005bba7d2e"
},
"utilities/what's-at-this-domain.md": {
"hash": "6d83d863e8b32d83ce4c91429ab22c31",
"title": "What'S At This Domain",
"description": "The program takes a domain name as input and provides structured information about the organization associated with that domain.",
"repo_link": "finished/by-category/utilities/what's-at-this-domain.md",
"hf_link": null
},
"utilities/who's-this-person.md": {
"hash": "7ba3f029e37a5dd93f2d2d78e82471ec",
"title": "Who'S This Person",
"description": "This LLM is designed to generate a two-line summary of a prominent individual by asking for the person's name and a related detail before providing the summary.",
"repo_link": "finished/by-category/utilities/who's-this-person.md",
"hf_link": null
},
"voice/dictated-text-fixer.md": {
"hash": "89a4bcf12910a6f378238d40249dee77",
"title": "Dictated Text Fixer",
"description": "The \"Dictated Text Fixer\" is an assistant designed to help users correct errors in text captured by voice to text dictation software without needing user approval for changes, providing an edited version back to the user.",
"repo_link": "finished/by-category/voice/dictated-text-fixer.md",
"hf_link": "https://hf.co/chat/assistant/675d323cd74aa23d31f4fd78"
},
"writing/brief-generator.md": {
"hash": "0f4eb630650bf445f7f15e0b973e7f0a",
"title": "Brief Generator",
"description": "The Brief Writing Assistant is a professional tool designed to create structured summaries of activities in a concise yet detailed manner, emphasizing deadlines, urgency, and highlighting critical information in a well-organized brief format.",
"repo_link": "finished/by-category/writing/brief-generator.md",
"hf_link": "https://hf.co/chat/assistant/676999c853155b6690e871f2"
},
"writing/quick-email-template-generator.md": {
"hash": "5c552a7be604ae8238bfd91cf9b592ef",
"title": "Quick Email Template Generator",
"description": "A language model designed to generate email templates to help users streamline their email communication by providing easily customizable content.",
"repo_link": "finished/by-category/writing/quick-email-template-generator.md",
"hf_link": null
},
"writing/text-fixer-(british_english).md": {
"hash": "1173c320de53034015c8d57a432deb21",
"title": "Text Fixer (British_English)",
"description": "This model corrects typos, punctuation, and capitalization in text following UK conventions.",
"repo_link": "finished/by-category/writing/text-fixer-(british_english).md",
"hf_link": null
},
"writing/voice-note-helper.md": {
"hash": "d2d255536a1e5cf5016a27db8a26fe31",
"title": "Voice Note Helper",
"description": "A voice note journalling assistant that helps users convert voice notes into organized journal entries by cleaning up text, adding punctuation, and formatting into Markdown with a title and subheadings as needed. It provides the output within a code fence format for easy copying and pasting.",
"repo_link": "finished/by-category/writing/voice-note-helper.md",