-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathai-enablement-stack.json
1302 lines (1302 loc) · 69.6 KB
/
ai-enablement-stack.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
{
"title": {
"heading": "AI Enablement Stack",
"subtitle": "Tools and Technologies for Enabling Agentic AI Development"
},
"layers": [
{
"number": 1,
"name": "INFRASTRUCTURE LAYER",
"description": "The computing backbone that enables AI development and deployment, from development environments to model serving platforms.",
"sections": [
{
"name": "AI Workspaces",
"description": "Development environments for sandboxing and building AI applications",
"companies": [
{
"name": "Daytona",
"description": "Daytona.io is an open-source Development Environment Manager designed to simplify the setup and management of development environments across various platforms, including local, remote, and cloud infrastructures.",
"logo": "./public/images/daytonaio.png",
"link": "https://daytona.io/",
"github": "",
"x": "@daytonaio"
},
{
"name": "Runloop",
"description": "Runloop provides a secure, high-performance infrastructure platform that enables developers to build, scale, and deploy AI-powered coding solutions with seamless integration and real-time monitoring capabilities.",
"logo": "./public/images/runloop.svg",
"link": "https://www.runloop.ai/",
"github": "",
"x": "@RunloopAI"
},
{
"name": "E2B",
"description": "E2B provides an open-source runtime platform that enables developers to securely execute AI-generated code in cloud sandboxes, supporting multiple languages and frameworks for AI-powered development use cases.",
"logo": "./public/images/e2b-dev.png",
"link": "https://e2b.dev/",
"github": "",
"x": "@e2b_dev"
},
{
"name": "Morph Labs",
"description": "Morph Labs provides infrastructure for developing and deploying autonomous software engineers at scale, offering Infinibranch for Morph Cloud and focusing on advanced infrastructure for AI-powered development, backed by partnerships with Together AI, Nomic AI, and other leading AI companies.",
"logo": "",
"link": "https://morph.so/",
"hidden": "true",
"github": "",
"x": "@morph_labs"
}
]
},
{
"name": "Data Ingestion & Transformation",
"description": "Services for preparing data for AI applications and training",
"companies": [
{
"name": "Confluent",
"description": "Confluent is a cloud-native data streaming platform that helps companies access, store, and manage data to bring real-time, contextual, highly governed and trustworthy data to your AI systems and applications.",
"logo": "./public/images/confluent.png",
"link": "https://confluent.io/",
"github": "https://github.com/confluentinc",
"x": "@confluentinc"
}
]
},
{
"name": "Model Access & Deployment",
"description": "Services for deploying and running AI models",
"companies": [
{
"name": "OpenAI",
"description": "OpenAI develops advanced artificial intelligence systems like ChatGPT, GPT-4, and Sora, focusing on creating safe AGI that benefits humanity through products spanning language models, image generation, and video creation while maintaining leadership in AI research and safety.",
"logo": "./public/images/openai.png",
"link": "https://openai.com/",
"github": "",
"x": "@OpenAI"
},
{
"name": "Deepseek",
"description": "Deepseek develops advanced AI systems capable of performing a wide range of tasks with human-like or superior intelligence. Moving beyond narrow AI, Deepseek focuses on creating generalizable, autonomous systems that can learn, adapt, and apply knowledge across domains. With cutting-edge research in machine learning, deep learning, natural language processing, and robotics, Deepseek aims to push the boundaries of AI innovation. Its applications span various industries, delivering intelligent solutions for complex challenges.",
"logo": "./public/images/deepseek.png",
"link": "https://deepseek.com/",
"github": "",
"x": "@DeepseekAI"
},
{
"name": "Anthropic",
"description": "Anthropic provides frontier AI models through the Claude family, emphasizing safety and reliability, with offerings including Claude 3.5 Sonnet and Haiku. Their models feature advanced capabilities in reasoning, coding, and computer use, while maintaining strong safety standards through Constitutional AI and comprehensive testing.",
"logo": "./public/images/anthropic.svg",
"zoom": "70",
"link": "https://www.anthropic.com/",
"github": "",
"x": "@AnthropicAI"
},
{
"name": "Mistral AI",
"description": "Mistral AI provides frontier AI models with emphasis on openness and portability, offering both open-weight models (Mistral 7B, Mixtral 8x7B) and commercial models (Mistral Large 2), available through multiple deployment options including serverless APIs, cloud services, and on-premise deployment.",
"logo": "./public/images/mistral-ai.svg",
"link": "https://mistral.ai/",
"github": "",
"x": "@MistralAI"
},
{
"name": "Groq",
"description": "Groq provides ultra-fast AI inference infrastructure for openly-available models like Llama 3.1, Mixtral, and Gemma, offering OpenAI-compatible API endpoints with industry-leading speed and simple three-line integration for existing applications.",
"logo": "./public/images/groq.svg",
"link": "https://groq.com/",
"github": "",
"x": "@GroqInc"
},
{
"name": "AI21labs",
"description": "AI21 Labs delivers enterprise-grade generative AI solutions through its Jamba foundation model and RAG engine, enabling organizations to build secure, production-ready AI applications with flexible deployment options and dedicated integration support.",
"logo": "./public/images/ai21labs.svg",
"link": "https://www.ai21.com/",
"github": "",
"x": "@AI21Labs"
},
{
"name": "Cohere",
"description": "Cohere provides an enterprise AI platform featuring advanced language models, embedding, and retrieval capabilities that enables businesses to build production-ready AI applications with flexible deployment options across cloud or on-premises environments.",
"logo": "./public/images/cohere.svg",
"link": "https://cohere.com/",
"github": "",
"x": "@CohereForAI"
},
{
"name": "Hugging Face",
"description": "Hugging Face provides fully managed inference infrastructure for ML models with support for multiple hardware options (CPU, GPU, TPU) across various cloud providers, offering autoscaling and dedicated deployments with enterprise-grade security.",
"logo": "./public/images/huggingface.png",
"link": "https://huggingface.co/",
"github": "",
"x": "@huggingface"
},
{
"name": "Cartesia",
"description": "Cartesia AI delivers real-time multimodal intelligence through state space models that enable fast, private, and offline inference capabilities across devices, offering streaming-first solutions with constant memory usage and low latency.",
"logo": "./public/images/cartesia.svg",
"link": "https://www.cartesia.ai/",
"github": "",
"x": "@cartesia_ai"
},
{
"name": "Fireworks",
"description": "Provides easy access to open-source language models through a simple API, similar to offerings from closed-source providers.",
"logo": "./public/images/fireworks-ai.svg",
"zoom": "80",
"link": "https://fireworks.ai/",
"github": "",
"x": "@FireworksAI_HQ"
},
{
"name": "Together.AI",
"description": "Offers an API for accessing and running open-source LLMs, facilitating seamless integration into AI applications.",
"logo": "./public/images/together-ai.svg",
"link": "https://together.ai/",
"github": "",
"x": "@togethercompute"
},
{
"name": "Google Vertex AI",
"description": "End-to-end platform for deploying and managing AI models, including LLMs, with integrated tools for monitoring, versioning, and scaling.",
"logo": "./public/images/vertex.png",
"link": "https://cloud.google.com/vertex-ai",
"hidden": "true",
"x": "@GoogleAI"
},
{
"name": "Amazon Bedrock",
"description": "Amazon Bedrock is a fully managed service that provides access to leading foundation models through a unified API, featuring customization capabilities through fine-tuning and RAG, managed AI agents for workflow automation, and enterprise-grade security with HIPAA and GDPR compliance.",
"logo": "./public/images/amazon-bedrock.png",
"zoom": "140",
"link": "https://aws.amazon.com/bedrock/",
"github": "",
"x": "@awscloud"
},
{
"name": "Replicate",
"description": "Serverless platform for running machine learning models, allowing developers to deploy and scale models without managing infrastructure.",
"logo": "./public/images/replicate.svg",
"link": "https://replicate.com/",
"github": "",
"x": "@replicate"
},
{
"name": "SambaNova",
"description": "SambaNova provides custom AI infrastructure featuring their SN40L Reconfigurable Dataflow Unit (RDU), offering world-record inference speeds for large language models, with integrated fine-tuning capabilities and enterprise-grade security, delivered through both cloud and on-premises solutions.",
"logo": "./public/images/sambanova.png",
"zoom": "90",
"link": "https://sambanova.ai/",
"github": "",
"x": "@SambaNovaAI"
},
{
"name": "BentoML",
"description": "BentoML provides an open-source unified inference platform that enables organizations to build, deploy, and scale AI systems across any cloud with high performance and flexibility, while offering enterprise features like auto-scaling, rapid iteration, and SOC II compliance.",
"logo": "./public/images/bentoml.svg",
"link": "https://www.bentoml.com/",
"github": "",
"x": "@bentomlai"
},
{
"name": "OpenRouter",
"description": "OpenRouter provides a unified OpenAI-compatible API for accessing 282+ models across multiple providers, offering standardized access, provider routing, and model rankings, with support for multiple SDKs and framework integrations.",
"logo": "./public/images/openrouter.svg",
"zoom": "150",
"link": "https://openrouter.ai/",
"github": "",
"x": "@OpenRouterAI"
}
]
},
{
"name": "Cloud Providers",
"description": "Computing infrastructure that powers AI systems and their workspaces",
"companies": [
{
"name": "AWS",
"description": "",
"logo": "./public/images/aws.png",
"link": "https://aws.amazon.com/"
},
{
"name": "Azure",
"description": "",
"logo": "./public/images/azure.png",
"link": "https://azure.microsoft.com/"
},
{
"name": "GCP",
"description": "",
"logo": "./public/images/gcp.png",
"link": "https://cloud.google.com/"
},
{
"name": "Koyeb",
"description": "Koyeb provides a high-performance serverless platform specifically optimized for AI workloads, offering GPU/NPU infrastructure, global deployment across 50+ locations, and seamless scaling capabilities for ML model inference and training with built-in observability.",
"logo": "./public/images/koyeb.png",
"link": "https://www.koyeb.com/",
"github": "",
"x": "@gokoyeb"
},
{
"name": "Hyperbolic",
"description": "Hyperbolic provides a decentralized GPU marketplace for AI compute and inference, offering up to 80% cost reduction compared to traditional providers, featuring high-throughput inference services, pay-as-you-go GPU access, and compute monetization capabilities with hardware-agnostic support.",
"logo": "./public/images/hyperbolic-labs.svg",
"link": "https://hyperbolic.xyz/",
"github": "",
"x": "@hyperbolic_labs"
},
{
"name": "Prime Intellect",
"description": "Prime Intellect provides a unified GPU marketplace aggregating multiple cloud providers, featuring competitive pricing for various GPUs (H100, A100, RTX series), decentralized training capabilities across distributed clusters, and tools for collaborative AI model development with a focus on open-source innovation.",
"logo": "./public/images/prime-intellect.svg",
"link": "https://www.primeintellect.ai/",
"github": "",
"x": "@PrimeIntellect"
},
{
"name": "CoreWeave",
"description": "CoreWeave is an AI-focused cloud provider offering Kubernetes-native infrastructure optimized for GPU workloads, featuring 11+ NVIDIA GPU types, up to 35x faster performance and 80% cost reduction compared to traditional providers, with specialized solutions for ML/AI, VFX, and inference at scale.",
"logo": "./public/images/coreweave.png",
"link": "https://coreweave.com/",
"github": "",
"x": "@CoreWeave"
},
{
"name": "Nebius",
"description": "Nebius provides an AI-optimized cloud platform featuring latest NVIDIA GPUs (H200, H100, L40S) with InfiniBand networking, offering managed Kubernetes and Slurm clusters, MLflow integration, and specialized infrastructure for AI training, fine-tuning, and inference workloads.",
"logo": "./public/images/nebius.svg",
"link": "https://nebius.com/",
"github": "",
"x": "@nebiusai"
}
]
}
]
},
{
"number": 2,
"name": "INTELLIGENCE LAYER",
"description": "The cognitive foundation featuring frameworks, knowledge engines, and specialized models that power AI capabilities.",
"sections": [
{
"name": "Frameworks",
"description": "Core libraries and building blocks for AI application development",
"companies": [
{
"name": "LangChain",
"description": "",
"logo": "./public/images/langchain.png",
"link": "https://www.langchain.com/",
"github": "https://github.com/langchain-ai",
"x": "@LangChainAI"
},
{
"name": "LlamaIndex",
"description": "",
"logo": "./public/images/llamaindex.svg",
"link": "https://www.llamaindex.ai/",
"github": "https://github.com/run-llama",
"x": "@llama_index"
},
{
"name": "Haystack",
"description": "",
"logo": "./public/images/haystack.png",
"link": "https://haystack.deepset.ai/",
"github": "https://github.com/deepset-ai/haystack",
"x": "@Haystack_AI"
},
{
"name": "DSPy",
"description": "",
"logo": "./public/images/dspy.png",
"link": "https://dspy.ai/"
},
{
"name": "Pydantic AI",
"description": "",
"logo": "./public/images/pydantic-ai.svg",
"link": "https://ai.pydantic.dev/",
"github": "https://github.com/pydantic/pydantic-ai",
"x": "@pydantic"
},
{
"name": "Letta",
"description": "Provides an agent development platform with advanced memory management for LLMs, enabling developers to build, deploy, and scale production-ready AI agents with transparent reasoning and model-agnostic flexibility.",
"logo": "./public/images/letta.png",
"link": "https://www.letta.com/",
"github": "https://github.com/letta-ai/letta",
"x": "@Letta_AI"
},
{
"name": "Langbase",
"description": "Langbase provides a serverless AI development platform featuring BaseAI (Web AI Framework), composable AI Pipes for agent development, 50-100x cheaper serverless RAG, unified LLM API access, and collaboration tools, with enterprise-grade security and observability.",
"logo": "./public/images/langbase.svg",
"link": "https://langbase.com/",
"x": "@langbaseinc"
},
{
"name": "AutoGen",
"description": "Framework for developing LLM applications with multiple conversational agents that collaborate and interact with humans.",
"logo": "./public/images/autogen.svg",
"link": "https://github.com/microsoft/autogen",
"github": "https://github.com/microsoft/autogen",
"x": "@pyautogen"
},
{
"name": "TaskWeaver",
"description": "A framework for creating and managing workflows and tasks for AI agents.",
"logo": "",
"link": "https://microsoft.github.io/TaskWeaver/",
"github": "https://github.com/microsoft/TaskWeaver"
},
{
"name": "Toolhouse",
"description": "Toolhouse provides a cloud infrastructure platform and universal SDK that enables developers to equip LLMs with actions and knowledge through a Tool Store, offering pre-built optimized functions, low-latency execution, and cross-LLM compatibility with just three lines of code.",
"logo": "./public/images/toolhouse.svg",
"link": "https://toolhouse.ai/",
"hidden": "true",
"github": "https://github.com/toolhouseai",
"x": "@ToolhouseAI"
},
{
"name": "Composio",
"description": "Composio provides an integration platform for AI agents and LLMs with 250+ pre-built tools, managed authentication, and RPA capabilities, enabling developers to easily connect their AI applications with various services while maintaining SOC-2 compliance and supporting multiple agent frameworks.",
"logo": "./public/images/composio.svg",
"link": "https://composio.dev/agentauth/",
"github": "https://github.com/ComposioHQ/composio/tree/master/python/swe",
"x": "@composiohq"
},
{
"name": "CrewAI",
"description": "CrewAI provides a comprehensive platform for building, deploying, and managing multi-agent AI systems, offering both open-source framework and enterprise solutions with support for any LLM and cloud platform, enabling organizations to create automated workflows across various industries.",
"logo": "./public/images/crewai.svg",
"link": "https://www.crewai.com/",
"github": "",
"x": "@getcrewai"
},
{
"name": "AI Suite",
"description": "AI Suite provides a unified interface for multiple LLM providers (OpenAI, Anthropic, Azure, Google, AWS, Groq, Mistral, etc.), offering standardized API access with OpenAI-compatible syntax, easy provider switching, and seamless integration capabilities, available as an open-source MIT-licensed framework.",
"logo": "",
"link": "https://github.com/andrewyng/aisuite"
},
{
"name": "Promptflow",
"description": "Promptflow is Microsoft's open-source development framework for LLM applications, offering tools for flow creation, testing, evaluation, and deployment, featuring visual flow design through VS Code extension, built-in evaluation metrics, and CI/CD integration capabilities.",
"logo": "",
"link": "https://microsoft.github.io/promptflow/index.html"
},
{
"name": "LLMStack",
"description": "LLMStack is an open-source platform for building AI agents, workflows, and applications, featuring model chaining across major providers, data integration from multiple sources (PDFs, URLs, Audio, Drive), and collaborative development capabilities with granular permissions.",
"logo": "./public/images/llmstack.svg",
"link": "https://llmstack.ai/",
"github": "https://github.com/trypromptly/LLMStack",
"x": "@llmstack"
},
{
"name": "Graphlit",
"description": "Graphlit is a serverless, batteries-included, RAG-as-a-Service platform. Graphlit manages data ingestion, vector embeddings, and LLM flows — allowing teams to quickly build AI apps and agents without the burden of complex data infrastructure.",
"logo": "./public/images/graphlit.png",
"link": "https://www.graphlit.com/",
"github": "https://github.com/graphlit",
"x": "@graphlit"
},
{
"name": "Griptape",
"description": "Griptape provides an enterprise AI development platform featuring Off-Prompt™ technology, combining a Python framework for predictable AI development with cloud infrastructure for ETL, RAG, and agent deployment, offering built-in monitoring and policy enforcement capabilities.",
"logo": "./public/images/griptape.svg",
"link": "https://griptape.ai/",
"github": "https://github.com/griptape-ai",
"x": "@GriptapeAI"
}
]
},
{
"name": "Knowledge Engines",
"description": "Databases and systems for managing and retrieving information",
"companies": [
{
"name": "Pinecone",
"description": "",
"logo": "./public/images/pinecone.svg",
"link": "https://www.pinecone.io/",
"github": "",
"x": "@pinecone"
},
{
"name": "Weaviate",
"description": "",
"logo": "./public/images/weaviate.png",
"zoom": "120",
"link": "https://weaviate.io/",
"github": "https://github.com/weaviate/weaviate",
"x": "@weaviate_io"
},
{
"name": "Chroma",
"description": "",
"logo": "./public/images/chroma.svg",
"link": "https://www.trychroma.com/",
"github": "https://github.com/chroma-core/chroma",
"x": "@trychroma"
},
{
"name": "Epsilla",
"description": "Epsilla provides an open-source high performance vector database and an all-in-one platform for RAG and AI Agent powered by your private data and knowledge",
"logo": "./public/images/epsilla.svg",
"link": "https://epsilla.com",
"github": "https://github.com/epsilla-cloud/vectordb",
"x": "@epsilla_inc"
},
{
"name": "Milvus",
"description": "",
"logo": "./public/images/milvus.svg",
"link": "https://milvus.io/",
"github": "https://github.com/milvus-io/milvus",
"x": "@milvusio"
},
{
"name": "Qdrant",
"description": "",
"logo": "./public/images/qdrant.png",
"link": "https://qdrant.tech/",
"github": "",
"x": "@qdrant_engine"
},
{
"name": "MongoDB Atlas",
"description": "",
"logo": "./public/images/mongodb.svg",
"link": "https://www.mongodb.com/products/platform/atlas-database",
"github": "",
"x": "@MongoDB"
},
{
"name": "Supabase",
"description": "Supabase Vector provides an open-source vector database built on Postgres and pgvector, offering scalable embedding storage, indexing, and querying capabilities with integrated AI tooling for OpenAI and Hugging Face, featuring enterprise-grade security and global deployment options.",
"logo": "./public/images/supabase.png",
"link": "https://supabase.com/modules/vector",
"github": "https://github.com/supabase/supabase",
"x": "@supabase"
},
{
"name": "Contextual AI",
"description": "Contextual AI provides enterprise-grade RAG (Retrieval-Augmented Generation) solutions that enable organizations in regulated industries to build and deploy production-ready AI applications for searching and analyzing large volumes of business-critical documents.",
"logo": "./public/images/contextualai.png",
"zoom": "80",
"link": "https://contextual.ai/",
"github": "",
"x": "@ContextualAI"
},
{
"name": "Unstructured",
"description": "Platform for working with unstructured data, offering tools for data pre-processing, ETL, and integration with LLMs.",
"logo": "./public/images/unstructured.avif",
"link": "https://unstructured.io/",
"hidden": "true",
"github": "",
"x": "@UnstructuredIO"
},
{
"name": "Sciphi",
"description": "SciPhi offers R2R, an all-in-one RAG (Retrieval Augmented Generation) solution that enables developers to build and scale AI applications with advanced features including document management, hybrid vector search, and knowledge graphs, while providing superior ingestion performance compared to competitors.",
"logo": "./public/images/sciphi.png",
"link": "https://www.sciphi.ai/",
"hidden": "true"
},
{
"name": "pgAI",
"description": "pgAI is a PostgreSQL extension that enables AI capabilities directly in the database, featuring automated vector embedding creation, RAG implementation, semantic search, and LLM integration (OpenAI, Claude, Cohere, Llama) with support for high-performance vector operations through pgvector and pgvectorscale.",
"logo": "./public/images/pgai.png",
"link": "https://github.com/timescale/pgai",
"hidden": "true",
"github": "https://github.com/timescale/pgai",
"x": "@timescaledb"
},
{
"name": "Zep",
"description": "Zep is a memory layer for AI agents that continuously learns from user interactions and changing business data. Zep ensures that your Agent has a complete and holistic view of the user, enabling you to build more personalized and accurate user experiences.",
"logo": "./public/images/zep.svg",
"link": "https://www.getzep.com",
"github": "https://github.com/getzep",
"x": "@zep_ai"
},
{
"name": "FalkorDB",
"description": "FalkorDB provides a graph database platform optimized for AI applications, featuring GraphRAG technology for knowledge graph creation, sub-millisecond querying, and advanced relationship modeling, enabling more accurate and contextual LLM responses through graph-based data relationships.",
"logo": "./public/images/falkordb.png",
"link": "https://falkordb.com/",
"github": "https://github.com/FalkorDB/falkordb",
"x": "@FalkorDB"
},
{
"name": "Superduper",
"description": "Superduper provides a platform for building and deploying AI applications directly with existing databases, featuring integration with multiple AI frameworks and databases, support for RAG, vector search, and ML workflows, while enabling deployment on existing infrastructure without data movement or ETL pipelines.",
"logo": "./public/images/superduper.png",
"link": "https://superduper.io/",
"github": "https://github.com/superduper-io/superduper",
"x": "@SuperduperAI"
},
{
"name": "Elasticsearch",
"description": "Elasticsearch's open source vector database offers an efficient way to create, store, and search vector embeddings. Combine text search and vector search for hybrid retrieval, resulting in the best of both capabilities for greater relevance and accuracy.",
"logo": "./public/images/elastic.png",
"link": "https://www.elastic.co/elasticsearch/vector-database",
"github": "https://github.com/elastic/elasticsearch",
"x": "@elastic"
},
{
"name": "Exa",
"description": "Exa provides business-grade search and web crawling capabilities through meaning-based search, featuring neural search APIs, content scraping, and Websets for creating custom datasets, with seamless integration for RAG applications and LLM contextualization.",
"logo": "./public/images/exa.svg",
"link": "https://exa.ai/",
"github": "https://github.com/exa-labs/",
"x": "@ExaSearch"
},
{
"name": "Firebase Data Connect",
"description": "Firebase Data Connect enables vector similarity search leveraging its underlying PostgreSQL database and Google Vertex AI embeddings.",
"logo": "./public/images/firebase_data_connect.svg",
"link": "https://firebase.google.com/docs/data-connect/solutions-vector-similarity-search",
"github": "",
"x": "@Firebase"
}
]
},
{
"name": "Specialized Coding Models",
"description": "AI models optimized for software development",
"companies": [
{
"name": "Codestral",
"description": "Codestral is Mistral AI's specialized 22B code generation model supporting 80+ programming languages, featuring a 32k context window, fill-in-the-middle capabilities, and state-of-the-art performance on coding benchmarks, available through API endpoints and IDE integrations.",
"logo": "./public/images/mistral-ai.svg",
"link": "https://mistral.ai/news/codestral/",
"x": "@MistralAI"
},
{
"name": "Claude 3.5 Sonnet",
"description": "Claude 3.5 Sonnet is Anthropic's frontier AI model offering state-of-the-art performance in reasoning, coding, and vision tasks, featuring a 200K token context window, computer use capabilities, and enhanced safety measures, available through multiple platforms including Claude.ai and major cloud providers.",
"logo": "./public/images/claudeai.svg",
"link": "https://www.anthropic.com/claude",
"github": "",
"x": "@AnthropicAI"
},
{
"name": "Qwen2.5-Coder-32B",
"description": "Qwen2.5-Coder is a specialized code-focused model matching GPT-4's coding capabilities, featuring 32B parameters, 128K token context window, support for 80+ programming languages, and state-of-the-art performance on coding benchmarks, available as an open-source Apache 2.0 licensed model.",
"logo": "./public/images/qwen.png",
"zoom": "150",
"link": "https://huggingface.co/Qwen/Qwen2.5-Coder-32B",
"github": "",
"x": "@Alibaba_Qwen"
},
{
"name": "Poolside Malibu",
"description": "Poolside Malibu is an enterprise-focused code generation model trained using Reinforcement Learning from Code Execution Feedback (RLCEF), featuring 100K token context, custom fine-tuning capabilities, and deep integration with development environments, available through Amazon Bedrock for secure deployment.",
"logo": "./public/images/poolside.svg",
"link": "https://aws.amazon.com/bedrock/poolside/",
"github": "",
"x": "@poolsideai"
}
]
}
]
},
{
"number": 3,
"name": "ENGINEERING LAYER",
"description": "Development resources for building production-ready AI applications, including training tools, testing frameworks, and quality assurance solutions.",
"sections": [
{
"name": "Training & Fine-Tuning",
"description": "Resources for customizing and optimizing AI models",
"companies": [
{
"name": "Lamini",
"description": "Provides tools for efficient fine-tuning of large language models, including techniques like quantization and memory optimization.",
"logo": "./public/images/lamini.svg",
"zoom": "80",
"link": "https://lamini.ai/",
"github": "",
"x": "@LaminiAI"
},
{
"name": "Predibase",
"description": "Platform for building and deploying machine learning models, with a focus on simplifying the development process and enabling faster iteration.",
"logo": "./public/images/predibase.svg",
"link": "https://www.predibase.com/",
"github": "",
"x": "@predibase"
},
{
"name": "Modal",
"description": "Modal offers a serverless cloud platform for AI and ML applications that enables developers to deploy and scale workloads instantly with simple Python code, featuring high-performance GPU infrastructure and pay-per-use pricing.",
"logo": "./public/images/modal.svg",
"link": "https://modal.com/",
"github": "",
"x": "@modal_labs"
},
{
"name": "Julius",
"description": "",
"logo": "./public/images/julius.svg",
"zoom": "140",
"link": "https://julius.ai/",
"x": "@JuliusAI_"
},
{
"name": "Fine Tuner",
"description": "",
"logo": "./public/images/fine-tuners.png",
"link": "https://fine-tuner.ai/"
},
{
"name": "Codeanywhere",
"description": "Provides workspaces with GPU",
"logo": "./public/images/codeanywhere.svg",
"link": "https://codeanywhere.com/",
"github": "",
"x": "@Codeanywhere"
},
{
"name": "Lightning AI",
"description": "Lightning AI provides a comprehensive platform for building AI products, featuring GPU access, development environments, training capabilities, and deployment tools, with support for enterprise-grade security, multi-cloud deployment, and team collaboration, used by major organizations like NVIDIA and Microsoft.",
"logo": "./public/images/lightningai.png",
"link": "https://lightning.ai/",
"github": "",
"x": "@LightningAI"
}
]
},
{
"name": "Tools",
"description": "Development utilities, libraries and services for building AI applications",
"companies": [
{
"name": "CopilotKit",
"description": "CopilotKit is an open-source framework for building custom AI copilots and assistants into any application. Features include In-App AI Chatbot, Generative UI, Copilot Tasks, and RAG capabilities, with easy integration and full customization options.",
"logo": "./public/images/copilot-kit.png",
"link": "https://copilotkit.ai/",
"github": "https://github.com/CopilotKit/CopilotKit",
"x": "@CopilotKit"
},
{
"name": "Ant Design X",
"description": "Ant Design X is a brand new AGI component library from Ant Design, designed to help developers more easily develop AI product user interfaces. Building on Ant Design, Ant Design X further expands the design specifications for AI products, offering developers more powerful tools and resources.",
"logo": "./public/images/ant-design-x.svg",
"link": "https://x.ant.design/",
"github": "https://github.com/ant-design/x",
"x": "@AntDesignUI"
},
{
"name": "Relevance AI",
"description": "Relevance AI provides a no-code AI workforce platform that enables businesses to build, customize, and manage AI agents and tools for various functions like sales and support, featuring Bosh, their AI Sales Agent, while ensuring enterprise-grade security and compliance.",
"logo": "./public/images/relevanceai.svg",
"link": "https://relevanceai.com/",
"github": "https://github.com/RelevanceAI",
"x": "@RelevanceAI_"
},
{
"name": "Greptile",
"description": "Greptile provides an AI-powered code analysis platform that helps software teams ship faster by offering intelligent code reviews, codebase chat, and custom dev tools with full contextual understanding, while maintaining SOC2 Type II compliance and optional self-hosting capabilities.",
"logo": "./public/images/greptile.png",
"zoom": "140",
"link": "https://www.greptile.com/",
"github": "https://github.com/greptileai",
"x": "@greptileai"
},
{
"name": "Sourcegraph",
"description": "Sourcegraph provides a code intelligence platform featuring Cody, an AI coding assistant, and advanced code search capabilities that help developers navigate, understand, and modify complex codebases while automating routine tasks across enterprise environments.",
"logo": "./public/images/sourcegraph.svg",
"link": "https://sourcegraph.com/",
"github": "https://github.com/sourcegraph",
"x": "@sourcegraph"
},
{
"name": "PromptLayer",
"description": "PromptLayer provides a comprehensive prompt engineering platform that enables technical and non-technical teams to collaboratively edit, evaluate, and deploy LLM prompts through a visual CMS, while offering version control, A/B testing, and monitoring capabilities with SOC 2 Type 2 compliance.",
"logo": "./public/images/promptlayer.png",
"link": "https://www.promptlayer.com/",
"github": "https://github.com/MagnivOrg/prompt-layer-library",
"x": "@promptlayer"
},
{
"name": "Gretel.ai",
"description": "",
"logo": "./public/images/gretel.svg",
"link": "https://gretel.ai/",
"x": "@gretel_ai"
},
{
"name": "Mostly.ai",
"description": "",
"logo": "./public/images/mostlyai.svg",
"link": "https://mostly.ai/",
"zoom": "70",
"x": "@mostly_ai"
},
{
"name": "Tonic.ai",
"description": "",
"logo": "./public/images/tonic.svg",
"link": "https://www.tonic.ai/",
"zoom": "90",
"x": "@tonicfakedata"
},
{
"name": "Rockfish.ai",
"description": "",
"logo": "./public/images/rockfishdata.png",
"link": "https://www.rockfish.ai/",
"hidden": "true"
},
{
"name": "JigsawStack",
"description": "JigsawStack provides a comprehensive suite of AI APIs including web scraping, translation, speech-to-text, OCR, prediction, and prompt optimization, offering globally distributed infrastructure with type-safe SDKs and built-in monitoring capabilities across 99+ locations.",
"logo": "./public/images/jigsawstack.svg",
"link": "https://www.jigsawstack.com/",
"github": "https://github.com/JigsawStack",
"x": "@jigsawstack"
}
]
},
{
"name": "Testing & Quality Assurance",
"description": "Systems for validating AI performance and reliability",
"companies": [
{
"name": "Adaline",
"description": "Adaline is the single platform to iterate, evalute, deploy, and monitor prompts for your LLM applications.",
"logo": "./public/images/adaline.svg",
"link": "https://adaline.ai/",
"github": "https://github.com/adaline",
"x": "@adalinewastaken"
},
{
"name": "LangSmith",
"description": "",
"logo": "./public/images/langsmith.svg",
"zoom": "80",
"link": "https://www.langchain.com/langsmith",
"x": "@LangChainAI"
},
{
"name": "Langfuse",
"description": "Langfuse is an Open Source LLM Engineering platform with a focus on LLM Observability, Evaluation, and Prompt Management. Use automated evaluators or the Langfuse Playground to iteratively test and improve an LLM application. Langfuse is SOC2/ISO27001 certified and can be easily self-hosted at scale.",
"logo": "./public/images/langfuse.svg",
"link": "https://langfuse.com/",
"github": "https://github.com/langfuse/langfuse",
"x": "@langfuse"
},
{
"name": "Galileo",
"description": "",
"logo": "./public/images/galileo.png",
"zoom": "150",
"link": "https://www.galileo.ai/"
},
{
"name": "Arize",
"description": "",
"logo": "./public/images/arize-ai.svg",
"link": "https://arize.com/"
},
{
"name": "Weight & Biases",
"description": "",
"logo": "./public/images/w&b.png",
"link": "https://wandb.ai/site/",
"x": "@weights_biases"
},
{
"name": "AgentOps",
"description": "",
"logo": "./public/images/agentops.svg",
"link": "https://www.agentops.ai/"
},
{
"name": "Confident AI",
"description": "Confident AI provides an LLM evaluation platform that enables organizations to benchmark, unit test, and monitor their LLM applications through automated regression testing, A/B testing, and synthetic dataset generation, while offering research-backed evaluation metrics and comprehensive observability features.",
"logo": "./public/images/confidentai.svg",
"zoom": "150",
"link": "https://www.confident-ai.com/",
"github": "",
"x": "@confident_ai"
},
{
"name": "ContextQA",
"description": "AI agent specifically designed for software testing and quality assurance, automating the testing process and providing comprehensive test coverage.",
"logo": "./public/images/contextqa.svg",
"zoom": "150",
"link": "https://contextqa.com/",
"github": "",
"x": "@ContextQa"
},
{
"name": "Braintrust",
"description": "Braintrust provides an end-to-end platform for evaluating and testing LLM applications, offering features like prompt testing, custom scoring, dataset management, real-time tracing, and production monitoring, with support for both UI-based and SDK-driven workflows.",
"logo": "./public/images/braintrust.svg",
"link": "https://www.braintrustdata.com/",
"github": "https://github.com/braintrustdata/",
"x": "@braintrustdata"
},
{
"name": "Athina AI",
"description": "Athina is a collaborative AI development platform designed for your team to build, test and monitor AI features.",
"logo": "./public/images/athina.png",
"link": "https://www.athina.ai/",
"github": "https://github.com/athina-ai",
"x": "@AthinaAI"
}
]
}
]
},
{
"number": 4,
"name": "OBSERVABILITY AND GOVERNANCE LAYER",
"description": "Tools for monitoring, securing, and managing AI systems in production. Essential for maintaining reliable and compliant AI operations.",
"sections": [
{
"name": "Development Pipeline",
"description": "Tools for managing and monitoring AI application lifecycles",
"companies": [
{
"name": "Portkey",
"description": "Portkey provides a comprehensive AI gateway and control panel that enables teams to route to 200+ LLMs, implement guardrails, manage prompts, and monitor AI applications with detailed observability features while maintaining SOC2 compliance and HIPAA/GDPR standards.",
"logo": "./public/images/portkey.png",
"link": "https://portkey.ai/",
"github": "",
"x": "@portkeyai"
},
{
"name": "Baseten",
"description": "Baseten provides high-performance inference infrastructure featuring up to 1,500 tokens/second throughput, sub-100ms latency, and GPU autoscaling, with Truss open-source model packaging, enterprise security (SOC2, HIPAA), and support for deployment in customer clouds or self-hosted environments.",
"logo": "./public/images/baseten.png",
"link": "https://baseten.co/",
"github": "",
"x": "@basetenco"
},
{
"name": "LangServe",
"description": "",
"logo": "./public/images/langserve.svg",
"link": "https://github.com/langchain-ai/langserve"
},
{
"name": "Stack AI",
"description": "Stack AI provides an enterprise generative AI platform for building and deploying AI applications with a no-code interface, offering pre-built templates, workflow automation, enterprise security features (SOC2, HIPAA, GDPR), and on-premise deployment options with support for multiple AI models and data sources.",
"logo": "./public/images/stackai.svg",
"link": "https://www.stack-ai.com/",
"github": "",
"x": "@StackAI_HQ"
}
]
},
{
"name": "Evaluation & Monitoring",
"description": "Systems for tracking AI performance and behavior",
"companies": [
{
"name": "Pydantic Logfire",
"description": "",
"logo": "",
"link": "https://pydantic.dev/logfire",
"github": "https://github.com/pydantic/logfire"
},
{
"name": "Cleanlab",
"description": "Cleanlab provides an AI-powered data curation platform that helps organizations improve their GenAI and ML solutions by automatically detecting and fixing data quality issues, reducing hallucinations, and enabling trustworthy AI deployment while offering VPC integration for enhanced security.",
"logo": "./public/images/cleanlab.png",
"link": "https://cleanlab.ai/",
"github": "https://github.com/cleanlab/cleanlab",
"x": "@cleanlabai"
},
{
"name": "Patronus",
"description": "Patronus provides a comprehensive AI evaluation platform built on industry-leading research, offering features for testing hallucinations, security risks, alignment, and performance monitoring, with both pre-built evaluators and custom evaluation capabilities for RAG systems and AI agents.",
"logo": "./public/images/patronusai.svg",
"link": "https://www.patronus.ai/",
"github": "",
"x": "@PatronusAI"
},
{
"name": "Log10",
"description": "Log10 provides an end-to-end AI accuracy platform for evaluating and monitoring LLM applications in high-stakes industries, featuring expert-driven evaluation, automated feedback systems, real-time monitoring, and continuous improvement workflows with built-in security and compliance features.",
"logo": "./public/images/log10.png",
"link": "https://www.log10.io/",
"github": "https://github.com/log10-io",
"x": "@log10io"
},
{
"name": "Traceloop",
"description": "Traceloop provides open-source LLM monitoring through OpenLLMetry, offering real-time hallucination detection, output quality monitoring, and prompt debugging capabilities across 22+ LLM providers with zero-intrusion integration.",
"logo": "./public/images/traceloop.png",
"link": "https://traceloop.com/",
"github": "https://github.com/traceloop/openllmetry",
"x": "@traceloopdev"
},
{
"name": "WhyLabs",
"description": "WhyLabs provides a comprehensive AI Control Center for monitoring, securing, and optimizing AI applications, offering real-time LLM monitoring, security guardrails, and privacy-preserving observability with SOC 2 Type 2 compliance and support for multiple modalities.",
"logo": "./public/images/whylabs.svg",
"link": "https://whylabs.ai/",
"github": "",
"x": "@whylabs"
},
{
"name": "OpenLLMetry",
"description": "OpenLLMetry provides an open-source observability solution for LLMs built on OpenTelemetry standards, offering easy integration with major observability platforms like Datadog, New Relic, and Grafana, requiring just two lines of code to implement.",
"logo": "./public/images/openllmetry.png",
"link": "https://openllmetry.org/"
},
{
"name": "LangWatch",
"description": "LangWatch provides a comprehensive LLMOps platform for optimizing and monitoring LLM performance, featuring automated prompt optimization using DSPy, quality evaluations, performance monitoring, and collaborative tools for AI teams, with enterprise-grade security and self-hosting options.",
"logo": "./public/images/langwatch.png",
"link": "https://langwatch.ai/",
"github": "https://github.com/langwatch/langwatch",
"x": "@LangWatchAI"
},
{
"name": "Elastic Observability",
"description": "Elastic Observability is a full-stack observability solution and includes Log Monitoring and Analytics, Cloud and Infrastructure Monitoring, Application Performance Monitoring, Digital Experience Monitoring, Continuous Profiling, AIOps and LLM Observability.",
"logo": "./public/images/elastic.png",
"link": "https://www.elastic.co/observability-labs/blog/tag/llmobs",
"github": "https://github.com/elastic",
"x": "@elastic"
}
]
},
{
"name": "Risk & Compliance",
"description": "Frameworks for ensuring responsible AI use and regulatory compliance",
"companies": [
{
"name": "Alinia",
"description": "",
"logo": "./public/images/alinia.svg",
"link": "https://alinia.ai/"
},
{
"name": "Guardrails AI",
"description": "",
"logo": "./public/images/guardrailsai.svg",
"link": "https://www.guardrailsai.com/"
},
{
"name": "Lakera",
"description": "",
"logo": "./public/images/lakera-ai.png",
"zoom": "80",
"link": "https://www.lakera.ai/",
"x": "@LakeraAI"