-
Notifications
You must be signed in to change notification settings - Fork 37
/
awesome-agents.json
4835 lines (4835 loc) · 175 KB
/
awesome-agents.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
{
"agents": [
{
"project": "AgentX",
"project_description": "AgentX is an AI-powered sales assistant designed to enhance sales strategies and efficiency through advanced features like a Memory Module and Online Mode, leveraging industry best practices for smarter selling",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://chatagentx.com/"
},
{
"source": "twitter",
"source_url": "https://twitter.com/agentxai"
},
{
"source": "newsletter",
"source_url": "https://buttondown.email/agentx"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Aomni",
"project_description": "This AI agent streamlines the process of researching prospective customers, potentially saving business development representatives hundreds of hours per year",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://www.aomni.com/"
},
{
"source": "twitter",
"source_url": "https://twitter.com/aomniapp"
},
{
"source": "demo",
"source_url": "https://x.com/AtomSilverman/status/1781402688078622874"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Devid by Agency Swarm",
"project_description": "Devid Agent, a new AI software development tool, has been integrated into the Agency Swarm framework to enhance automated AI agency operations, alternative to Cognition AI's Devin",
"project_is_open_source": true,
"sources": [
{
"source": "code",
"source_url": "https://github.com/VRSEN/agency-swarm/tree/main/agency_swarm/agents/Devid"
},
{
"source": "video",
"source_url": "https://www.youtube.com/watch?v=BEpDRj9H3zE"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "BrowsingAgent by Agency Swarm",
"project_description": "BrowsingAgent, an AI web navigation tool, has been integrated into the Agency Swarm framework to enable human-like browsing capabilities for automated AI operations",
"project_is_open_source": true,
"sources": [
{
"source": "code",
"source_url": "https://github.com/VRSEN/agency-swarm/tree/main/agency_swarm/agents/BrowsingAgent"
},
{
"source": "video",
"source_url": "https://www.youtube.com/watch?v=Yidy_ePo7pE"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Devin by Cognition",
"project_description": "Devin is a fully autonomous AI software engineer, revolutionizing coding with advanced reasoning and planning capabilities",
"project_is_open_source": false,
"sources": [
{
"source": "announcement",
"source_url": "https://www.cognition-labs.com/introducing-devin"
},
{
"source": "website",
"source_url": "https://www.cognition-labs.com/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "OpenDevin",
"project_description": "OpenDevin is an open-source initiative aimed at replicating and enhancing the autonomous AI software engineer Devin, focusing on collaboration and complex task execution in software development, emphasizing its relevance to advancing agentic AI technologies",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/OpenDevin/OpenDevin",
"stars_last_updated": "2024-08-05T12:19:12.232224",
"stars": 29472
},
{
"source": "github profile",
"source_url": "https://github.com/OpenDevin"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Devika",
"project_description": "Devika is an open-source AI software engineer designed to understand and execute high-level coding tasks by researching, planning, and writing code, aiming to be a competitive alternative to Cognition AI's Devin",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/stitionai/devika",
"stars_last_updated": "2024-08-05T12:19:13.064854",
"stars": 18047
},
{
"source": "demo",
"source_url": "https://github.com/stitionai/devika?tab=readme-ov-file#demos"
},
{
"source": "discord",
"source_url": "https://discord.com/invite/8eYNbPuB"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Codel",
"project_description": "Autonomous AI agent, inspired by Devin, designed for complex task execution with features like a secure sandboxed Docker environment, integrated browser for real-time web information, text editor, and PostgreSQL database for history tracking, highlighting its relevance to agentic AI through its ability to autonomously navigate and perform actions across terminal, browser, and editor interfaces",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/semanser/codel",
"stars_last_updated": "2024-08-05T12:19:13.647942",
"stars": 2026
},
{
"source": "announcement",
"source_url": "https://news.ycombinator.com/item?id=39799296"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "GPT Pilot",
"project_description": "GPT Pilot is an open-source AI developer tool that aims to provide a comprehensive development companion, capable of writing features, debugging, and interacting with users, presenting itself as an alternative to Devin, the world's first AI software engineer developed by Cognition Labs",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/Pythagora-io/gpt-pilot",
"stars_last_updated": "2024-08-05T12:19:14.251038",
"stars": 29266
},
{
"source": "discord",
"source_url": "https://discord.gg/RzvCYRgUkx"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Devon (previously Gilfoyle)",
"project_description": "Devon, not Devin, aims to perfect code correction for fill-in-the-middle, bug spotting, and completion tasks, using JSON for metadata in edits, and incorporates looping until user termination in function updates",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/entropy-research/Devon",
"stars_last_updated": "2024-08-05T12:19:14.982811",
"stars": 2719
}
],
"categories": [
"AI Agents"
]
},
{
"project": "AutoDev",
"project_description": "AutoDev is an AI-powered coding assistant offering multilingual support, automatic code generation, and debugging assistance, featuring customizable prompts and specialized tools for development, testing, documentation, and the integration of custom AI agents, with a focus on experimenting and building AI agents using its UI framework",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/unit-mesh/auto-dev",
"stars_last_updated": "2024-08-05T12:19:15.699865",
"stars": 2647
},
{
"source": "docs",
"source_url": "https://ide.unitmesh.cc"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "vimGPT",
"project_description": "vimGPT is a project that integrates GPT-4V's vision capabilities with the Vimium extension to enable web browsing and interaction through keyboard navigation and voice commands, offering innovative solutions and improvements for accessibility and efficiency",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/ishan0102/vimGPT",
"stars_last_updated": "2024-08-05T12:19:16.316217",
"stars": 2570
},
{
"source": "demo",
"source_url": "https://github.com/ishan0102/vimGPT/tree/main?tab=readme-ov-file#vimgpt"
},
{
"source": "hackernews",
"source_url": "https://news.ycombinator.com/item?id=38200308"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "OpenPipe",
"project_description": "Optimize AI agents with language models that are faster and 14x more cost-effective than OpenAI's solutions",
"project_is_open_source": false,
"sources": [
{
"source": "demo",
"source_url": "https://x.com/AlexReibman/status/1772782206957895797"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Waii",
"project_description": "A swift and straightforward AI agent for converting natural language to SQL queries, seamlessly integrable with your application",
"project_is_open_source": false,
"sources": [
{
"source": "demo",
"source_url": "https://x.com/AlexReibman/status/1772777493122163107"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Data Questionnaire Agent",
"project_description": "A chatbot designed to query users on data integration practices, offering advice based on responses, utilizing a modified Chainlit library for operation",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/onepointconsulting/data-questionnaire-agent",
"stars_last_updated": "2024-08-05T12:19:16.917550",
"stars": 60
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Cosmo",
"project_description": "Cosmo offers an all-inclusive AI agent for merchants on WhatsApp, enabling order placements, customer interaction, automatic question answering, inventory and CRM integration, with features like instant payments, customer insights, dynamic order fulfillment, and a comprehensive merchant web app for online transaction management, aimed at simplifying shopping and boosting sales by 57%",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://meetcosmo.ai/"
},
{
"source": "demo",
"source_url": "https://x.com/AlexReibman/status/1772775416044126608"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Deepgram",
"project_description": "Conversational AI tools designed for creating voice bots and agents, featuring realistic, low-latency voice technology",
"project_is_open_source": false,
"sources": [
{
"source": "demo",
"source_url": "https://x.com/AlexReibman/status/1772774552260788296"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Deepunit",
"project_description": "An AI agent designed to generate unit tests for complete code coverage across your project, requiring only your repository as input",
"project_is_open_source": false,
"sources": [
{
"source": "demo",
"source_url": "https://x.com/AlexReibman/status/1772773773772779533"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "GitWit",
"project_description": "GitWit is an online tool that accelerates web app development with AI, supporting React, Tailwind, and NodeJS, boasting a 3X speed increase and over 1000 projects generated",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://gitwit.dev/"
},
{
"source": "discord",
"source_url": "https://discord.gitwit.dev/"
},
{
"source": "github profile",
"source_url": "https://github.com/gitwitorg"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Harpa",
"project_description": "Harpa is a versatile Chrome extension that integrates AI capabilities, such as summarizing content, automating workflows, and enhancing productivity, supported by GPT-4 and Claude 2, trusted by 300,000+ professionals",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://harpa.ai/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "AI Assistant by Deco",
"project_description": "Deco provides a GPT-powered, multilingual AI Sales Assistant designed to personalize and automate the shopping experience, boost sales, and increase operational efficiency for online stores",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://deco.cx/ai-assistant"
},
{
"source": "github profile",
"source_url": "https://github.com/deco-cx"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "FinGen",
"project_description": "FinGen is a financial analysis agent using RSC, LangChain, and Polygon finance API, emphasizing it's not financial advice and requires API keys for use",
"project_is_open_source": true,
"sources": [
{
"source": "announcement",
"source_url": "https://twitter.com/SullyOmarr/status/1772282548841791730"
},
{
"source": "github",
"source_url": "https://github.com/sullyo/fingen",
"stars_last_updated": "2024-08-05T12:19:17.546949",
"stars": 82
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Self Operating Computer by Otherside",
"project_description": "SOC is a framework enabling multimodal models to operate a computer using human-like inputs and outputs, with compatibility for various models such as GPT-4v, Gemini Pro Vision, and LLaVA, offering future support for additional models and featuring various modes including voice and optical character recognition",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/OthersideAI/self-operating-computer",
"stars_last_updated": "2024-08-05T12:19:18.271296",
"stars": 8417
},
{
"source": "github profile",
"source_url": "https://github.com/OthersideAI"
},
{
"source": "landing page",
"source_url": "https://www.hyperwriteai.com/self-operating-computer"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "MultiOn",
"project_description": "MultiOn utilizes AI to automate actions within web browsers, such as form filling, data retrieval, and executing web searches, mimicking human interaction but without manual input, facilitated through a Chrome extension and API for developers",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://www.multion.ai/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "ChatGPT",
"project_description": "ChatGPT is an AI language model designed to understand and generate human-like text, facilitating conversation and assisting with various tasks",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://chatgpt.com/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Open Interpreter",
"project_description": "Open Interpreter is a coding agent enabling language models to execute code locally, facilitating natural-language interaction with your computer's capabilities, overcoming limitations of hosted solutions like internet access and package restrictions. It features interactive and programmatic chats, system message customization, and can control your computer's keyboard and mouse, allowing for enhanced control and flexibility in development environments",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/OpenInterpreter/open-interpreter",
"stars_last_updated": "2024-08-05T12:19:18.874594",
"stars": 51321
}
],
"categories": [
"Operating System (OS)"
]
},
{
"project": "AnyBiz",
"project_description": "AnyBiz offers AI-driven sales agents that enhance sales strategies through intelligent automation, continuous learning, and hyper-personalization, operating 24/7 without breaks",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://anybiz.io"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "ShortGPT by RayVentura",
"project_description": "ShortGPT is an AI-powered framework for automating content creation, including video editing, voiceover synthesis, caption generation, and asset sourcing, with support for multiple languages and seamless integration with Google Colab and Docker for easy deployment",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/RayVentura/ShortGPT",
"stars_last_updated": "2024-08-05T12:19:19.591303",
"stars": 5394
},
{
"source": "github profile",
"source_url": "https://github.com/RayVentura"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "ShortX by RayVentura",
"project_description": "ShortX is a AI-powered video automation platform for YouTube Shorts, Instagram Reels, TikTok, and Snapchat, offering customizable templates, AI services, and a subscription model with an affiliate program and user testimonials",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://shortx.ai/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "GPT Engineer",
"project_description": "GPT-Engineer is an AI-powered tool allowing users to specify software in natural language, automatically generating and executing code, with options for improvement suggestions, and fostering collaboration within the open-source community",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/gpt-engineer-org/gpt-engineer",
"stars_last_updated": "2024-08-05T12:19:20.308009",
"stars": 51555
},
{
"source": "github profile",
"source_url": "https://github.com/gpt-engineer-org"
},
{
"source": "website",
"source_url": "https://gptengineer.app"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Self Operating Computer by Otherside",
"project_description": "SOC is a framework enabling multimodal models to operate a computer using human-like inputs and outputs, with compatibility for various models such as GPT-4v, Gemini Pro Vision, and LLaVA, offering future support for additional models and featuring various modes including voice and optical character recognition",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/OthersideAI/self-operating-computer",
"stars_last_updated": "2024-08-05T12:19:20.923138",
"stars": 8417
},
{
"source": "github profile",
"source_url": "https://github.com/OthersideAI"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Personal Assistant by HyperWrite",
"project_description": "HyperWrite offers a Personal Assistant AI agent for everyday tasks, seamlessly integrating into workflows to automate tedious tasks, optimize planning, and inform decision-making, while also providing personalized suggestions and transforming wishes into commands across various platforms",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://www.hyperwriteai.com/personal-assistant"
},
{
"source": "github profile",
"source_url": "https://github.com/OthersideAI"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "AutoGPT",
"project_description": "AutoGPT provides accessible AI tools for building and using AI agents, offering a comprehensive framework including Forge for agent creation, agbenchmark for performance evaluation, a leaderboard for competition, a user-friendly UI, and CLI for seamless integration and management",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/Significant-Gravitas/AutoGPT",
"stars_last_updated": "2024-08-05T12:19:21.534473",
"stars": 165481
},
{
"source": "github profile",
"source_url": "https://github.com/Significant-Gravitas"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Taskade AI",
"project_description": "Taskade AI is an AI-powered productivity suite offering tools like task and project management, notes, docs, mind maps, and AI chat to enhance team productivity and automate over 700 tasks",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://www.taskade.com/"
},
{
"source": "twitter",
"source_url": "https://twitter.com/Taskade"
},
{
"source": "youtube",
"source_url": "https://youtube.com/taskade"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "BabyAGI",
"project_description": "BabyAGI exemplifies an AI-powered task management system utilizing OpenAI and vector databases like Chroma or Weaviate, creating, prioritizing, and executing tasks based on previous outcomes and predefined objectives, with the main function involving an infinite loop where tasks are processed, enriched, and stored using OpenAI's NLP capabilities and Chroma/Weaviate, inspired by the Task-Driven Autonomous Agent concept",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/yoheinakajima/babyagi",
"stars_last_updated": "2024-08-05T12:19:22.166433",
"stars": 19780
},
{
"source": "github profile",
"source_url": "https://github.com/yoheinakajima"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "GPT Researcher by Tavily",
"project_description": "GPT Researcher is an AI-powered autonomous agent designed for efficient and unbiased online research, generating detailed reports by leveraging recent advancements in AI and web scraping, with a focus on speed, reliability, and cost-effectiveness",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/assafelovic/gpt-researcher",
"stars_last_updated": "2024-08-05T12:19:22.866951",
"stars": 13442
},
{
"source": "github profile",
"source_url": "https://github.com/assafelovic"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "GPT Newspaper by Tavily",
"project_description": "GPT Newspaper is an autonomous agent project using AI to create personalized newspapers based on user preferences, featuring six specialized sub-agents for searching, curating, writing, designing, editing, and publishing content tailored to individual interests",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/rotemweiss57/gpt-newspaper",
"stars_last_updated": "2024-08-05T12:19:23.454315",
"stars": 1127
},
{
"source": "github profile",
"source_url": "https://github.com/rotemweiss57"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Tavily",
"project_description": "Tavily AI is your comprehensive research assistant, offering a platform for rapid insights with a Search API for LLMs, ensuring real-time, accurate, and bias-reduced data gathering and organization, suitable for both individual and enterprise needs",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://tavily.com/"
},
{
"source": "github profile",
"source_url": "https://github.com/assafelovic"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "BrowserGPT",
"project_description": "BrowserGPT is a project that combines OpenAI's GPT-4 and the Playwright library to control browsers via natural language, enabling code snippet generation for browser tasks",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/mayt/BrowserGPT",
"stars_last_updated": "2024-08-05T12:19:24.095345",
"stars": 365
},
{
"source": "github profile",
"source_url": "https://github.com/mayt"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "ChartGPT",
"project_description": "ChartGPT offers AI-driven services like table summarization, charting, and code generation, featuring pay-as-you-go pricing, trusted by major companies, emphasizing data security, ease of use, and 24/7 customer support",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://chartgpt.io"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "AI Agent Assist by DialPad",
"project_description": "Dialpad introduces Ai Agent Assist, offering real-time, Ai-powered answers to enhance customer service through deep integrations, reducing agent ramp time, and providing actionable insights with out-of-the-box productivity",
"project_is_open_source": false,
"sources": [
{
"source": "landing page",
"source_url": "https://www.dialpad.com/ai-labs/ai-agent-assist/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Cal.ai",
"project_description": "Cal.ai is an open-source AI scheduling assistant that manages email communications for booking, rearranging, and inquiring about meetings, leveraging a LangChain Agent Executor and MailParser for efficient scheduling without API key exposure",
"project_is_open_source": true,
"sources": [
{
"source": "website",
"source_url": "https://cal.com/ai"
},
{
"source": "github",
"source_url": "https://github.com/calcom/cal.com/tree/main/apps/ai",
"stars_last_updated": "2024-08-05T12:19:24.817445",
"stars": 30360
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Bloop",
"project_description": "Bloop is a GPT-4-based coding assistant that boosts engineer productivity by allowing natural language interactions with codebases for explanations, feature writing, error troubleshooting, and more, featuring a code-centric AI playground, fast regex search, and comprehensive code navigation tools",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/BloopAI/bloop",
"stars_last_updated": "2024-08-05T12:19:25.426300",
"stars": 9339
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Cody",
"project_description": "Cody, an AI coding assistant, now offers an enterprise version with enhanced security, scalability, and control for organizations, supporting various IDEs and providing AI-powered autocomplete, chat assistance, and custom command capabilities",
"project_is_open_source": true,
"sources": [
{
"source": "website",
"source_url": "https://sourcegraph.com/cody"
},
{
"source": "github",
"source_url": "https://github.com/sourcegraph/cody",
"stars_last_updated": "2024-08-05T12:19:26.085881",
"stars": 2334
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Tabby",
"project_description": "Tabby is a self-hosted, open-source AI coding assistant similar to GitHub Copilot, featuring a self-contained setup with no DBMS/cloud dependency, OpenAPI for easy integration, consumer-grade GPU support, and a full-feature admin UI in its latest release",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/TabbyML/tabby",
"stars_last_updated": "2024-08-05T12:19:26.685901",
"stars": 20265
},
{
"source": "website",
"source_url": "https://tabby.tabbyml.com/"
},
{
"source": "docs",
"source_url": "https://tabby.tabbyml.com/docs"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Continue",
"project_description": "Continue is an open-source autopilot plugin for VS Code and JetBrains, enhancing coding with LLMs through features like task and tab autocomplete, natural language edits, file generation, and customization options, available under the Apache 2.0 license",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/continuedev/continue",
"stars_last_updated": "2024-08-05T12:19:27.373985",
"stars": 14017
},
{
"source": "website",
"source_url": "https://continue.dev"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Cursor",
"project_description": "Cursor is an AI-enhanced programming editor focusing on code discussion, editing, and debugging, with plans for advanced features like repository healing and AI-generated documentation",
"project_is_open_source": false,
"sources": [
{
"source": "issue tracker",
"source_url": "https://github.com/getcursor/cursor/issues"
},
{
"source": "website",
"source_url": "https://cursor.sh/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Sweep",
"project_description": "Sweep is an AI tool that automates the transformation of GitHub issues into pull requests, streamlining code improvements and bug fixes, supported by a suite of features like codebase understanding, test running, and a developer-friendly interface for installation and usage",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/sweepai/sweep",
"stars_last_updated": "2024-08-05T12:19:28.088117",
"stars": 7347
},
{
"source": "website",
"source_url": "https://sweep.dev/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Pieces",
"project_description": "Pieces is an AI-powered productivity tool for developers that enhances efficiency through a unified toolchain, offering on-device workflow assistance, intelligent code snippet management, and seamless integration with development tools and plugins",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://pieces.app/"
},
{
"source": "discord",
"source_url": "https://discord.gg/getpieces"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Aider",
"project_description": "Aider is a command-line tool for AI-assisted pair programming, allowing code editing in local git repositories with GPT-3.5/GPT-4, featuring direct file edits, automatic git commits, and support for most popular programming languages",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/paul-gauthier/aider",
"stars_last_updated": "2024-08-05T12:19:28.703066",
"stars": 15479
}
],
"categories": [
"AI Agents"
]
},
{
"project": "Imbue",
"project_description": "Imbue, previously known as Generally Intelligent, is developing AI systems designed for reasoning and coding, aiming to create truly personal computers that enhance human freedom, dignity, and agency, supported by a $200M funding round to advance their technology",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://imbue.com/"
},
{
"source": "twitter",
"source_url": "https://twitter.com/imbue_ai/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "VacAIgent",
"project_description": "VacAIgent is a Streamlit-integrated, CrewAI framework-based AI application (Trip Planner Agent) that automates and enhances trip planning through a user-friendly interface, demonstrating collaborative AI agent task execution and offering an interactive web app experience for tailoring travel plans",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/tonykipkemboi/trip_planner_agent",
"stars_last_updated": "2024-08-05T12:19:29.275153",
"stars": 77
}
],
"categories": [
"AI Agents"
]
},
{
"project": "XAgent",
"project_description": "XAgent is an open-source, experimental Large Language Model-driven autonomous agent designed to autonomously solve a wide range of tasks with features like autonomy, safety, extensibility, a GUI for easy interaction, and the ability to cooperate with humans",
"project_is_open_source": true,
"sources": [
{
"source": "github",
"source_url": "https://github.com/OpenBMB/XAgent",
"stars_last_updated": "2024-08-05T12:19:29.935478",
"stars": 7929
},
{
"source": "demo",
"source_url": "https://www.youtube.com/watch?v=QGkpd-tsFPA"
},
{
"source": "docs",
"source_url": "https://xagent-doc.readthedocs.io/en/latest/"
},
{
"source": "blog",
"source_url": "https://blog.x-agent.net/blog/xagent/"
}
],
"categories": [
"AI Agents"
]
},
{
"project": "BrainSoup",
"project_description": "BrainSoup is a multi-agent and multi-LLM native client, enabling users to create a team of personalized AI agents that can learn, remember, react to events, use tools, leverage the local resources of the user's computer, and work together to solve tasks autonomously",
"project_is_open_source": false,
"sources": [
{
"source": "website",
"source_url": "https://www.nurgo-software.com/products/brainsoup"
},
{
"source": "docs",
"source_url": "https://help.nurgo-software.com/collection/148-brainsoup"