-
Notifications
You must be signed in to change notification settings - Fork 55
/
data.yml
1088 lines (1086 loc) · 55.6 KB
/
data.yml
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
landscape:
- category:
name: Application Development
subcategories:
- subcategory:
name: Agent & Prompt Framework
items:
- item:
crunchbase: https://www.crunchbase.com/organization/langchain
description: LangChain is a language model application development library
homepage_url: https://langchain.com
logo: langchain.svg
name: LangChain
project: opensource
repo_url: https://github.com/langchain-ai/langchain
twitter: https://twitter.com/langchainai
- item:
crunchbase: https://www.crunchbase.com/organization/deepset
description: Haystack is an open-source LLM framework for building production-ready applications
homepage_url: https://haystack.deepset.ai/
logo: haystack.svg
name: Haystack
project: opensource
repo_url: https://github.com/deepset-ai/haystack
twitter: https://twitter.com/Haystack_AI
- item:
crunchbase: https://www.crunchbase.com/organization/llamaindex
description: LlamaIndex is a simple, flexible data framework for connecting custom data sources to large language models.
homepage_url: https://www.llamaindex.ai/
logo: llamaindex.svg
name: LlamaIndex
project: opensource
repo_url: https://github.com/run-llama/llama_index
twitter: https://twitter.com/llama_index
- item:
crunchbase: https://www.crunchbase.com/organization/langgenius-inc
description: Dify.AI is an LLM application development platform. It integrates the concepts of Backend as a Service and LLMOps, covering the core tech stack required for building generative AI-native applications, including a built-in RAG engine.
homepage_url: https://dify.ai
logo: dify.svg
name: Dify
project: opensource
repo_url: https://github.com/langgenius/dify
twitter: https://twitter.com/dify_ai/
- item:
description: Langflow is a UI for LangChain, designed with react-flow to provide an effortless way to experiment and prototype flows.
homepage_url: https://www.langflow.org/
logo: langflow.svg
name: Langflow
project: opensource
repo_url: https://github.com/logspace-ai/langflow
twitter: https://twitter.com/logspace_ai
- item:
description: The open source alternative to OpenAI Assistants API
homepage_url: https://www.superagent.sh/
logo: superagent.svg
name: Superagent
project: opensource
repo_url: https://github.com/homanp/superagent
twitter: https://twitter.com/superagent_ai
- item:
crunchbase: https://www.crunchbase.com/organization/fixie-ai
description: From no-code to full code, Fixie is the world's leading platform for building conversational AI agents that are designed to answer questions, take action, and live directly alongside your application.
homepage_url: https://fixie.ai/
logo: fixie.svg
name: Fixie
twitter: https://twitter.com/fixieai
- item:
description: Phidata is a toolkit for building AI Assistants using function calling.
homepage_url: https://www.phidata.com
logo: phidata.svg
name: Phidata
project: opensource
repo_url: https://github.com/phidatahq/phidata
twitter: https://twitter.com/phidatahq
- item:
description: Floom is an open-source AI framework, helping developers elevate apps with AI features. Offering dev-first AI development including a production-grade framework with routing, caching, cost management and more, as well AI Pipeline hosting on on-prem Docker container & Floom Cloud, Floom is built for production grade AI integration.
homepage_url: https://floom.ai
logo: floom.svg
name: Floom
project: opensource
repo_url: https://github.com/FloomAI/Floom
twitter: https://twitter.com/Floom_AI
- item:
crunchbase: https://www.crunchbase.com/organization/dataspark-ai
description: DataSpark is a framework that offers AI Agents as-a-service, enabling enterprises to combine the power of multiple agents in one single platform.
homepage_url: https://ai.dataspark.org/
logo: DataSparkAI.svg
name: DataSpark AI
twitter: https://twitter.com/datasparkapp
- subcategory:
name: Observability & Evaluation
items:
- item:
description: MLflow is an open-source platform, purpose-built to assist machine learning practitioners and teams in handling the complexities of the machine learning process. MLflow focuses on the full lifecycle for machine learning projects, ensuring that each phase is manageable, traceable, and reproducible.
homepage_url: https://mlflow.org/docs/latest/index.html
logo: mlflow.svg
name: mlflow
project: opensource
repo_url: https://github.com/mlflow/mlflow
twitter: https://twitter.com/MLflow
- item:
crunchbase: https://www.crunchbase.com/organization/finto-acba
description: |
🪢 Open source LLM observability, analytics, prompt management, evaluations, tests, monitoring, logging, tracing, LLMOps. 🕵️♂️ Langfuse: the LLM engineering platform. Debug, analyze and iterate together - 🍊YC W23 🤖 Stable SDKs + integrations for Typescript, Python, OpenAI, Langchain, Litellm, Flowise, Superagent and Langflow
homepage_url: https://langfuse.com/
logo: langfuse.svg
name: langfuse
project: opensource
repo_url: https://github.com/langfuse/langfuse
twitter: https://twitter.com/langfuse
- item:
crunchbase: https://www.crunchbase.com/organization/traceloop
description: Traceloop monitors the quality of your LLM application in production using OpenTelemetry. It provides you with alerts, insights and gradual rollout capabilities to confidently deploy changes to your prompts and model configurations.
homepage_url: https://traceloop.com
logo: traceloop.svg
name: traceloop
project: opensource
repo_url: https://github.com/traceloop/openllmetry
twitter: https://twitter.com/traceloopdev
- item:
crunchbase: https://www.crunchbase.com/organization/helicone
description: The easiest way to monitor your LLM-applications at scale
homepage_url: https://www.helicone.ai/
logo: helicone.svg
name: Helicone
project: opensource
repo_url: https://github.com/Helicone/helicone
twitter: https://twitter.com/helicone_ai
- item:
crunchbase: https://www.crunchbase.com/organization/agentops
description: AgentOps is the toolkit for evaluating and developing robust and reliable AI agents.
homepage_url: https://www.agentops.ai/
name: agentops
logo: agentops.svg
project: opensource
repo_url: https://github.com/AgentOps-AI/agentops
twitter: https://twitter.com/AgentOpsAI
- item:
crunchbase: https://www.crunchbase.com/organization/deepchecks
description: Tests for Continuous Validation of ML Models & Data. Deepchecks is a holistic open-source solution for all of your AI & ML validation needs, enabling to thoroughly test your data and models from research to production.
homepage_url: https://deepchecks.com/
name: deepchecks
logo: deepchecks.svg
project: opensource
repo_url: https://github.com/deepchecks/deepchecks
twitter: https://twitter.com/deepchecks
- item:
crunchbase: https://www.crunchbase.com/organization/giskard-ai
description: The testing framework for ML models, from tabular to LLMs
homepage_url: https://giskard.ai/
name: giskard
logo: giskard.svg
project: opensource
repo_url: https://github.com/Giskard-AI/giskard
twitter: https://twitter.com/giskard_ai
- item:
crunchbase: https://www.crunchbase.com/organization/greptime
description: Gain comprehensive insights into the cost, performance, feedback, traces of your LLM applications.
homepage_url: https://greptime.com/product/ai
logo: greptime_cloud.svg
name: GreptimeAI
project: opensource
repo_url: https://github.com/GreptimeTeam/greptimeai
twitter: https://twitter.com/Greptime
- item:
crunchbase: https://www.crunchbase.com/organization/weights-biases
description: Weights & Biases helps AI developers build better models faster. Quickly track experiments, version and iterate on datasets, evaluate model performance, reproduce models, and manage your ML workflows end-to-end.
homepage_url: https://wandb.ai/site
logo: wandb.svg
name: Weights & Biases
twitter: https://twitter.com/Weights_Biases
- item:
crunchbase: https://www.crunchbase.com/organization/humanloop
description: Humanloop helps developers and product teams build high-performing applications on top of large language models like GPT-4. We help you solve the most critical workflows around prompt engineering and evaluation.
homepage_url: https://humanloop.com/
logo: humanloop.svg
name: Humanloop
twitter: https://twitter.com/humanloop
- item:
crunchbase: https://www.crunchbase.com/organization/unbox-3db0
description: Openlayer is an evaluation tool that fits into your development and production pipelines to help you ship high-quality models with confidence.
homepage_url: https://www.openlayer.com/
logo: openlayer.svg
name: Openlayer
twitter: https://twitter.com/openlayerco
- item:
crunchbase: https://www.crunchbase.com/organization/patronus-ai-61cd
description: Detect LLM mistakes at scale and use generative AI with confidence
homepage_url: https://www.patronus.ai/
logo: patronus.svg
name: Patronus
twitter: https://twitter.com/PatronusAI
- item:
crunchbase: https://www.crunchbase.com/organization/magniv-ebaf
description: Visually manage prompts. Evaluate models. Log LLM requests. Search usage history. Collaborate as a team.
homepage_url: https://promptlayer.com/
logo: promptlayer.svg
name: PromptLayer
twitter: https://twitter.com/promptlayer
- item:
description: An end-to-end platform for teams to bring LLM applications into production
homepage_url: https://baserun.ai/welcome
logo: baserun.svg
name: baserun
twitter: https://twitter.com/baserunai
- item:
crunchbase: https://www.crunchbase.com/organization/gantry-590c
description: Powerful observability, analytics, and evaluation for your AI-powered products.
homepage_url: https://www.gantry.io/
logo: gantry.svg
name: GANTRY
twitter: https://twitter.com/gantry_ml
- item:
description: Achieve Explainable AI with Contextual Bias Detection. PAM adds a contextual layer to your bias assessment methods. Ensure compliance, drive success, and foster responsible AI practices in your organization.
homepage_url: https://palqee.ai
logo: palqeepam.svg
name: Palqee PAM
- item:
description: Airtrain AI offers a LLM playground with a wide variety of open-source and proprietary models, a batch evaluation tool to compare models across entire datasets, and a no-code fine-tuning tool. All no-code, SaaS hosted, free to start.
homepage_url: https://airtrain.ai
name: Airtrain AI
twitter: https://twitter.com/AirtrainAI
crunchbase: https://www.crunchbase.com/organization/sematic-2bbe
logo: airtrain.svg
- subcategory:
name: End-to-end Platform
items:
- item:
crunchbase: https://www.crunchbase.com/organization/katonic-ai
description: Katonic AI is an end-to-end enterprise AI solution for businesses. Its generative AI capabilities are built on top of the Katonic machine learning operations platform. Using Katonic AI, businesses can manage the entire process of data preparation, model training, model deployment, model monitoring, and end-to-end automation with high accuracy, reliability, and efficiency.
homepage_url: https://www.katonic.ai/
logo: katonic.svg
name: Katonic AI
twitter: https://twitter.com/AiKatonic
- subcategory:
name: IDE & Workspace
items:
- item:
crunchbase: https://www.crunchbase.com/organization/tensorchord
description: |
envd (ɪnˈvdɪ) is a command-line tool that helps you create the container-based development environment for AI/ML.
Creating development environments is not easy, especially with today's complex systems and dependencies. With everything from Python to CUDA, BASH scripts, and Dockerfiles constantly breaking, it can feel like a nightmare - until now!
Instantly get your environment running exactly as you need with a simple declaration of the packages you seek in build.envd and just one command: envd up!
homepage_url: https://envd.tensorchord.ai/
logo: envd.svg
name: envd
project: opensource
repo_url: https://github.com/tensorchord/envd
twitter: https://twitter.com/tensorchord
- item:
crunchbase: https://www.crunchbase.com/organization/gradio
description: Gradio is the fastest way to demo your machine learning model with a friendly web interface so that anyone can use it, anywhere!
homepage_url: https://www.gradio.app/
logo: gradio.svg
name: Gradio
project: opensource
repo_url: https://github.com/gradio-app/gradio
twitter: https://twitter.com/gradio
- item:
crunchbase: https://www.crunchbase.com/organization/streamlit
description: Streamlit turns data scripts into shareable web apps in minutes. All in pure Python. No front‑end experience required.
homepage_url: https://streamlit.io/
logo: streamlit.svg
name: Streamlit
project: opensource
repo_url: https://github.com/streamlit/streamlit
twitter: https://twitter.com/streamlit
- item:
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
description: Performant, customizable web apps in pure Python. Deploy in seconds.
homepage_url: https://reflex.dev
logo: reflex.svg
name: Reflex
project: opensource
repo_url: https://github.com/reflex-dev/reflex
twitter: https://twitter.com/getreflex
- item:
crunchbase: https://www.crunchbase.com/organization/stability-ai
description: This UI allows for the design and execution of stable diffusion pipelines using a graph/nodes/flowchart based interface.
homepage_url: https://github.com/comfyanonymous/ComfyUI
logo: comfyui.svg
name: ComfyUI
project: opensource
repo_url: https://github.com/comfyanonymous/ComfyUI
twitter: https://twitter.com/stabilityai
- item:
crunchbase: https://www.crunchbase.com/organization/invoke-ai
description: InvokeAI is a leading deployment solution for image generation models, empowering professionals, artists, and enthusiasts to generate and create visual media using the latest AI-driven technologies.
homepage_url: https://www.invoke.com
logo: invoke.svg
name: Invoke
project: opensource
repo_url: https://github.com/invoke-ai/InvokeAI
twitter: https://twitter.com/Invoke_AI
- item:
crunchbase: https://www.crunchbase.com/organization/grid-ai
description: Lightning AI introduces a paradigm shift to AI development. Studio integrates your favorite ML tools into a single cohesive experience. It also eliminates the environment discrepancy between local code which runs on the cloud. This allows for trivial multi-node, scalable AI web apps, endpoints and more.
homepage_url: https://lightning.ai/
logo: lightning.svg
name: Lightning Studio
- item:
crunchbase:
description: mlinfra deploys ML Infrastructure and MLOps tooling anywhere quickly and with best practices with a single command
homepage_url: https://mlinfra.io/latest/
logo: mlinfra.svg
name: mlinfra
twitter:
- subcategory:
name: Testing & Debugging
items:
- item:
crunchbase: https://www.crunchbase.com/organization/momentic-0b4b
description: Momentic enables developers to deploy AI agents to test web apps end-to-end. No code required - just describe user flows using natural language.
homepage_url: https://momentic.ai/
logo: momentic.svg
name: Momentic
twitter: https://twitter.com/MomenticAI
- category:
name: Orchestration
subcategories:
- subcategory:
name: Workflow & Pipeline
items:
- item:
description: Run LLMs, AI, and Batch jobs on any cloud. Get maximum savings and highest GPU availability — all with a simple interface.
homepage_url: https://github.com/skypilot-org/skypilot
logo: skypilot.svg
name: SkyPilot
project: opensource
repo_url: https://github.com/skypilot-org/skypilot
twitter: https://twitter.com/skypilot_org
- item:
description: Machine Learning Pipelines for Kubeflow
homepage_url: https://www.kubeflow.org/
logo: kubeflow.svg
name: Kubeflow pipelines
project: cncf
repo_url: https://github.com/kubeflow/pipelines
twitter: https://twitter.com/kubeflow
- item:
crunchbase: https://www.crunchbase.com/organization/union-ai
description: Scalable and flexible workflow orchestration platform that seamlessly unifies data, ML and analytics stacks.
homepage_url: https://flyte.org/
logo: flyte.svg
name: flyte
project: opensource
repo_url: https://github.com/flyteorg/flyte
twitter: https://twitter.com/flyteorg
- item:
crunchbase: https://www.crunchbase.com/organization/instill-ai
description: 🔮 Instill Core is a full-stack AI infrastructure tool for data, model and pipeline orchestration, designed to streamline every aspect of building versatile AI-first applications
homepage_url: https://www.instill.tech/
logo: instillai.svg
name: InstillAI
project: opensource
repo_url: https://github.com/instill-ai/instill-core
twitter: https://twitter.com/instill_tech
- item:
crunchbase: https://www.crunchbase.com/organization/outerbounds
description: Open-source Metaflow makes it quick and easy to build and manage real-life ML, AI, and data science projects.
homepage_url: https://metaflow.org/
logo: metaflow.svg
name: Metaflow
project: opensource
repo_url: https://github.com/Netflix/metaflow
twitter: https://twitter.com/MetaflowOSS
- item:
crunchbase: https://www.crunchbase.com/organization/zenml
description: ZenML is an extensible, open-source MLOps framework for creating portable, production-ready machine learning pipelines.
homepage_url: https://zenml.io
logo: zenml.svg
name: ZenML
project: opensource
repo_url: https://github.com/zenml-io/zenml
twitter: https://twitter.com/zenml_io
- subcategory:
name: Gateway & Router
items:
- item:
description: The Best LLM on Every prompt.
homepage_url: https://unify.ai/
logo: unify.svg
name: Unify
- item:
crunchbase: https://www.crunchbase.com/organization/portkey
description: A Blazing Fast AI Gateway. Route to 100+ LLMs with 1 fast & friendly API.
homepage_url: https://portkey.ai/
logo: portkey.svg
name: Portkey
project: opensource
repo_url: https://github.com/Portkey-AI/gateway
twitter: https://twitter.com/PortkeyAI
- item:
crunchbase: https://www.crunchbase.com/organization/portkey
description: The Martian Model Router dynamically routes requests to the best LLM in real-time.
homepage_url: https://withmartian.com/
logo: martian.svg
name: Martian
twitter: https://twitter.com/withmartian
- item:
description: AI Gateway – the portal to making your AI applications more observable, reliable, and scalable.
homepage_url: https://developers.cloudflare.com/ai-gateway/
logo: cloudflare.svg
name: Cloudflare AI Gateway
- category:
name: Data Management
subcategories:
- subcategory:
name: Storage
items:
- item:
crunchbase: https://www.crunchbase.com/organization/juicefs
description: JuiceFS is a high performance distributed file system for cloud, compatible with POSIX, HDFS and S3 API
homepage_url: https://juicefs.com
logo: juicefs.svg
name: JuiceFS
project: opensource
repo_url: https://github.com/juicedata/juicefs
twitter: https://twitter.com/juicedatainc
- item:
crunchbase: https://www.crunchbase.com/organization/treeverse
description: LakeFS is a developer of a scalable data version control system
homepage_url: https://lakefs.io/
logo: lakefs.svg
name: lakeFS
project: opensource
repo_url: https://github.com/treeverse/lakeFS
twitter: https://twitter.com/lakeFS
- item:
crunchbase: https://www.crunchbase.com/organization/dragonfly
description: Provide efficient, stable, secure file distribution and image acceleration based on P2P technology.
homepage_url: https://d7y.io/
logo: dragonfly.svg
name: Dragonfly
project: cncf
repo_url: https://github.com/dragonflyoss/Dragonfly2
twitter: https://twitter.com/dragonfly_oss
- subcategory:
name: Vector Database
items:
- item:
crunchbase: https://www.crunchbase.com/organization/chroma-4a75
description: the AI-native open-source embedding database
homepage_url: https://www.trychroma.com/
logo: chroma.svg
name: chroma
project: opensource
repo_url: https://github.com/chroma-core/chroma
twitter: https://twitter.com/weaviate_io
- item:
crunchbase: https://www.crunchbase.com/organization/epsilla
description: 10x faster vector database and one-stop RAGaaS platform for building LLM applications
homepage_url: https://epsilla.com
logo: epsilla.svg
name: Epsilla
project: opensource
repo_url: https://github.com/epsilla-cloud/vectordb
twitter: https://twitter.com/epsilla_inc
- item:
crunchbase: https://www.crunchbase.com/organization/zilliz
description: Vector database built for scalable similarity search
homepage_url: https://milvus.io/
logo: milvus.svg
name: Milvus
project: opensource
repo_url: https://github.com/milvus-io/milvus
twitter: https://twitter.com/milvusio
- item:
crunchbase: https://www.crunchbase.com/organization/tensorchord
description: Scalable Vector Search in Postgres. Revolutionize Vector Search, not Database.
homepage_url: https://pgvecto.rs
logo: pgvectors.svg
name: pgvecto.rs
project: opensource
repo_url: https://github.com/tensorchord/pgvecto.rs
twitter: https://twitter.com/tensorchord
- item:
crunchbase: https://www.crunchbase.com/organization/qdrant
description: Powering the next generation of AI applications with advanced and high-performant vector similarity search technology.
homepage_url: https://qdrant.tech/
logo: qdrant.svg
name: Qdrant
project: opensource
repo_url: https://github.com/qdrant/qdrant
twitter: https://twitter.com/qdrant_engine
- item:
crunchbase: https://www.crunchbase.com/organization/weaviate
description: Weaviate is an open source, AI-native vector database that helps developers create intuitive and reliable AI-powered applications.
homepage_url: https://weaviate.io/
logo: weaviate.svg
name: weaviate
project: opensource
repo_url: https://github.com/weaviate/weaviate
twitter: https://twitter.com/weaviate_io
- item:
description: Open-source vector similarity search for Postgres
homepage_url: https://github.com/pgvector/pgvector
logo: pgvector.svg
name: pgvector
project: opensource
repo_url: https://github.com/pgvector/pgvector
- item:
crunchbase: https://www.crunchbase.com/organization/lancedb
description: A new kind of vector database, built for developers
homepage_url: https://lancedb.com/
logo: lancedb.svg
name: lancedb
project: opensource
repo_url: https://github.com/lancedb/lancedb
twitter: https://twitter.com/lancedb
- item:
crunchbase: https://www.crunchbase.com/organization/vespa-ai
description: the open source platform for combining data and AI, online.
homepage_url: https://vespa.ai
logo: vespa.svg
name: vespa
project: opensource
repo_url: https://github.com/vespa-engine/vespa
twitter: https://twitter.com/vespaengine
- item:
crunchbase: https://www.crunchbase.com/organization/pinecone
description: Pinecone serverless lets you deliver remarkable GenAI applications faster, at up to 50x lower cost.
homepage_url: https://www.pinecone.io/
logo: pinecone.svg
name: pinecone
twitter: https://twitter.com/pinecone
- item:
crunchbase: https://www.crunchbase.com/organization/supabase
description: The Postgres Vector database and AI Toolkit
homepage_url: https://supabase.com/vector
logo: supabase.svg
name: supabase
twitter: https://twitter.com/supabase
- item:
description: The SQL Vector Database for Scalable AI
homepage_url: https://myscale.com/
project: opensource
repo_url: https://github.com/myscale/MyScaleDB/
logo: myscale.svg
name: MyScale
twitter: https://twitter.com/MyScaleDB
- subcategory:
name: ETL & Data Pipeline
items:
- item:
crunchbase: https://www.crunchbase.com/organization/instill-ai
description: 🔮 Instill Core is a full-stack AI infrastructure tool for data, model and pipeline orchestration, designed to streamline every aspect of building versatile AI-first applications
homepage_url: https://www.instill.tech/
logo: instillai.svg
name: InstillAI
project: opensource
repo_url: https://github.com/instill-ai/instill-core
twitter: https://twitter.com/instill_tech
- item:
crunchbase: https://www.crunchbase.com/organization/airbyte-b3bb
description: Airbyte an open-source data integration platform with built-in connectors for AI data pipelines.
homepage_url: https://airbyte.com
logo: airbyte.svg
name: Airbyte
project: opensource
repo_url: https://github.com/airbytehq/airbyte
twitter: https://twitter.com/AirbyteHQ
- item:
crunchbase: https://www.crunchbase.com/organization/unstructured-technologies-inc
description: The unstructured library is designed to help preprocess structure unstructured text documents for use in downstream machine learning tasks. Examples of documents that can be processed using the unstructured library include PDFs, XML and HTML documents.
homepage_url: https://unstructured.io/
logo: unstructured.svg
name: unstructured
project: opensource
repo_url: https://github.com/Unstructured-IO/unstructured
twitter: https://twitter.com/UnstructuredIO
- item:
crunchbase: https://www.crunchbase.com/organization/neum-ai
description: Neum AI is a data platform that helps developers leverage their data to contextualize Large Language Models through Retrieval Augmented Generation (RAG) This includes extracting data from existing data sources like document storage and NoSQL, processing the contents into vector embeddings and ingesting the vector embeddings into vector databases for similarity search.
homepage_url: https://www.neum.ai/
logo: neum.svg
name: NEUM
project: opensource
repo_url: https://github.com/NeumTry/NeumAI
twitter: https://twitter.com/neum_ai
- item:
description: Indexify is a reactive structured extraction engine for un-structured data.
homepage_url: https://getindexify.io/
logo: indexify.svg
name: Indexify
repo_url: https://github.com/tensorlakeai/indexify
- item:
crunchbase: https://www.crunchbase.com/organization/nomic-ai
description: Interact, discover insights and build with unstructured text, image and audio data.
homepage_url: https://atlas.nomic.ai/
logo: atlas.svg
name: NOMIC atlas
twitter: https://twitter.com/nomic_ai
- item:
description: Shift data left
homepage_url: https://www.gable.ai/
logo: gable.svg
name: gable
- subcategory:
name: AI in DB
items:
- item:
crunchbase: https://www.crunchbase.com/organization/mindsdb
description: We've enhanced SQL to simplify the creation of AI tools that need access to realtime data to perform their tasks.
homepage_url: https://mindsdb.com/
logo: mindsdb.svg
name: mindsdb
project: opensource
repo_url: https://github.com/mindsdb/mindsdb
twitter: https://twitter.com/MindsDB
- item:
crunchbase: https://www.crunchbase.com/organization/postgresml
description: PostgresML is a complete MLOps platform in a PostgreSQL extension. Build simpler, faster and more scalable models right inside your database.
homepage_url: https://postgresml.org/
logo: postgresml.svg
name: PostgresML
project: opensource
repo_url: https://github.com/postgresml/postgresml
twitter: https://twitter.com/postgresml
- item:
crunchbase: https://www.crunchbase.com/organization/cleanlab
description: cleanlab helps you clean data and labels by automatically detecting issues in a ML dataset. To facilitate machine learning with messy, real-world data, this data-centric AI package uses your existing models to estimate dataset problems that can be fixed to train even better models.
homepage_url: https://cleanlab.ai/
logo: cleanlab.svg
name: Cleanlab
project: opensource
repo_url: https://github.com/cleanlab/cleanlab
twitter: https://twitter.com/CleanlabAI
- item:
description: Improve your SQL skills and save time using AI by generating optimized SQL queries effortlessly!
homepage_url: https://chat2db.ai/
logo: chat2db.svg
name: chat2db
project: opensource
repo_url: https://github.com/chat2db/Chat2DB
twitter: https://twitter.com/chat2_db
- item:
crunchbase: https://www.crunchbase.com/organization/vanna-ai
description: Chat with your SQL. Python package for accurate Text-to-SQL Generation via LLMs using RAG
homepage_url: https://vanna.ai/
logo: vanna.svg
name: Vanna.AI
project: opensource
repo_url: https://github.com/vanna-ai/vanna
twitter: https://twitter.com/vannadotai
- item:
crunchbase: https://www.crunchbase.com/organization/cannerdata
description: Talk To Your Database. Get Accurate And Explainable Answers.
homepage_url: https://www.getwren.ai/
logo: wrenai.svg
name: WrenAI
project: opensource
repo_url: https://github.com/Canner/WrenAI
twitter: https://twitter.com/getwrenai
- item:
description: Improve your SQL skills and save time using AI by generating optimized SQL queries effortlessly!
homepage_url: https://www.text2sql.ai/
logo: text2sql.svg
name: text2sql
twitter: https://twitter.com/text2sql
- item:
crunchbase: https://www.crunchbase.com/organization/telescope-metanalytics
description: Data driven decision-making made simple. No need for SQL or endless dashboards. Get the answers you need from your data, effortlessly, with the power of AI.
homepage_url: https://www.telescopelabs.io/
logo: telescopelabs.svg
name: Telescope Labs
twitter: https://twitter.com/TelescopeLabs
- subcategory:
name: Data Curation
items:
- item:
crunchbase: https://www.crunchbase.com/organization/mirage
description: Lightly is a data curation company for machine learning that helps companies build better models through better data.
homepage_url: https://www.lightly.ai/
logo: lightly.svg
name: lightly
project: opensource
repo_url: https://github.com/lightly-ai/lightly
twitter: https://twitter.com/LightlyAI
- category:
name: Runtime
subcategories:
- subcategory:
name: Inference & Deployment
items:
- item:
crunchbase: https://www.crunchbase.com/organization/instill-ai
description: 🔮 Instill Core is a full-stack AI infrastructure tool for data, model and pipeline orchestration, designed to streamline every aspect of building versatile AI-first applications
homepage_url: https://www.instill.tech/
logo: instillai.svg
name: InstillAI
project: opensource
repo_url: https://github.com/instill-ai/instill-core
twitter: https://twitter.com/instill_tech
- item:
crunchbase: https://www.crunchbase.com/organization/bentoml
description: BentoML is the platform for software engineers to build AI products.
homepage_url: https://bentoml.com/
logo: bentoml.svg
name: bentoml
project: opensource
repo_url: https://github.com/bentoml/bentoml
twitter: https://twitter.com/bentomlai
- item:
description: A high-throughput and memory-efficient inference and serving engine for LLMs
homepage_url: https://docs.vllm.ai/en/latest/
logo: vllm.svg
name: vLLM
project: opensource
repo_url: https://github.com/vllm-project/vllm
- item:
description: Highly scalable and standards based Model Inference Platform on Kubernetes for Trusted A
homepage_url: https://kserve.github.io/website/latest/
logo: kserve.svg
name: kserve
project: opensource
repo_url: https://github.com/kserve/kserve
- item:
crunchbase: https://www.crunchbase.com/organization/seldon
description: An MLOps framework to package, deploy, monitor and manage thousands of production machine learning models
homepage_url: https://www.seldon.io/solutions/core-plus
logo: seldon.svg
name: Seldon Core
project: opensource
repo_url: https://github.com/SeldonIO/seldon-core
twitter: https://twitter.com/seldon_io
- item:
crunchbase: https://www.crunchbase.com/organization/tensorchord
description: OpenModelZ is tool to deploy your models to any cluster (GCP, AWS, Lambda labs, your home lab, or even a single machine).
homepage_url: https://docs.open.modelz.ai/
logo: openmodelz.svg
name: OpenModelZ
project: opensource
repo_url: https://github.com/tensorchord/openmodelz
twitter: https://twitter.com/tensorchord
- item:
crunchbase: https://www.crunchbase.com/organization/replicate
description: Run and fine-tune open-source models. Deploy custom models at scale. All with one line of code.
homepage_url: https://replicate.com/
logo: replicate.svg
name: replicate
project: opensource
repo_url: https://github.com/replicate/cog
twitter: https://twitter.com/replicate
- item:
description: LLM inference in pure C/C++
homepage_url: https://ggml.ai/
repo_url: https://github.com/ggerganov/ggml
logo: ggml.svg
name: GGML
project: opensource
twitter: https://twitter.com/ggerganov
- item:
crunchbase: https://www.crunchbase.com/organization/lepton
description: Run AI applications efficiently, at scale, and in minutes with a cloud native platform.
homepage_url: https://www.lepton.ai/
logo: lepton.svg
name: lepton
project: opensource
repo_url: https://github.com/leptonai/leptonai
twitter: https://twitter.com/leptonAI
- item:
crunchbase: https://www.crunchbase.com/organization/huggingface
description: The AI community building the future.
homepage_url: https://huggingface.co/
logo: huggingface.svg
name: huggingface
project: opensource
repo_url: https://github.com/huggingface
twitter: https://twitter.com/huggingface
- item:
crunchbase: https://www.crunchbase.com/organization/xorbits
description: Xorbits Inference(Xinference) is a powerful and versatile library designed to serve language, speech recognition, and multimodal models. With Xorbits Inference, you can effortlessly deploy and serve your or state-of-the-art built-in models using just a single command. Whether you are a researcher, developer, or data scientist, Xorbits Inference empowers you to unleash the full potential of cutting-edge AI models.
homepage_url: https://xorbits.io/
logo: xorbits.svg
name: xinference
project: opensource
repo_url: https://github.com/xorbitsai/inference
twitter: https://twitter.com/xorbitsio
- item:
crunchbase: https://www.crunchbase.com/organization/deep-infra
description: Fast ML Inference, Simple API
homepage_url: https://deepinfra.com/
logo: deepinfra.svg
name: deepinfra
twitter: https://twitter.com/DeepInfra
- item:
crunchbase: https://www.crunchbase.com/organization/modal-labs
description: Run generative AI models, large-scale batch jobs, job queues, and much more.
homepage_url: https://modal.com/
logo: modal.svg
name: Modal
twitter: https://twitter.com/modal_labs
- item:
crunchbase: https://www.crunchbase.com/organization/together-1a7e
description: The fastest cloud platform for building and running generative AI.
homepage_url: https://www.together.ai/
logo: together.svg
name: together.ai
twitter: https://twitter.com/togethercompute
- item:
crunchbase: https://www.crunchbase.com/organization/modular-ai
description: Modular is an AI software developer platform that unifies the development and deployment of AI for everyone.
homepage_url: https://www.modular.com/max
logo: modular.svg
name: Modular Max
twitter: https://twitter.com/modular
- item:
crunchbase: https://www.crunchbase.com/organization/fireworks-ai
description: Fireworks.ai is a lightning-fast inference platform that helps you serve your large language models (LLMs).
homepage_url: https://fireworks.ai/
logo: fireworks.svg
name: fireworks
twitter: https://twitter.com/FireworksAI_HQ
- item:
crunchbase: https://www.crunchbase.com/organization/anyscale
description: Run, Fine Tune and Scale LLMs via production-ready APIs
homepage_url: https://www.anyscale.com/endpoints
logo: anyscale.svg
name: Anyscale Endpoints
twitter: https://twitter.com/raydistributed
- item:
crunchbase: https://www.crunchbase.com/organization/geniusrise
description: Run, Fine Tune and Scale text, vision, audio and multi-modal models via CLI on local or kubernetes
homepage_url: https://geniusrise.ai
logo: geniusrise.svg
name: Geniusrise
twitter: https://twitter.com/genius_rise
- item:
crunchbase: https://www.crunchbase.com/organization/banana-d87d
description: Inference hosting for AI teams who ship fast and scale faster.
homepage_url: https://www.banana.dev/
logo: banana.svg
name: BANANA
twitter: https://twitter.com/bananadev_
- item:
crunchbase: https://www.crunchbase.com/organization/octoml
description: OctoAI delivers production-grade GenAI solutions running on the most efficient compute, empowering builders to launch the next generation of AI applications.
homepage_url: https://octo.ai/
logo: octoai.svg
name: OctoAI
twitter: https://twitter.com/octoaicloud
- item:
crunchbase: https://www.crunchbase.com/organization/runpod
description: Globally distributed GPU cloud built for production. Develop, train, and scale AI applications.
homepage_url: https://www.runpod.io/
logo: runpod.svg
name: RunPod
twitter: https://twitter.com/runpod_io
- item:
crunchbase: https://www.crunchbase.com/organization/daocloud
description: Baize is a Cloud Native AI module in DCE 5.0 that offers an integrated AI computing platform. It optimizes GPU performance, schedules computing resources efficiently, and provides simplified AI development frameworks to accelerate AI application deployment across industries.
homepage_url: https://docs.daocloud.io/en/baize/intro/
logo: daocloud.svg
name: DCE 5.0
twitter: https://twitter.com/daocloud_io
- item:
crunchbase: https://www.crunchbase.com/organization/neuro-ai
description: Run AI models as a scalable and secure API in your cloud or on our serverless cloud.
homepage_url: https://www.mystic.ai/
logo: mystic.svg
name: Mystic AI
twitter: https://twitter.com/mysticdotai
- item:
crunchbase: https://www.crunchbase.com/organization/dutch-analytics
description: Powerful AI model serving and orchestration with unmatched simplicity, speed and scale. In cloud, on-premise, hybrid or multicloud.
homepage_url: https://ubiops.com/
logo: ubiops.svg
name: UbiOps
twitter: https://twitter.com/UbiOps_
- item:
description: Inferless offers serverless GPU Inference to scale your machine learning inference without any hassle of managing servers, and deploy complicated and custom models with ease.
homepage_url: https://www.inferless.com/
logo: inferless.svg
name: Inferless
twitter: https://twitter.com/Inferless_
- item:
description: Stack for integrating generative AI with your most confidential data. Deploy to on-premises, hybrid- or private cloud environments.
homepage_url: https://www.confidentialmind.com/
logo: confidentialmind.svg
name: ConfidentialMind
twitter: https://twitter.com/ConfiMind
- item:
description: GpuMall is a GPU cloud platform for AI developers and smes. Help users accelerate model development and deployment.
homepage_url: https://gpumall.com
logo: gpumall.svg
name: GpuMall
- subcategory:
name: Finetuning & RLHF
items:
- item:
description: An integrated platform to fine-tune, deploy and manage LLM applications.
homepage_url: https://tensormatrix.com/
logo: tensormatrix.svg
name: tensormatrix
project: opensource
repo_url: https://github.com/TUDB-Labs/multi-lora-fine-tune
twitter: https://twitter.com/Tensor_matrix
- item:
description: Get LLMs in production in 2 minutes with Lamini!
homepage_url: https://www.lamini.ai/
logo: lamini.svg
name: lamini
project: opensource
repo_url: https://github.com/lamini-ai/lamini
twitter: https://twitter.com/LaminiAI
- item:
crunchbase: https://www.crunchbase.com/organization/predibase
description: Predibase is a low-code AI platform built for developers. Train, finetune, and deploy any model, from linear regression to large language models. Predibase is built on top of the open source ML framework Ludwig.
homepage_url: https://predibase.com/
logo: predibase.svg
name: Predibase (ludwig)
project: opensource
repo_url: https://github.com/ludwig-ai/ludwig
twitter: https://twitter.com/ludwig_ai
- item:
crunchbase: https://www.crunchbase.com/organization/arcee-ai
description: Arcee's proprietary SLM domain adaptative language model system helps you adapt and align your AI to your data, leading to more efficient and accurate training of your own SLMs.
homepage_url: https://www.arcee.ai/
logo: arcee.svg
name: arcee
twitter: https://twitter.com/arcee_ai
- category:
name: Foundation Model
subcategories:
- subcategory:
name: LLM
items:
- item:
description: The next generation of open source large language model
homepage_url: https://ai.meta.com/llama/
logo: llama.svg
name: Llama 2
project: opensource
repo_url: https://github.com/facebookresearch/llama
- item:
crunchbase: https://www.crunchbase.com/organization/mistral-ai
description: A 7B dense Transformer, fast-deployed and easily customisable. Small, yet powerful for a variety of use cases. Supports English and code, and a 8k context window.
homepage_url: https://mistral.ai/
logo: mistral.svg
name: mistral
project: opensource
repo_url: https://github.com/mistralai/mistral-src
twitter: https://twitter.com/MistralAI
- item:
description: OpenAI GPT
homepage_url: https://openai.com/product
logo: openai.svg
name: ChatGPT
twitter: https://twitter.com/openai
- item:
description: A next-generation AI assistant for your tasks, no matter the scale
homepage_url: https://claude.ai/
logo: claude.svg
name: claude
twitter: https://twitter.com/AnthropicAI
- subcategory:
name: Code
items:
- item:
crunchbase: https://www.crunchbase.com/organization/tabbyml
description: Opensource, self-hosted AI coding assistant
homepage_url: https://tabby.tabbyml.com/
logo: tabby.svg
name: Tabby
project: opensource
repo_url: https://github.com/TabbyML/tabby
twitter: https://twitter.com/Tabby_ML
- item:
crunchbase: https://www.crunchbase.com/organization/tabnine
description: The AI coding assistant that you control
homepage_url: https://www.tabnine.com/
logo: tabnine.svg
name: Tabnine
twitter: https://twitter.com/tabnine
- subcategory:
name: Image
items:
- item:
description: text-to-image model
homepage_url: https://stability.ai/stable-image
logo: sd.svg
name: Stable Diffusion
project: opensource
repo_url: https://github.com/Stability-AI/stablediffusion
- subcategory:
name: Audio
items:
- item:
crunchbase: https://www.crunchbase.com/organization/suno-279f
description: Text-Prompted Generative Audio Model
homepage_url: https://www.suno.ai/
logo: suno.svg
name: bark
project: opensource
repo_url: https://github.com/suno-ai/bark
twitter: https://twitter.com/suno_ai_
- item: