Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md
Awesome Open Source AI

Awesome Open Source AI

Curated open-source artificial intelligence models, libraries, infrastructure, and developer tools.

Awesome


Contents


About this list

Awesome Open Source AI is a curated list of open-source projects for people building with AI.

The goal is to help readers find useful models, libraries, tools, infrastructure, datasets, and learning resources without sorting through a directory dump.

Projects do not need a minimum number of GitHub stars to be included. Stars can be useful context, but they are only one signal. A smaller project may belong here if it is useful, well-maintained, technically interesting, clearly documented, or important to a specific part of the AI ecosystem.

Good entries should have a clear reason to exist. They should help people build, study, run, evaluate, or understand AI systems.


1. Core Frameworks & Libraries

Core libraries and frameworks used to build, train, and run AI and machine learning systems.

Deep Learning Frameworks

  • PyTorch - Dynamic computation graphs, Pythonic API, dominant in research and production. The current standard for most frontier AI work. GitHub stars
  • TensorFlow - End-to-end platform with excellent production deployment, TPU support, and large-scale serving tools. GitHub stars
  • JAX - High-performance numerical computing with composable transformations (JIT, vmap, grad). Rising favorite for research and scientific ML. GitHub stars + Flax GitHub stars
  • dm-haiku - JAX-based neural network library from Google DeepMind. Elegant functional API with state management, widely used in DeepMind's research. Apache 2.0 licensed. GitHub stars
  • Equinox - Elegant easy-to-use neural networks and scientific computing in JAX. Callable PyTrees with filtered transformations, seamless interoperability with the JAX ecosystem. Apache 2.0 licensed. GitHub stars
  • Diffrax - Numerical differential equation solvers in JAX. Autodifferentiable and GPU-capable ODE/SDE/CDE solvers for scientific machine learning and neural differential equations. Apache 2.0 licensed. GitHub stars
  • vit-pytorch - Comprehensive Vision Transformer (ViT) implementations in PyTorch. Reference implementations of all major vision transformer variants including ViT, DeiT, Swin, and more. MIT licensed. GitHub stars
  • NumPyro - Probabilistic programming with NumPy powered by JAX for autograd and JIT compilation. Bayesian modeling and inference at scale. GitHub stars
  • Keras - High-level, beginner-friendly API that now runs on multiple backends (TensorFlow, JAX, PyTorch). Perfect for rapid experimentation. GitHub stars
  • tinygrad - Minimalist deep learning framework with tiny code footprint. The "you like PyTorch? you like micrograd? you love tinygrad!" philosophy - simple yet powerful. GitHub stars
  • PaddlePaddle - Industrial deep learning platform from Baidu serving 23+ million developers and 760,000+ companies. China's first independent R&D framework with advanced distributed training and deployment capabilities. GitHub stars
  • PyTorch Geometric - Library for deep learning on irregular input data such as graphs, point clouds, and manifolds. Part of the PyTorch ecosystem. GitHub stars
  • timm (PyTorch Image Models) - The largest collection of PyTorch image encoders and backbones. 900+ pretrained models including ResNet, EfficientNet, Vision Transformer, ConvNeXt, and more with training and inference scripts. Apache 2.0 licensed. GitHub stars
  • Triton - Language and compiler for writing highly efficient custom deep-learning primitives. Powers kernel optimizations in PyTorch, JAX, and other frameworks. MIT licensed. GitHub stars
  • GGML - Tensor library for machine learning. The foundational C/C++ library powering llama.cpp and many on-device inference engines. MIT licensed. GitHub stars
  • MLX - Array framework for machine learning on Apple silicon. Efficient unified memory design with NumPy-like API, automatic differentiation, and multi-device support. MIT licensed. GitHub stars

High-Performance Compute Libraries

  • oneDNN - oneAPI Deep Neural Network Library. Cross-platform performance library of basic building blocks for deep learning, optimized for Intel CPUs, GPUs, and Arm architectures. Apache 2.0 licensed. GitHub stars
  • ONNX - Open standard for machine learning interoperability. Open Neural Network Exchange provides an open ecosystem that empowers AI developers to choose the right tools as their project evolves. Apache 2.0 licensed. GitHub stars
  • IREE - Retargetable MLIR-based machine learning compiler and runtime toolkit. Lowers ML models to unified IR that scales from datacenter to mobile and edge deployments. Apache 2.0 licensed. GitHub stars

Rust ML Frameworks

  • Burn - Next-generation deep learning framework in Rust. Backend-agnostic with CPU, GPU, WebAssembly support. GitHub stars
  • Candle (Hugging Face) - Minimalist ML framework for Rust. PyTorch-like API with focus on performance and simplicity. GitHub stars
  • linfa - Comprehensive Rust ML toolkit with classical algorithms. scikit-learn equivalent for Rust with clustering, regression, and preprocessing. GitHub stars

Julia ML Frameworks

  • Flux.jl - 100% pure-Julia ML stack with lightweight abstractions on top of native GPU and AD support. Elegant, hackable, and fully integrated with Julia's scientific computing ecosystem. GitHub stars
  • MLJ.jl - Comprehensive Julia machine learning framework providing a unified interface to 200+ models with meta-algorithms for selection, tuning, and evaluation. MIT licensed. GitHub stars
  • ModelingToolkit.jl - High-performance symbolic-numeric modeling framework for scientific machine learning. Automatically generates fast functions for model components like Jacobians and Hessians with automatic sparsification and parallelization. MIT licensed. GitHub stars

NLP & Transformers

  • spaCy (Explosion AI) - Industrial-strength natural language processing with 75+ languages, transformer pipelines, and production-grade NER, parsing, and text classification. GitHub stars
  • Transformers (Hugging Face) - The de facto standard library for pretrained NLP models. 1M+ models, 250,000+ downloads/day. BERT, GPT, Llama, Qwen, and hundreds more. GitHub stars
  • sentence-transformers - Classic library for sentence and image embeddings. GitHub stars
  • tokenizers (Hugging Face) - Fast state-of-the-art tokenizers for training and inference. GitHub stars
  • fairseq2 - FAIR Sequence Modeling Toolkit 2. Complete rewrite of fairseq with modern PyTorch APIs, native support for LLM training (70B+ models), vLLM integration, and first-party recipes for instruction finetuning and preference optimization. MIT licensed. GitHub stars
  • LibreTranslate - Self-hosted machine translation API powered by the Argos Translate engine. AGPL-3.0 licensed. GitHub stars

Data Processing & Manipulation

  • Pandas - The gold standard for data analysis and manipulation in Python. GitHub stars
  • Polars - Blazing-fast DataFrame library (Rust backend) - modern alternative to Pandas for large-scale workloads. GitHub stars
  • cuDF - GPU DataFrame library from RAPIDS. Accelerates Pandas workflows on NVIDIA GPUs with zero code changes using cuDF.pandas accelerator mode. GitHub stars
  • Modin - Parallel Pandas DataFrames. Scale Pandas workflows by changing a single line of code - distributes data and computation automatically. GitHub stars
  • Dask - Parallel computing for big data - scales Pandas/NumPy/scikit-learn to clusters. GitHub stars
  • DataFlow - LLM-ready data preparation system for turning raw PDFs, conversations, code, databases, and other sources into SFT, QA, and RAG-ready datasets. GitHub stars
  • NumPy - Fundamental array computing library that powers almost every AI stack. GitHub stars
  • SciPy - Scientific computing algorithms (optimization, linear algebra, statistics, signal processing). GitHub stars
  • CuPy - NumPy and SciPy-compatible array library for GPU-accelerated computing in Python. GitHub stars
  • NetworkX - Creation, manipulation, and study of complex networks. The foundational graph analysis library for Python data science. GitHub stars
  • cuGraph - GPU graph analytics library with NetworkX-compatible API. 10-100x faster than CPU for large-scale graph algorithms. Apache 2.0 licensed. GitHub stars
  • Vaex - Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python. Visualize and explore billion-row datasets at millions of rows per second. MIT licensed. GitHub stars
  • Datashader - High-performance large data visualization. Renders billions of points interactively without aggregation artifacts. BSD-3-Clause licensed. GitHub stars
  • Zarr - Chunked, compressed, N-dimensional array storage. Scalable tensor data format optimized for cloud and parallel computing. MIT licensed. GitHub stars
  • NVIDIA DALI - GPU-accelerated data loading and augmentation library with highly optimized building blocks for deep learning applications. Apache 2.0 licensed. GitHub stars
  • Narwhals - Lightweight compatibility layer between DataFrame libraries. Write Polars-like code that works seamlessly across Pandas, Polars, cuDF, Modin, and more. MIT licensed. GitHub stars
  • Ibis - Portable Python dataframe library with 20+ backends. Write Pandas-like code that runs locally with DuckDB or scales to production databases (BigQuery, Snowflake, PostgreSQL) by changing one line. Apache 2.0 licensed. GitHub stars
  • skrub - Machine learning with dataframes for dirty categorical data. Preprocessing and feature engineering for heterogeneous data with seamless Pandas/Polars integration. BSD-3-Clause licensed. GitHub stars
  • Oxen - Lightning fast data version control for machine learning. Optimized for large datasets with efficient diffing, branching, and collaboration. Apache 2.0 licensed. GitHub stars
  • Pandera - Statistical data testing and validation for dataframes. Pydantic-like API for Pandas, Polars, and other dataframe libraries with type hints and lazy validation. MIT licensed. GitHub stars
  • Snorkel - System for quickly generating training data with weak supervision. Programmatically label, build, and manage training data using labeling functions and probabilistic consensus models. Powers Snorkel Flow and used by Google, Apple, and Intel. Apache 2.0 licensed. GitHub stars
  • DuckDB - High-performance analytical in-process SQL database system. Fast, reliable, portable, and easy to use with rich SQL dialect support. Perfect for data processing and analytics workloads. MIT licensed. GitHub stars
  • FiftyOne - Visual AI development toolkit for visualizing, labeling, and evaluating visual datasets and models. Supercharges computer vision workflows with dataset exploration and model analysis. Apache 2.0 licensed. GitHub stars
  • Label Studio - Multi-type data labeling and annotation tool with standardized output format. Configurable interface for images, text, audio, video, and time series with ML-assisted labeling. Apache 2.0 licensed. GitHub stars
  • Delta Lake - Open-source storage framework enabling Lakehouse architecture with ACID transactions, scalable metadata handling, and unified batch/streaming processing. Apache 2.0 licensed. GitHub stars
  • Apache Iceberg - High-performance open table format for huge analytic tables. Brings SQL table reliability to big data with time travel, hidden partitioning, and schema evolution. Works with Spark, Trino, Flink, Presto, Hive and Impala. Apache 2.0 licensed. GitHub stars
  • Apache Hudi - Open data lakehouse platform for ingesting, indexing, storing, serving, transforming and managing data across cloud environments. Supports upserts, deletes and incremental processing on big data with built-in ingestion tools for Spark and Flink. Apache 2.0 licensed. GitHub stars
  • lakeFS - Data version control for your data lake that transforms object storage into Git-like repositories. Enables atomic, versioned data lake operations with branching, committing, and merging for data pipelines. Apache 2.0 licensed. GitHub stars
  • Apache Airflow - Platform to programmatically author, schedule, and monitor workflows. Industry-standard orchestration for data pipelines and ML workflows with 500+ integrations. Apache 2.0 licensed. GitHub stars
  • Apache Spark - Unified analytics engine for large-scale data processing. In-memory cluster computing with high-level APIs in Python, Scala, Java, and R. Powers MLlib for distributed machine learning and Structured Streaming for real-time data. Apache 2.0 licensed. GitHub stars
  • Apache Flink - Stream processing framework with powerful batch and streaming capabilities. High-throughput, low-latency runtime with exactly-once processing guarantees. Ideal for real-time AI inference pipelines and event-driven ML applications. Apache 2.0 licensed. GitHub stars
  • Apache Beam - Unified programming model for batch and streaming data processing. Write pipelines once, run anywhere on Flink, Spark, or Google Cloud Dataflow. Portable, extensible, and enterprise-ready for AI data pipelines. Apache 2.0 licensed. GitHub stars
  • Scrapy - Fast, high-level web crawling and scraping framework for Python. Extract structured data from websites at scale with built-in support for handling common challenges like pagination, cookies, and concurrent requests. BSD-3-Clause licensed. GitHub stars
  • Temporal - Durable execution platform for reliable workflow orchestration. Build resilient data pipelines and ML workflows that survive failures and continue execution exactly where they left off. MIT licensed. GitHub stars
  • Luigi - Python module for building complex pipelines of batch jobs. Handles dependency resolution, workflow management, visualization, and Hadoop integration. Built at Spotify and battle-tested in production. Apache 2.0 licensed. GitHub stars
  • Mage.ai - Modern open-source data pipeline tool for integrating and transforming data. AI-native ETL/ELT platform with 100+ integrations, real-time monitoring, and collaborative features. Apache 2.0 licensed. GitHub stars
  • Hamilton - Declarative dataflow framework for building testable, modular, self-documenting data pipelines. Encode lineage and metadata directly in Python functions. Originally from Stitch Fix, now Apache incubating. Apache 2.0 licensed. GitHub stars
  • D-Tale - Visualizer for Pandas data structures with a Flask back-end and React front-end. Interactive data exploration with charting, filtering, and code export. LGPL-2.1 licensed. GitHub stars
  • Sweetviz - Beautiful, high-density visualizations for exploratory data analysis in two lines of code. Self-contained HTML reports for dataset comparison and target analysis. MIT licensed. GitHub stars
  • TextAttack - Python framework for adversarial attacks, data augmentation, and model training in NLP. Augment datasets to increase model robustness and generate adversarial examples. MIT licensed. GitHub stars
  • uv - An extremely fast Python package and project manager, written in Rust. 10-100x faster than pip with built-in virtual environment management, dependency resolution, and lockfiles. Essential for modern AI/ML development workflows. Apache 2.0 and MIT dual-licensed. GitHub stars
  • Vector - A high-performance observability data pipeline for collecting, transforming, and routing logs and metrics. Real-time data processing with 50+ sources and sinks including Kafka, S3, and Elasticsearch. Ideal for AI/ML log processing and data ingestion. MPL 2.0 licensed. GitHub stars

Classical ML & Gradient Boosting

  • scikit-learn - Industry-standard library for traditional machine learning (classification, regression, clustering, pipelines). GitHub stars
  • XGBoost - Scalable, high-performance gradient boosting library. Still dominates Kaggle and tabular competitions. GitHub stars
  • LightGBM - Microsoft's ultra-fast gradient boosting framework, optimized for speed and memory. GitHub stars
  • CatBoost - Gradient boosting that handles categorical features natively with great out-of-the-box performance. GitHub stars
  • sktime - Unified framework for machine learning with time series. scikit-learn compatible API for forecasting, classification, clustering, and anomaly detection. GitHub stars
  • StatsForecast - Lightning-fast statistical forecasting with ARIMA, ETS, CES, and Theta models. Optimized for high-performance time series workloads. GitHub stars
  • MLForecast - Scalable machine learning for time series forecasting. Train any sklearn-compatible model on millions of time series with efficient feature engineering. Apache 2.0 licensed. GitHub stars
  • cuML - GPU-accelerated machine learning algorithms with scikit-learn compatible API. 10-50x faster than CPU implementations for large datasets. Apache 2.0 licensed. GitHub stars
  • SynapseML - Distributed machine learning on Apache Spark. Scalable, composable APIs for text analytics, vision, anomaly detection with seamless Python/Scala/R/.NET integration. MIT licensed. GitHub stars
  • Darts - User-friendly forecasting and anomaly detection for time series. Unifies classical statistical models (ARIMA, ETS) with modern neural networks (N-BEATS, TFT, DeepAR) in a single scikit-learn compatible API. Apache 2.0 licensed. GitHub stars
  • PyTorch Forecasting - Time series forecasting with PyTorch. Multiple neural architectures (N-BEATS, TFT, DeepAR) with in-built interpretation capabilities, built on PyTorch Lightning for distributed training. MIT licensed. GitHub stars

Data Engineering & Feature Stores

  • DataHub - The #1 open-source metadata platform for data and AI. Data discovery, governance, and observability with 80+ connectors, column-level lineage, and AI assistant integration. Originally built at LinkedIn. Apache 2.0 licensed. GitHub stars
  • OpenMetadata - Unified metadata platform for data discovery, observability, and governance. Column-level lineage, semantic search, and team collaboration with 70+ data service connectors. Apache 2.0 licensed. GitHub stars
  • Amundsen - Data discovery and metadata engine from Lyft. PageRank-style search for data resources with usage-based ranking. LF AI & Data Foundation project. Apache 2.0 licensed. GitHub stars

Data Transformation & Analytics Engineering

  • dbt-core - Transform data using software engineering best practices. The industry-standard framework for analytics engineering with 15M+ monthly downloads. Enables version control, testing, and documentation for SQL transformations. Apache 2.0 licensed. GitHub stars
  • SQLMesh - Scalable and efficient data transformation framework with dbt compatibility. Features automatic data lineage, time travel, and virtual data environments for testing. Optimized for large-scale data warehouses. Apache 2.0 licensed. GitHub stars
  • SLayer - Semantic layer for AI-powered data analytics. Allows AI agents to describe data models and query the data using an expressive format with measures, dimensions, and filters, without writing raw SQL. MCP, CLI, API, and Python clients. Embeddable as a Python library. MIT licensed. GitHub stars

Data Quality & Validation

  • Deequ - Library built on top of Apache Spark for defining "unit tests for data". Measures data quality in large datasets with constraint verification, anomaly detection, and incremental validation. Used at Amazon for production data quality. Apache 2.0 licensed. GitHub stars
  • Great Expectations - Always know what to expect from your data. Data validation, profiling, and documentation for data pipelines. Apache 2.0 licensed. GitHub stars
  • ydata-profiling - One line of code for comprehensive data quality profiling and exploratory data analysis. Generates detailed reports for Pandas and Spark DataFrames including statistics, correlations, missing values, and data quality alerts. MIT licensed. GitHub stars
  • Soda Core - Data contracts engine for the modern data stack. Define data quality checks in YAML and automatically validate schema and data across your pipelines. Supports 20+ data sources including Snowflake, BigQuery, and PostgreSQL. Apache 2.0 licensed. GitHub stars
  • TFX (TensorFlow Extended) - End-to-end platform for deploying production ML pipelines. Data validation, transformation, model training, and serving with TensorFlow. Powers Google's production ML infrastructure. Apache 2.0 licensed. GitHub stars

Data Labeling & Annotation

  • Doccano - Open-source text annotation tool for machine learning practitioners. Features text classification, sequence labeling, and sequence-to-sequence tasks for sentiment analysis, NER, and summarization. MIT licensed. GitHub stars
  • OpenRefine - Free, open-source power tool for working with messy data. Clean, transform, and extend data with web services. Formerly Google Refine. BSD-3-Clause licensed. GitHub stars

AutoML & Hyperparameter Optimization

  • Optuna - Modern, define-by-run hyperparameter optimization with pruning and visualizations. Extremely popular in 2026. GitHub stars
  • AutoGluon - AWS AutoML toolkit for tabular, image, text, and multimodal data - state-of-the-art with almost zero code. GitHub stars
  • FLAML - Microsoft's fast & lightweight AutoML focused on efficiency and low compute. GitHub stars
  • Katib (Kubeflow) - Kubernetes-native AutoML for hyperparameter tuning, early stopping, and neural architecture search. Framework-agnostic with support for TensorFlow, PyTorch, XGBoost, and custom training operators. Apache 2.0 licensed. GitHub stars

Interactive ML Apps & Notebooks

  • Streamlit - The fastest way to build and share data apps. Transform Python scripts into beautiful web applications with minimal code. Widely used for ML model demos, data visualization, and internal tools. GitHub stars
  • Gradio - Build and share delightful machine learning apps, all in Python. The de facto standard for creating interactive ML demos with automatic UI generation from function signatures. Powers thousands of Hugging Face Spaces. GitHub stars
  • Marimo - A reactive notebook for Python — run reproducible experiments, query with SQL, execute as a script, deploy as an app, and version with git. Stored as pure Python. All in a modern, AI-native editor. GitHub stars

Model Training & Optimization Utilities

  • Hugging Face Accelerate - Simple API to make training scripts run on any hardware (multi-GPU, TPU, mixed precision) with minimal code changes. GitHub stars
  • DeepSpeed - Microsoft's deep learning optimization library for extreme-scale training (ZeRO, offloading, MoE). GitHub stars
  • FlashAttention - Fast exact attention kernels that reduce memory usage and accelerate transformer training and inference. GitHub stars
  • xFormers - Optimized transformer building blocks and attention operators for PyTorch. GitHub stars
  • PyTorch Lightning - High-level wrapper for PyTorch that removes boilerplate and adds best practices. GitHub stars
  • fastai - Deep learning library providing practitioners with high-level components for state-of-the-art results. Built on PyTorch with a focus on usability and transfer learning. Apache 2.0 licensed. GitHub stars
  • PyTorch Ignite - High-level library for training and evaluating neural networks in PyTorch with an engine, events & handlers system for maximum flexibility. BSD-3-Clause licensed. GitHub stars
  • ONNX Runtime - High-performance inference and training for ONNX models across hardware. GitHub stars
  • einops - Flexible, powerful tensor operations for readable and reliable code. Supports PyTorch, JAX, TensorFlow, NumPy, MLX. GitHub stars
  • safetensors - Simple, safe way to store and distribute tensors. Fast, secure alternative to pickle for model serialization. GitHub stars
  • torchmetrics - Machine learning metrics for distributed, scalable PyTorch applications. 80+ metrics with built-in distributed synchronization. GitHub stars
  • torchao - PyTorch native quantization and sparsity for training and inference. Drop-in optimizations for production deployment. GitHub stars
  • SHAP - Game theoretic approach to explain the output of any machine learning model. Industry standard for model interpretability. GitHub stars
  • skorch - scikit-learn compatible neural network library that wraps PyTorch. Seamlessly integrate PyTorch models with scikit-learn pipelines, grid search, and cross-validation. GitHub stars
  • Composer - Supercharge your model training. MosaicML's PyTorch training library with built-in algorithms for efficient training (FSDP, gradient compression, progressive resizing) and seamless distributed training on large-scale clusters. Apache 2.0 licensed. GitHub stars
  • NVIDIA Apex - PyTorch extension for mixed precision training and distributed training optimizations. Powers many production deep learning workloads with tools for automatic mixed precision (AMP), distributed data parallel, and fused optimizers. BSD-3-Clause licensed. GitHub stars

2. Model Codebases & Model Families

Canonical model-family repositories with useful code, recipes, evaluation tools, or engineering context. This is not a complete model leaderboard; use Hugging Face and model hubs for up-to-date weight discovery.

Language Model Families

  • RWKV - Attention-free language model architecture with linear-time inference, training code, inference examples, and an active open-source ecosystem. GitHub stars
  • Qwen3-VL - Vision-language branch of the Qwen3 model stack with multimodal checkpoints, training recipes, and reference tooling. GitHub stars
  • MiniCPM - Compact open model family with practical code, deployment notes, and active edge/on-device focus. GitHub stars
  • Llama Models - Meta's canonical repository for Llama model documentation, examples, safety materials, and integration guidance. GitHub stars
  • GPT-OSS - OpenAI open-weight model repository with inference examples, recipes, and deployment guidance. GitHub stars
  • Mamba - State Space Model implementation with pretrained checkpoints, architecture code, and research tooling for efficient long-sequence modeling. GitHub stars
  • GPT-NeoX - Large-scale language model training codebase from EleutherAI with distributed training support and historical open-model importance. GitHub stars
  • GLM-5 - Open-source mixture-of-experts language model family optimized for long-horizon planning, agentic tasks, and coding. Apache 2.0 licensed. GitHub stars

Multimodal & Vision-Language Codebases

  • openai/CLIP - Canonical OpenAI contrastive vision-language model codebase with pretrained checkpoints and practical reference implementation for image-text retrieval and classification. GitHub stars
  • OpenCLIP - Open implementation of CLIP with training code, pretrained models, and zero-shot evaluation tooling. GitHub stars
  • OmniParser - Vision-based GUI parsing model and tooling for computer-use agents. GitHub stars
  • MiniCPM-V - Compact vision-language model family with edge-focused deployment examples and strong OCR-oriented use cases. GitHub stars
  • Eagle - NVIDIA multimodal model codebase with open checkpoints and reusable research materials for vision-language and video-language tasks. GitHub stars
  • Moondream - Small vision-language model with practical inference examples for edge and real-time image understanding. GitHub stars
  • VILA - NVIDIA vision-language model family with training, evaluation, and deployment materials across edge and datacenter settings. GitHub stars
  • Depth Anything V2 - Monocular depth-estimation foundation model with practical inference code and broad computer-vision reuse. GitHub stars
  • NVIDIA Cosmos - Open platform of world models, tokenizers, and post-training tools designed for physical AI, robotics, and autonomous systems. GitHub stars

Speech & Audio Model Codebases

  • Whisper - Canonical open speech-to-text model codebase with widespread ecosystem support and many downstream implementations. GitHub stars
  • FunASR - Speech recognition toolkit with pretrained models, streaming support, diarization, VAD, and production-oriented examples. GitHub stars
  • NVIDIA NeMo - Scalable framework and model codebase for speech, language, and multimodal AI with recipes and deployment guidance. GitHub stars
  • Sherpa-ONNX - Complete speech toolkit with ASR, TTS, diarization, source separation, and VAD across embedded and edge environments via ONNX Runtime. GitHub stars
  • MOSS-TTS - Open speech and sound generation family focused on expressive, long-form text-to-speech with streaming and multi-speaker support. GitHub stars
  • VoxCPM - Open-sourced tokenizer-free multilingual speech synthesis model with high-quality TTS and style transfer workflows. GitHub stars
  • VibeVoice - Open Frontier Voice AI toolkit spanning speech understanding, generation, and multilingual TTS workflows, with active research and deployment tooling. GitHub stars
  • SpeechBrain - PyTorch speech toolkit with recipes for ASR, TTS, speaker recognition, and speech enhancement. GitHub stars
  • Pocket TTS - Lightweight text-to-speech engine optimized for CPU inference with low latency and streaming support. MIT licensed. GitHub stars

3. Inference Engines & Serving

Inference runtimes, serving systems, and optimization tools for running models locally or in production.

Local / On-device Inference

  • llama.cpp - Pure C/C++ inference engine with GGUF format support. The gold standard for CPU/GPU/Apple Silicon on-device running. Includes llama-server for OpenAI-compatible API. Now at 100K+ stars. GitHub stars
  • Ollama - Dead-simple local LLM runner with a one-line install, model registry, and OpenAI-compatible API. GitHub stars
  • Foundry Local - Open-source on-device AI platform covering discovery, model running, sandboxed execution, and evaluation of open models. GitHub stars
  • Potato OS - Linux distribution for fully local AI inference on Raspberry Pi 5 and 4, optimized for running open models at the edge. GitHub stars
  • MLC-LLM - Deployment engine that compiles and runs LLMs across browsers, mobile devices, and local hardware. GitHub stars
  • WebLLM - High-performance in-browser LLM inference engine. Runs models directly in the browser with WebGPU acceleration. GitHub stars
  • llama-cpp-python - Official Python bindings for llama.cpp. GitHub stars
  • KoboldCpp - User-friendly llama.cpp fork focused on role-playing and creative writing. GitHub stars
  • RamaLama - Container-centric tool for simplifying local AI model serving. Automatically detects GPUs, pulls optimized container images, and runs models securely in rootless containers with enterprise-grade isolation. GitHub stars
  • LiteRT - Google's production-ready on-device ML and GenAI deployment framework. Supports Android, iOS, Web, Desktop, and IoT targets with GPU/NPU acceleration via a unified edge-first runtime. Apache 2.0 licensed. GitHub stars
  • LiteRT-LM - Production-ready runtime for deploying LLMs on edge devices with low-latency inference and optimized hardware paths for mobile and embedded platforms. GitHub stars
  • exo - Run frontier AI locally by connecting all your devices into an AI cluster. Features automatic device discovery, RDMA over Thunderbolt for 99% latency reduction, topology-aware auto parallel, and tensor parallelism. Uses MLX backend for distributed inference across Apple Silicon devices. Apache 2.0 licensed. GitHub stars
  • omlx - Apple-centric inference server for local-first AI workflows with model management, GPU orchestration, and OpenAI-compatible APIs for self-hosted deployment. Apache 2.0 licensed. GitHub stars

High-performance Serving & API Servers

  • llm-d - Kubernetes-native distributed LLM inference framework. Donated to CNCF by RedHat, Google, and IBM. Intelligent scheduling, KV-cache optimization, and state-of-the-art performance across accelerators. GitHub stars
  • LMDeploy - Toolkit for compressing, deploying, and serving LLMs from OpenMMLab. 4-bit inference with 2.4x higher performance than FP16, distributed multi-model serving across machines. GitHub stars
  • vLLM - State-of-the-art serving engine with PagedAttention and continuous batching. Currently the fastest production-grade LLM server. GitHub stars
  • vLLM-Omni - Multi-modal inference stack extending vLLM for image, audio, and video generation workloads with a unified serving interface. Apache 2.0 licensed. GitHub stars
  • LMCache - Supercharge LLM inference with the fastest KV Cache layer. 3-10x delay savings and GPU cycle reduction for multi-round QA and RAG. Integrates seamlessly with vLLM for distributed, high-throughput deployments. Apache 2.0 licensed. GitHub stars
  • vLLM Production Stack - Kubernetes-native production stack for vLLM inference. Automated deployment, autoscaling, and monitoring for enterprise-grade LLM serving. Built by the vLLM team for seamless integration. GitHub stars
  • Open Model Engine (OME) - Kubernetes operator for LLM serving with GPU scheduling and model lifecycle management across vLLM, SGLang, and TensorRT-LLM. GitHub stars
  • nano-vLLM - Minimalist vLLM implementation in ~1,200 lines of Python. Educational yet performant with prefix caching, tensor parallelism, and CUDA graph acceleration. Comparable inference speeds to full vLLM. MIT licensed. GitHub stars
  • SGLang - Next-gen serving framework with RadixAttention. Powers xAI's production workloads at 100K+ GPUs scale. GitHub stars
  • TensorRT-LLM - NVIDIA's official high-performance inference backend. GitHub stars
  • Aphrodite Engine - vLLM fork optimized for role-play and creative writing. Supports extensive quantization methods (AQLM, AWQ, GPTQ, GGUF, FP8) and modern samplers. Active development with multi-LoRA and speculative decoding support. GitHub stars
  • AIBrix - Cost-efficient and pluggable infrastructure components for GenAI inference. Kubernetes-native control plane for vLLM with distributed KV cache, heterogeneous GPU serving, and intelligent routing. Apache 2.0 licensed. GitHub stars
  • Triton Inference Server - NVIDIA's production-grade open-source inference serving software. Supports multiple frameworks (TensorRT, PyTorch, ONNX) with optimized cloud and edge deployment. GitHub stars
  • mistral.rs - Fast, flexible Rust-native LLM inference engine built on Candle. Supports text, vision, audio, image generation, and embeddings with hardware-aware auto-tuning. GitHub stars
  • KTransformers - Flexible framework for heterogeneous CPU-GPU LLM inference and fine-tuning. Enables running large MoE models by offloading experts to CPU with BF16/FP8 precision support. GitHub stars
  • llamafile - Mozilla's single-file distributable LLM solution. Bundle model weights, inference engine, and runtime into one portable executable that runs on six OSes without installation. GitHub stars
  • Xinference - Unified, production-ready inference API for LLMs, speech, and multimodal models. Drop-in GPT replacement with single-line code changes. Supports thousands of models with auto-batching and distributed inference. GitHub stars
  • RTP-LLM (Alibaba) - Alibaba's high-performance LLM inference acceleration engine. Powers production LLM services across Taobao, Tmall, and Alibaba's international AI platform. Supports PagedAttention, FlashAttention, FlashDecoding, INT8/INT4 quantization, and heterogeneous hardware (GPU/ARM CPU/Intel). Apache 2.0 licensed. GitHub stars
  • LitServe (Lightning AI) - Minimal Python framework for building custom AI inference servers with full control over logic, batching, and scaling. 2x faster than FastAPI with built-in batching, streaming, and multi-GPU autoscaling. Apache 2.0 licensed. GitHub stars
  • LightLLM - Pure Python-based LLM inference and serving framework with lightweight design, easy extensibility, and high-speed performance. Integrates optimizations from FasterTransformer, TGI, vLLM, and SGLang. GitHub stars
  • TabbyAPI - FastAPI-based API server for ExLlamaV2/V3 backends. OpenAI-compatible API with support for model loading/unloading, embeddings, speculative decoding, multi-LoRA, and streaming. GitHub stars
  • GPUStack - GPU cluster manager that orchestrates inference engines like vLLM and SGLang. Automated engine selection, parameter optimization, and distributed multi-GPU deployment for high-performance AI workloads. GitHub stars
  • OpenLLM (BentoML) - Production-grade platform for running any open-source LLMs as OpenAI-compatible API endpoints. Supports 50+ models with built-in streaming, batching, and auto-acceleration. Apache 2.0 licensed. GitHub stars
  • Higress (Alibaba) - AI-native API gateway born from Alibaba's internal infrastructure with 2+ years of production validation. Provides unified LLM API and MCP (Model Context Protocol) management with enterprise-grade 99.99% availability. Apache 2.0 licensed. GitHub stars
  • NVIDIA Dynamo - Datacenter-scale distributed inference serving framework from NVIDIA. Orchestration layer above vLLM/SGLang/TensorRT-LLM with disaggregated serving, KV-aware routing, and automatic scaling. Built in Rust with Python extensibility. Apache 2.0 licensed. GitHub stars
  • Microsoft BitNet - Official inference framework for 1-bit LLMs (BitNet b1.58). Enables running large models on CPU with minimal memory footprint. Features custom kernels for ternary weight quantization and efficient matmul operations. MIT licensed. GitHub stars
  • FreeLLMAPI - OpenAI-compatible proxy gateway that stacks the free tiers of multiple LLM providers behind a single endpoint with automatic failover and rate tracking. MIT licensed. GitHub stars
  • OmniRoute - Unified AI gateway and proxy supporting over 230 providers with token compression, automatic failover, and routing strategies. MIT licensed. GitHub stars

Additional Inference Engines

  • DeepEP - Efficient expert-parallel communication library for large MoE models, improving throughput in distributed inference and training. GitHub stars
  • DeepGEMM - CUDA FP8/FMA GEMM kernels for efficient LLM inference and training at reduced precision. GitHub stars
  • AirLLM - Single-GPU 70B inference stack with strong memory/performance optimizations for local deployment on commodity hardware. GitHub stars
  • ThunderKittens - High-performance GPU kernel primitives for fast attention and matmul workflows used by LLM stacks. GitHub stars
  • Mirage Persistent Kernel - Compiler that fuses model execution into a single mega-kernel for tighter performance. GitHub stars
  • tt-metal - Operator and kernel toolkit for efficient LLM inference and low-level optimization on Tenstorrent hardware. GitHub stars
  • vLLM-Ascend - Hardware plugin for running vLLM on Huawei Ascend accelerators. GitHub stars
  • CTranslate2 - Fast inference engine for Transformer models supporting OpenNMT and Hugging Face models. Optimized for CPU and GPU with batching, quantization (INT8/FP16), and dynamic memory management. Powers faster-whisper and other production deployments. MIT licensed. GitHub stars
  • llama-swap - Intelligent model swapping proxy for llama.cpp. Enables seamless hot-swapping between different GGUF models without restarting the server, with automatic model loading/unloading and OpenAI-compatible API. MIT licensed. GitHub stars
  • optillm - Optimizing inference proxy for LLMs with load balancing, failover, and request routing across multiple providers and models. Improves reliability and performance for production deployments. Apache 2.0 licensed. GitHub stars
  • Fugusashi - Open-source intelligent model router with CMA-ES evolved routing weights, federated learning for privacy-preserving collaborative routing, and human-interpretable explanations for every decision. OpenAI-compatible API with web dashboard. MIT licensed. GitHub stars
  • mllm - Fast and lightweight multimodal LLM inference engine for mobile and edge devices. Optimized for running vision-language models on resource-constrained hardware with efficient memory management. MIT licensed. GitHub stars
  • shimmy - Python-free Rust inference server with OpenAI API compatibility. Supports GGUF and SafeTensors formats with hot model swap, auto-discovery, and single binary deployment for zero-dependency inference. Apache 2.0 licensed. GitHub stars
  • PowerInfer - High-speed LLM inference for local deployment on consumer GPUs. Achieves up to 11x speedup over llama.cpp on RTX 4090 by exploiting power-law neuron activation patterns. MIT licensed. GitHub stars
  • distributed-llama - Distributed LLM inference connecting home devices into a powerful cluster. More devices means faster inference via tensor parallelism over Ethernet. Supports Linux, macOS, Windows, ARM, and x86_64 AVX2 CPUs. MIT licensed. GitHub stars
  • ik_llama.cpp - High-performance llama.cpp fork with better CPU and hybrid GPU/CPU performance, SOTA quantization types, first-class Bitnet support, and improved DeepSeek performance via MLA, FlashMLA, and fused MoE operations. MIT licensed. GitHub stars
  • xLLM - High-performance inference engine optimized for Chinese AI accelerators (Cambricon MLU, Hygon DCU, Huawei Ascend). Features service-engine decoupled architecture with elastic scheduling, PD disaggregation, and global KV cache management. Powers JD.com's core retail businesses. Apache 2.0 licensed. GitHub stars
  • Mooncake - Production-grade serving platform for Kimi (Moonshot AI). Features distributed KV cache pool with intelligent offloading, prefill/decode disaggregation, and cross-instance KV reuse. Integrated with vLLM, SGLang, and TensorRT-LLM. Apache 2.0 licensed. GitHub stars
  • gemma.cpp - Lightweight, standalone C++ inference engine for Google's Gemma models. Optimized for on-device deployment with minimal dependencies and efficient memory usage. Apache 2.0 licensed. GitHub stars
  • FlashInfer - Kernel library for LLM serving. High-performance CUDA kernels for attention, sampling, and matrix multiplication. Powers vLLM, SGLang, and other inference engines with optimized GPU kernels. Apache 2.0 licensed. GitHub stars

Inference Kernels & Runtime Primitives

  • DeepEP - Communication library for efficient expert-parallel training/inference pipelines, reducing MoE cross-device communication overhead. Apache 2.0 licensed. GitHub stars
  • DeepGEMM - Clean, high-performance FP8 GEMM kernels with fine-grained scaling for modern inference workloads. Apache 2.0 licensed. GitHub stars
  • RAFT - CUDA-accelerated algorithms and ANN building blocks for high-performance similarity search, clustering, and matrix learning workloads. GitHub stars
  • SageAttention - Quantized attention kernels with reported 2-5x speedups versus FlashAttention across text, image, and video models. Apache 2.0 licensed. GitHub stars
  • ThunderKittens - CUDA tile primitives and kernel templates for accelerating transformer attention blocks. MIT licensed. GitHub stars
  • tt-metal - TT-Metalium + TT-NN operator stack for building and optimizing kernels on Tenstorrent AI accelerators. Apache 2.0 licensed. GitHub stars
  • mini-sglang - Compact implementation of SGLang designed to demystify modern LLM serving systems. Educational yet production-quality with RadixAttention, continuous batching, and speculative decoding. MIT licensed. GitHub stars

Quantization, Distillation & Optimization

  • bitsandbytes - 8-bit and 4-bit optimizers + quantization. GitHub stars
  • ExLlamaV2 - Highly optimized CUDA kernels for 4-bit/8-bit inference. GitHub stars
  • Optimum - Hardware-specific acceleration and quantization. GitHub stars
  • HQQ - Half-quadratic quantization toolkit for fast low-bit model quantization and efficient local inference. GitHub stars

4. Agentic AI & Multi-Agent Systems

Frameworks and platforms for building agent-based systems and multi-agent workflows.

Single-Agent Frameworks

  • AutoGPT - The original autonomous AI agent framework that sparked the agent revolution. Vision of accessible AI for everyone with modular agent architecture, benchmark testing, and forge-based agent building. 183k+ stars. GitHub stars

  • BabyAGI - Pioneering task-driven autonomous agent that inspired the AI agent movement. Simple, elegant implementation of an AI agent that creates, prioritizes, and executes tasks autonomously. 22k+ stars. GitHub stars

  • LangGraph - Stateful, controllable agent orchestration. GitHub stars

  • CrewAI - Role-based agent framework. GitHub stars

  • AutoGen (AG2) - Flexible multi-agent conversation framework. GitHub stars

  • DSPy - Framework for programming language model pipelines with modules, optimizers, and evaluation loops. GitHub stars

  • Semantic Kernel - SDK for building and orchestrating AI agents and workflows across multiple programming languages. GitHub stars

  • smolagents - Lightweight agent framework centered on tool use and code-executing workflows. GitHub stars

  • LangChain - Foundational library for agents, chains, and memory. GitHub stars

  • Neuron AI - PHP Agentic Framework for building production-ready AI driven applications. Connect components (LLMs, vector DBs, memory) to agents that can interact with your data. MIT licensed. GitHub stars

  • II-Agent (Intelligent Internet) - New open-source framework to build and deploy intelligent agents with support for Claude, Gemini, and OpenAI models. Apache 2.0 licensed. GitHub stars

  • Hermes Agent (NousResearch) - The agent that grows with you. Autonomous server-side agent with persistent memory that learns and improves over time. GitHub stars

  • Strands Agents - Model-driven approach to building AI agents in just a few lines of code. Multi-agent systems, autonomous agents, and streaming support with built-in MCP. Apache 2.0 licensed. GitHub stars

  • Agno - Build, run, and manage agentic software at scale. High-performance framework for multi-agent systems with memory, knowledge, and tools. GitHub stars

  • Upsonic - Agent framework for fintech and banking with built-in MCP support, guardrails, and tool server architecture. GitHub stars

  • VoltAgent - TypeScript-first AI agent engineering platform with memory, RAG, workflows, MCP integration, and voice support. GitHub stars

  • PocketFlow - 100-line minimalist LLM framework for building agent workflows. Lightweight, extensible architecture for tool use and autonomous task execution. GitHub stars

  • Agent Development Kit (Google) - Code-first Python toolkit for building sophisticated AI agents with multi-agent orchestration, built-in evaluation, and flexible deployment. Model-agnostic with tight Google ecosystem integration. Apache 2.0 licensed. GitHub stars

  • PydanticAI - Type-safe AI agent framework from the creators of Pydantic. Model-agnostic with 20+ providers, built-in observability via Logfire, MCP/A2A protocol support, and YAML/JSON agent definitions. MIT licensed. GitHub stars

  • Qwen-Agent - Agent framework built on Qwen models featuring function calling, MCP support, code interpreter, RAG, and Chrome extension. Powers Qwen Chat with advanced tool use and planning capabilities. Apache 2.0 licensed. GitHub stars

  • Griptape - Modular Python framework for AI agents and workflows with chain-of-thought reasoning, tools, and memory. Enforces structures like sequential pipelines and DAG-based workflows for predictable AI systems. Apache 2.0 licensed. GitHub stars

  • Langroid - Harness LLMs with multi-agent programming. Mature tool calling system based on Pydantic, supports hundreds of LLM providers including OpenAI and local servers. Built for robust agent behavior in real-world use cases. MIT licensed. GitHub stars

  • Octomind - Model-agnostic AI agent runtime written in Rust with specialist agents, MCP support, multiple provider integrations, and zero-config setup. Apache 2.0 licensed. GitHub stars

  • Marvin - Python framework for structured outputs and agentic AI workflows. Simplifies LLM interactions with type-safe interfaces, automatic schema generation, and built-in observability. From the creators of Prefect. Apache 2.0 licensed. GitHub stars

  • Burr - Apache incubating framework for building stateful AI applications (chatbots, agents, simulations). Monitor, trace, persist, and execute on your own infrastructure with built-in UI and pluggable memory. Apache 2.0 licensed. GitHub stars

  • KaibanJS - JavaScript-native framework for building and managing multi-agent systems with a Kanban-inspired approach. Visual task board for AI agents with real-time collaboration features. MIT licensed. GitHub stars

  • Jido - Autonomous agent framework for Elixir. Built for distributed, autonomous behavior and dynamic workflows with actor-model concurrency. Apache 2.0 licensed. GitHub stars

  • Flue - Programmable TypeScript harness and sandbox agent framework for building autonomous workflows and agents. Apache 2.0 licensed. GitHub stars

  • Agent-Native - TypeScript-first framework for building agent-first applications featuring shared database state, real-time multiplayer editing, and action-driven tools. ISC licensed. GitHub stars

  • rlm - General plug-and-play inference library for Recursive Language Models (RLMs) that programmatically execute sub-LM calls inside isolated code sandboxes. GitHub stars

  • Page Agent - JavaScript-native, in-page GUI agent framework for controlling web interfaces with natural language without screenshots or external browser automation. MIT licensed. GitHub stars

Multi-Agent Orchestration

  • MetaGPT - The Multi-Agent Framework: First AI Software Company. Assigns different roles to GPTs to form a collaborative software entity. Takes one-line requirements and outputs comprehensive software development artifacts including user stories, competitive analysis, requirements, data structures, APIs, and documents. ICLR 2024 oral presentation (top 1.2%). MIT licensed. GitHub stars
  • ChatDev - Multi-agent software development framework where AI agents collaborate as programmers, designers, and testers to build software. Apache 2.0 licensed. GitHub stars
  • CAMEL - First and best multi-agent framework for building scalable agent systems. Apache 2.0 licensed with extensive tooling for agent communication and task automation. GitHub stars
  • DeepAgents - Batteries-included LangChain agent harness for building and running structured multi-agent workflows with reusable runtime patterns. GitHub stars
  • Swarms - Bleeding-edge enterprise multi-agent orchestration. GitHub stars
  • Mastra - TypeScript-first agent framework with built-in RAG, workflows, tool integrations, observability and observational memory. GitHub stars
  • Deer-Flow (ByteDance) - Open-source long-horizon SuperAgent harness that researches, codes, and creates. Handles tasks from minutes to hours with sandboxes, memories, tools, skills, subagents, and message gateway. GitHub stars
  • OpenAI Agents SDK - Production-ready lightweight framework for multi-agent workflows. The evolution of Swarm with enhanced orchestration capabilities and enterprise-grade features. GitHub stars
  • Symphony - Turns project work into isolated, autonomous implementation runs. Monitors work boards, spawns agents to handle tasks, and provides proof of work including CI status, PR reviews, and walkthrough videos. Engineering preview for managing work instead of supervising coding agents. Apache 2.0 licensed. GitHub stars
  • Paperclip - AI agent company and orchestration framework with 55K+ stars. MIT licensed. GitHub stars
  • AgentScope - Alibaba's production-ready multi-agent framework with 23K+ stars. Features built-in MCP and A2A support, message hub for flexible orchestration, and AgentScope Runtime for production deployment. GitHub stars
  • mcp-agent - Build effective agents using Model Context Protocol and simple workflow patterns. Handles connection mechanics, LLM integration, and persistent state for production MCP-based agents. MIT licensed. GitHub stars
  • Microsoft Agent Framework - Microsoft's official framework combining AutoGen's agent abstractions with Semantic Kernel's enterprise features. Supports Python and .NET with graph-based workflows. GitHub stars
  • Agency Swarm - Reliable multi-agent orchestration framework built on top of the OpenAI Assistants API with organizational structure modeling. GitHub stars
  • elizaOS - Autonomous multi-agent framework for building and deploying AI-powered applications. Features Discord/Telegram/Farcaster connectors, RAG support, and a modern web dashboard. GitHub stars
  • OpenManus - Open-source framework for building general AI agents. Modular agent architecture with planning, tool use, and autonomous task execution. 56k+ stars. MIT licensed. GitHub stars
  • OpenAgents - AI Agent Networks for Open Collaboration. Platform for building collaborative multi-agent systems with shared knowledge and distributed task execution. Apache 2.0 licensed. GitHub stars
  • Hive (Aden) - Production-grade multi-agent orchestration framework with 10K+ stars. Apache 2.0 licensed. GitHub stars
  • Agent Squad (AWS Labs) - Flexible multi-agent orchestration framework with intelligent intent classification and context management. Supports Python and TypeScript with pre-built agents for Bedrock, Lex, and custom integrations. Apache 2.0 licensed. GitHub stars
  • DeepResearchAgent - Hierarchical multi-agent system for deep research tasks with automated task decomposition and execution across complex domains. GitHub stars
  • Composio Agent Orchestrator - Agentic orchestrator for parallel coding agents. Plans tasks, spawns agents, and autonomously handles CI fixes, merge conflicts, and code reviews. MIT licensed. GitHub stars
  • Open Multi-Agent - TypeScript-native multi-agent orchestration with multi-model teams and parallel execution. Automatically converts goals to task DAGs. MIT licensed. GitHub stars
  • BeeAI Framework (IBM) - Production-ready multi-agent framework in Python and TypeScript. Features workflow orchestration, ACP/MCP protocol support, and deep watsonx integration. Part of Linux Foundation AI & Data program. GitHub stars
  • AI Town - Deployable starter kit for building virtual towns where AI characters live, chat and socialize. Inspired by Stanford's Generative Agents research with persistent agent memory and social interactions. MIT licensed. GitHub stars
  • Conductor OSS - Event-driven agentic orchestration platform providing durable and resilient execution engine for applications and AI agents. Battle-tested at Netflix, Tesla, LinkedIn, and J.P. Morgan with 30K+ stars. Apache 2.0 licensed. GitHub stars
  • A2A Protocol - Agent2Agent (A2A) open protocol enabling communication and interoperability between opaque agentic applications. Donated to Linux Foundation by Google with 50+ technology partners. Apache 2.0 licensed. GitHub stars
  • 777genius/agent-teams-ai - Multi-agent orchestration runtime with Kanban-style team management, message review loops, and provider integrations for reusable agentic teams. GitHub stars
  • Panniantong/Agent-Reach - Reusable search and web-ingestion layer for AI agents spanning Reddit, X/Twitter, YouTube, GitHub, Bilibili and more through one CLI. GitHub stars
  • xerrors/Yuxi - Self-hosted multi-tenant agent harness combining retrieval, knowledge graph grounding, and workflow orchestration for production teams. GitHub stars
  • Sim Studio - Open-source AI workspace for building, deploying, and orchestrating AI agents. Visual canvas with 1000+ integrations, multi-framework support (Agno, OpenAI, LangChain, Google ADK), and self-hosted or cloud deployment. Apache 2.0 licensed. GitHub stars
  • 2FastLabs Agent Squad - Flexible, lightweight open-source framework for orchestrating multiple AI agents to handle complex conversations with parallel execution capabilities. Apache 2.0 licensed. GitHub stars
  • SIA - Self-improving framework that orchestrates meta, target, and feedback agents to autonomously optimize the performance of AI models and agents on benchmark tasks. MIT licensed. GitHub stars
  • Council of High Intelligence - Multi-agent deliberation framework that routes specialized personas across different LLM providers to debate topics and reach consensus. GitHub stars
  • Gas Town - Multi-agent workspace manager and orchestration system for Claude Code and other coding agents with persistent work tracking, mailboxes, and automated merge queues. MIT licensed. GitHub stars

Agent Protocols & Standards

  • Agent File - Open file format (.af) for serializing stateful AI agents with persistent memory and behavior. Share, checkpoint, and version control agents across compatible frameworks. Apache 2.0 licensed. GitHub stars
  • Agent Gateway - Next-generation proxy and routing layer for AI agents and MCP servers, with Kubernetes-native transport, protocol interoperability, and service-mesh-style isolation for reliable agent infrastructure. Apache 2.0 licensed. GitHub stars
  • Agent Governance Toolkit - Policy, safety, and execution controls for autonomous AI agents, including governance guardrails, sandboxing, and reliability checks. Apache 2.0 licensed. GitHub stars
  • DESIGN.md (Google) - A format specification for describing visual identity to coding agents, combining YAML tokens and markdown prose to give agents a structured understanding of design systems. Apache 2.0 licensed. GitHub stars
  • Agent Skills - Standardized specification and document format for bundling and progressively loading AI agent capabilities, instructions, scripts, and resources. Apache 2.0 licensed. GitHub stars

Agent Context, Memory & Knowledge

  • Codegraph - Local pre-indexed code knowledge graph for coding agents to reduce token usage and redundant tool calls across Claude, Codex, and other agents. GitHub stars
  • Gortex - Local-first code knowledge graph and code intelligence engine built in Golang with multi-repository support and real-time graph actualisation. Built for AI coding agents aiming to expose only the needed information, reducing token usage by up to 50x. Works natively with Claude, Codex, Hermes, and other agents. GitHub stars
  • Graphify - AI coding assistant skill that indexes codebases, databases, and documents into a queryable knowledge graph for coding agents. MIT licensed. GitHub stars
  • Headroom - Context compression proxy for tool outputs, logs, and RAG chunks, reducing token pressure while preserving intent for AI agents. GitHub stars
  • llmtrim - Self-hosted Rust proxy, MCP server, CLI, and library that compresses LLM prompts, tool outputs, and replies to cut token usage, quality-gated so it never raises your bill. MPL-2.0 licensed. GitHub stars
  • MemPalace - High-performance, benchmarked AI memory system for persistent recall and retrieval in long-horizon autonomous workflows. GitHub stars
  • Supermemory - Memory engine and API designed for long-lived AI agents to store, retrieve, and reuse long-horizon context with low latency. GitHub stars
  • Tree Ring Memory - Framework-agnostic, local-first memory lifecycle for AI agents with a Rust CLI, SQLite/FTS recall, redaction, forgetting, audit checks, consolidation, and agent-skill guidance. MIT licensed. GitHub stars
  • codebase-memory-mcp - High-performance C-based codebase intelligence engine and MCP server that indexes repositories into local type-resolved knowledge graphs. MIT licensed. GitHub stars

Autonomous Coding Agents

  • Background Agents - Open-source background coding agent system inspired by Ramp's Inspect, supporting file and environment snapshots, cron-based automation, and multi-provider models. MIT licensed. GitHub stars
  • OpenHands (ex-OpenDevin) - Full-featured open-source AI software engineer. GitHub stars
  • HEXStrike AI - MCP-powered coding-focused cybersecurity agent framework for automated pentesting and bug-hunting workflows. GitHub stars
  • VulnClaw - Autonomous penetration testing agent utilizing Model Context Protocol (MCP) toolchains, blackboard state space search, and structured reasoning. GitHub stars
  • Goose - Extensible on-machine AI agent for development tasks. GitHub stars
  • OpenShell (NVIDIA) - Safe and private runtime for autonomous AI agents with policy-driven execution boundaries and CLI integration. GitHub stars
  • CodeGraph - Pre-indexed local code knowledge graph for Claude Code, Codex, Gemini, and other coding agents to reduce context churn and token spend in developer workflows. GitHub stars
  • OpenCode - Terminal-native autonomous coding agent. GitHub stars
  • ECC - Performance-oriented agent harness for coding agents with skills, memory, and security-aware orchestration across Claude Code, Codex, and more. GitHub stars
  • oh-my-pi - Terminal coding agent with hash-anchored edits, subagents, LSP, browser integrations, and terminal-native workflows. GitHub stars
  • Pi (earendil-works) - Modular agent toolkit with terminal-first CLI, unified model/provider layer, and runtime integrations for coding workflows and TUI/web UIs. GitHub stars
  • Aider - Command-line pair-programming agent. GitHub stars
  • Pi (badlogic) - Terminal coding agent with hash-anchored edits, LSP integration, subagents, MCP support, and package ecosystem. GitHub stars
  • Mistral-Vibe (Mistral) - Minimal CLI coding agent by Mistral. Lightweight, fast, and designed for local development workflows. GitHub stars
  • Nanocoder (Nano-Collective) - Beautiful local-first coding agent running in your terminal. Built for privacy and control with support for multiple AI providers via OpenRouter. GitHub stars
  • Gemini CLI (Google) - Open-source AI agent that brings Gemini's power directly into your terminal. Supports code generation, shell execution, and file editing with full Apache 2.0 licensing. GitHub stars
  • Archon - Workflow engine for deterministic AI coding agents. Define development processes as YAML workflows (planning → implementation → validation → review → PR) with isolated Git worktrees for parallel execution. MIT licensed. GitHub stars
  • mini-SWE-agent - Lightweight coding agent for repository and issue-fixing workflows, designed for simple agentic software engineering experiments. GitHub stars
  • Trae Agent - Software-engineering agent from ByteDance for autonomous coding tasks and repository-level development workflows. GitHub stars
  • Kilo Code - Open-source agentic coding assistant with IDE workflows, tool use, and support for local or OpenAI-compatible models. GitHub stars
  • Open SWE - Asynchronous coding agent from the LangChain ecosystem for background software engineering tasks. GitHub stars
  • Letta Code - Memory-first coding harness designed for long-lived agents that learn from experience. Persistent agents with portable memory across models (Claude, GPT, Gemini, GLM, Kimi). CLI and desktop app for macOS, Windows, and Linux. Apache 2.0 licensed. GitHub stars
  • gptme - Your agent in your terminal, equipped with local tools: writes code, uses the terminal, browses the web. Make your own persistent autonomous agent on top. MIT licensed. GitHub stars
  • Superpowers - Composable skills framework and software development methodology for coding agents, structuring processes like planning, test-driven development, and code review. GitHub stars
  • Agent Skills - Production-grade engineering skills and quality gates for AI coding agents, packaging developer workflows like spec refinement, planning, and testing. GitHub stars
  • Harness - Team-architecture factory for C‍laude Code that designs domain-specific agent teams, defines specialized agents, and generates their skills. Apache 2.0 licensed. GitHub stars
  • jcode - Performance-oriented, memory-efficient coding agent harness built for multi-session workflows and infinite customizability. MIT licensed. GitHub stars
  • DeepSeek-Reasonix - DeepSeek-native AI coding agent for the terminal, designed around prefix-cache stability. MIT licensed. GitHub stars
  • gstack - Multi-specialist agent skills framework for Claude Code and coding agents that structures development workflows into planning, design, QA, and release phases. MIT licensed. GitHub stars
  • taste-skill - Anti-slop frontend design skills for coding agents that improve layout, typography, and design system alignment during generation. MIT licensed. GitHub stars
  • Agents CLI (Google) - CLI and skills that turn coding assistants into experts at creating, evaluating, and deploying AI agents on Google Cloud. Apache 2.0 licensed. GitHub stars
  • Claude Code Skills & Plugins - Modular instruction packages, custom commands, and utility scripts for Claude Code, Gemini CLI, Cursor, and other AI coding agents. MIT licensed. GitHub stars

Prompt Engineering & Structured Outputs

  • Outlines - Structured outputs for LLMs. Guarantees valid JSON, regex-compliant text, and Pydantic model outputs during generation. Trusted by NVIDIA, Cohere, Hugging Face, and vLLM. Apache 2.0 licensed. GitHub stars

  • Promptify - Task-based NLP engine with Pydantic structured outputs, built-in evaluation, and LiteLLM as the universal LLM backend. Think "scikit-learn for LLM-powered NLP". Apache 2.0 licensed. GitHub stars

  • LangGPT - Pioneering framework for structured and meta-prompt design. Battle-tested by thousands of users worldwide with 10,000+ stars. The most popular prompt engineering paradigm for creating reusable, maintainable prompt templates. Apache 2.0 licensed. GitHub stars

  • Prompt Optimizer - AI prompt optimization tool with multi-round iterative improvements, dual-mode optimization for system and user prompts, and multi-model support. Available as web app, desktop app, Chrome extension, and Docker deployment. AGPL-3.0 licensed. GitHub stars

  • Guidance - Efficient programming paradigm for steering language models. Control output structure with loops, conditionals, and regex constraints inline. Reduces latency and cost vs conventional prompting. MIT licensed. GitHub stars

  • XGrammar - Fast, flexible and portable structured generation engine. Default backend for vLLM, SGLang, TensorRT-LLM, and MLC-LLM with flexible grammar support and zero-overhead mask generation. Apache 2.0 licensed. GitHub stars

  • LM Format Enforcer - Enforce output format (JSON Schema, Regex, etc) of language models by filtering allowed tokens at each generation step. Compatible with Hugging Face, llama-cpp-python, and vLLM. MIT licensed. GitHub stars

  • AdalFlow - Library to build and auto-optimize LLM applications with LLM-AutoDiff for fine-tuning-free optimization. End-to-end workflow optimization with tracing and human-in-the-loop capabilities. MIT licensed. GitHub stars

  • PromptTools - Open-source tools for prompt testing and experimentation with support for LLMs and vector databases. Test prompt variants across multiple providers (OpenAI, LLaMA) and vector stores (Chroma, Weaviate, LanceDB). Apache 2.0 licensed. GitHub stars

Domain-Specific Agents

  • Composio - Tool integration layer for AI agents with 1000+ toolkits, authentication management, and sandboxed workbench. Powers tool use across major frameworks. GitHub stars
  • Langflow - Visual low-code platform for agentic workflows. GitHub stars
  • Dify - Production-ready agentic workflow platform. GitHub stars
  • OWL (camel-ai/owl) - Advanced multi-agent collaboration system. GitHub stars
  • gpt-researcher - Autonomous agent that conducts deep online research on any topic. Generates comprehensive reports with citations by orchestrating web searches, content scraping, and synthesis. Apache 2.0 licensed. GitHub stars
  • last30days-skill - AI agent that researches and synthesizes topic trends from Reddit, X, YouTube, Hacker News, and prediction markets. MIT licensed. GitHub stars
  • pm-skills - Marketplace of product management plugin skills and workflows for Claude Code, Codex, and Claude Cowork. MIT licensed. GitHub stars
  • claude-code-best-practice - Custom subagents, skills, environment configurations, and best practices for the Claude Code developer agent. GitHub stars
  • PPT Master - AI-driven multi-role agent skill for converting documents into editable PowerPoint presentations via SVG and DrawingML workflows. MIT licensed. GitHub stars
  • PraisonAI - 24/7 AI employee team for automating complex challenges. Low-code multi-agent framework with handoffs, guardrails, memory, RAG, and 100+ LLM providers. GitHub stars
  • Agent-S (Simular AI) - Open agentic framework that uses computers like a human. SOTA on OSWorld benchmark (72.6%) for GUI automation and computer control. GitHub stars
  • MobileAgent (Alibaba/X-PLUG) - Powerful GUI agent family for autonomous mobile device control. Multimodal agent framework designed to operate smartphone apps through visual UI perception and reasoning. MIT licensed. GitHub stars
  • UI-TARS Desktop (ByteDance) - Open-source multimodal AI agent stack with native GUI agent capabilities. Desktop application bringing GUI agent and vision power to your computer, browser, and terminal. Apache 2.0 licensed. GitHub stars
  • Browser Use - Makes websites accessible for AI agents. Enables autonomous web automation, data extraction, and task completion with natural language instructions. MIT licensed. GitHub stars
  • Headroom - Token and output compression middleware for AI agents and RAG workflows, reducing context footprint while preserving semantics (claims up to 60-95% fewer tokens). Apache 2.0 licensed. GitHub stars
  • Steel Browser - Open-source browser API for AI agents and apps. Batteries-included browser sandbox for web automation without infrastructure worries. Apache 2.0 licensed. GitHub stars
  • Cua - Open-source sandboxes, SDKs, and benchmarks for computer-use agents to control desktop environments. MIT licensed. GitHub stars
  • Webwright - A terminal-style web agent framework that enables coding models to run as browser agents by writing and executing Playwright scripts. MIT licensed. GitHub stars
  • TradingAgents - Multi-agent framework for financial trading. Simulates professional trading firm operations with 6+ specialized agent roles, backtesting, risk management, and portfolio optimization. Built with LangGraph, supports multiple LLM providers. GitHub stars
  • Parlant - Conversational control layer for customer-facing AI agents. Enterprise-grade context engineering framework optimized for consistent, compliant, and on-brand B2C and sensitive B2B interactions. Apache 2.0 licensed. GitHub stars
  • n8n - Self-hostable workflow automation platform with AI agent nodes, tool integrations, and production automation workflows. GitHub stars
  • Activepieces - Open-source automation platform with AI agents, MCP integrations, and self-hosted workflow orchestration. GitHub stars
  • Julep - Stateful agent workflow platform with memory, tools, branching, and long-running task execution. GitHub stars
  • uAgents (Fetch.ai) - Fast and lightweight framework for creating decentralized agents with ease. Agents automatically join the network by registering on the Almanac smart contract. Supports agent-to-agent communication out of the box. Apache 2.0 licensed. GitHub stars
  • Tracecat - Self-hostable security automation platform for building agentic workflows across alerts, cases, and operations. GitHub stars
  • PentAGI - Fully autonomous AI agent system for conducting ethical hacking and complex penetration testing tasks. MIT licensed. GitHub stars
  • ToolJet - Self-hostable internal app builder with AI app and agent workflows for operations teams. GitHub stars
  • The Agency - Extensive library of specialized developer and workflow agent personas with installer support for Claude Code, Cursor, Codex, and other coding assistants. GitHub stars
  • CubeSandbox (Tencent Cloud) - High-performance, secure agent sandbox built on RustVMM and KVM, compatible with the E2B SDK. Apache 2.0 licensed. GitHub stars

Agent Memory & State

  • Letta (ex-MemGPT) - Platform for building stateful agents with advanced memory that learn and self-improve over time. GitHub stars
  • Mem0 - Universal memory layer for AI agents. Persistent, multi-session memory across models and environments. GitHub stars
  • Rohitg (agentmemory) - Open-source memory service for agents with benchmarked retrieval, structured entities, and API/SDK support for persistent personalized memory in tooling workflows. GitHub stars
  • Forgetful - MCP server for persistent AI agent memory with atomic notes, semantic linking, and SQLite or PostgreSQL storage. GitHub stars
  • Hindsight - State-of-the-art long-term memory for AI agents by Vectorize. Fully self-hosted, MIT-licensed, with integrations for LangChain, CrewAI, LlamaIndex, Vercel AI SDK, and more. GitHub stars
  • Supermemory - Memory API and app for AI agents that provides fast, scalable, context-aware storage and retrieval across projects. MIT licensed. GitHub stars
  • TencentDB Agent Memory - Fully local long-term memory layer for AI agents with a four-tier progressive pipeline and zero external dependencies. MIT licensed. GitHub stars
  • Cognee - AI memory platform for agents that builds a self-hosted knowledge graph for persistent, long-term memory across sessions. Apache 2.0 licensed. GitHub stars

5. Retrieval-Augmented Generation (RAG) & Knowledge

Retrieval systems, vector databases, embedding models, and related tooling for RAG pipelines.

Vector Databases & Search Engines

  • Chroma - Most popular open-source embedding database. GitHub stars
  • Qdrant - High-performance vector search engine in Rust. GitHub stars
  • Weaviate - GraphQL-native vector search engine. GitHub stars
  • Milvus - Scalable cloud-native vector database. GitHub stars
  • NornicDB - Low-latency graph and vector hybrid retrieval database in Go with Neo4j and Qdrant-compatible drivers. GitHub stars
  • Faiss - Similarity search and clustering library for dense vectors with CPU and GPU implementations. GitHub stars
  • LanceDB - Serverless vector DB optimized for multimodal data. GitHub stars
  • Vespa - AI + Data platform with hybrid search (vector + keyword) and real-time indexing at scale. Battle-tested serving billions of queries daily. GitHub stars
  • pgvector - PostgreSQL extension for vector similarity search. GitHub stars
  • pgvectorscale - PostgreSQL extension for scalable vector search with DiskANN algorithm. Complements pgvector with significantly faster search and higher recall at large scale. PostgreSQL licensed. GitHub stars
  • VectorChord - Scalable, fast, and disk-friendly vector search in Postgres. Successor to pgvecto.rs with production-grade performance and efficient storage. AGPL-3.0 licensed. GitHub stars
  • Quickwit - Cloud-native search engine for observability. Open-source alternative to Datadog, Elasticsearch, Loki, and Tempo with native vector search support. GitHub stars
  • Tantivy - Full-text search engine library inspired by Apache Lucene and written in Rust. Powers Quickwit and other production search systems. GitHub stars
  • Manticore Search - Easy to use open source fast database for search. Good alternative to Elasticsearch with SQL-like interface and vector search capabilities. GitHub stars
  • OpenSearch - Open-source distributed and RESTful search and analytics suite with native vector search. Enterprise-grade fork of Elasticsearch with k-NN plugin for semantic search at scale. GitHub stars
  • Marqo - Multimodal vector search for text, image, and structured data. End-to-end indexing and search with built-in embedding models. Apache 2.0 licensed. GitHub stars
  • Vald - Highly scalable distributed vector search engine. Cloud-native architecture with automatic indexing, horizontal scaling, and multiple ANN algorithm support. Apache 2.0 licensed. GitHub stars
  • hnswlib - Header-only C++ library for fast approximate nearest neighbors with Python bindings. Supports CRUD operations and concurrent read/write - unique among ANN libraries. Powers many production vector databases. Apache 2.0 licensed. GitHub stars
  • turbovec - Rust-native high-performance vector index with Python bindings optimized for fast ANN search and SIMD acceleration on modern CPUs. MIT licensed. GitHub stars
  • sqlite-vec - A vector search SQLite extension that runs anywhere. Extremely small, "fast enough" vector search written in pure C with no dependencies. Perfect for embedded and edge deployments. MIT/Apache-2.0 dual licensed. GitHub stars
  • zvec - Lightweight, lightning-fast, in-process vector database from Alibaba. Built on Proxima (Alibaba's battle-tested vector search engine) for production-grade, low-latency similarity search. Apache 2.0 licensed. GitHub stars
  • Meilisearch - Lightning-fast search engine API with AI-powered hybrid search. Features typo-tolerant full-text search combined with HNSW-based vector search for semantic retrieval. MIT licensed. GitHub stars
  • Typesense - Open source alternative to Algolia + Pinecone. Fast, typo-tolerant, in-memory fuzzy search engine with native vector search capabilities. GPL-3.0 licensed. GitHub stars
  • Elasticsearch - Distributed search and analytics engine with native k-NN vector search, hybrid search, and dense vector indexing. Industry-standard for full-text search now with powerful semantic search capabilities. AGPL-3.0/Elastic-2.0 dual licensed. GitHub stars
  • Apache Solr - Mature Lucene-based search platform with dense vector search, filtering, faceting, and hybrid retrieval patterns for production search-heavy RAG systems. GitHub stars
  • RediSearch - Full-text, secondary indexing, and vector similarity search for Redis deployments. Useful when retrieval needs low-latency Redis-native search. GitHub stars
  • ParadeDB - Postgres-native search and analytics engine for full-text, faceted, and hybrid retrieval without moving data out of PostgreSQL. GitHub stars
  • Orama - Lightweight search engine with full-text, vector, and hybrid search for browser, server, and edge applications. GitHub stars
  • HelixDB - Graph-vector database for retrieval systems that need relationship traversal alongside semantic search. GitHub stars
  • USearch - Fast single-file similarity search & clustering engine for vectors. Smaller and faster than FAISS with 20+ language bindings (C++, Python, JavaScript, Rust, Java, Go, etc.) and support for custom metrics. Apache 2.0 licensed. GitHub stars
  • Voyager (Spotify) - Spotify's next-gen approximate nearest-neighbor search library for Python and Java. Up to 10x faster than Annoy with 4x less memory, designed for production use at billion-vector scale. Apache 2.0 licensed. GitHub stars
  • Deep Lake - AI Data Runtime for Agents with serverless PostgreSQL and multimodal datalake. Store and search vectors, images, text, videos, and more with LangChain/LlamaIndex integrations. Used by Intel, Bayer, Yale, and Oxford. Apache 2.0 licensed. GitHub stars
  • DiskANN (Microsoft) - Graph-structured indices for scalable, fast, fresh and filtered approximate nearest neighbor search. Handles billion-vector datasets on a single node with SSD-based indexing. MIT licensed. GitHub stars
  • SPTAG (Microsoft) - Distributed approximate nearest neighbor search library with high-quality vector index build and online serving toolkits. Powers Bing's vector search at trillion-vector scale. MIT licensed. GitHub stars
  • nanoflann - C++11 header-only library for fast nearest neighbor search with KD-trees. Zero dependencies, single-file integration, and 2-3x faster than FLANN with modern C++. BSD licensed. GitHub stars
  • NMSLIB - Non-Metric Space Library for efficient similarity search in generic non-metric spaces. Comprehensive toolkit for evaluating k-NN methods with support for exotic distance functions. Apache 2.0 licensed. GitHub stars
  • Vearch - Cloud-native distributed vector database for AI-native applications. Efficient similarity search of embedding vectors with horizontal scaling and real-time indexing. Apache 2.0 licensed. GitHub stars
  • JVector (DataStax) - The most advanced embedded vector search engine for Java. DiskANN-based algorithm for billion-scale vector search with efficient memory mapping. Apache 2.0 licensed. GitHub stars
  • VectorDBBench (Zilliz) - Industry-standard benchmark suite for vector databases. Test and compare performance of Milvus, Zilliz Cloud, and other vector DBs with your own datasets. MIT licensed. GitHub stars

Embedding Models

  • BGE (FlagEmbedding) - BAAI's best-in-class embedding family. GitHub stars
  • E5 (Microsoft) - High-performance text embeddings for retrieval. GitHub stars
  • FastEmbed (Qdrant) - Lightweight, fast Python library for embedding generation with ONNX Runtime. Supports text, sparse (SPLADE), and late-interaction (ColBERT) embeddings without GPU dependencies. Apache 2.0 licensed. GitHub stars
  • EmbedAnything - Minimalist, highly performant multimodal embedding pipeline built in Rust. Memory-safe, modular, and production-ready for text, image, and audio embeddings with seamless vector DB integration. Apache 2.0 licensed. GitHub stars
  • Text Embeddings Inference (Hugging Face) - Blazing fast inference solution for text embedding models. High-performance extraction with token-based dynamic batching, Flash Attention, and support for FlagEmbedding, E5, GTE, and more. OpenAI-compatible API with Docker deployment. Apache 2.0 licensed. GitHub stars

Embedding Benchmarks

  • MTEB - Massive Text Embedding Benchmark covering 1000+ languages and diverse tasks. The industry standard for evaluating and comparing embedding models. GitHub stars

RAG Frameworks & Advanced Retrieval Tools

  • EmbedChain - Universal memory layer for AI agents. Simple API to create RAG applications over any dataset with support for multiple vector stores, embedding models, and LLM providers. Apache 2.0 licensed. GitHub stars
  • LlamaIndex - Full-featured RAG pipeline with advanced indexing. GitHub stars
  • Haystack - End-to-end NLP and RAG framework. GitHub stars
  • RAGFlow - Deep-document-understanding RAG engine. GitHub stars
  • GraphRAG (Microsoft) - Knowledge-graph-based RAG. GitHub stars
  • Docling - Document processing toolkit for turning PDFs and other files into structured data for GenAI workflows. GitHub stars
  • Unstructured - Best-in-class document preprocessing. GitHub stars
  • MinerU - High-accuracy document parsing for LLM and RAG workflows. Converts PDFs, Word, PPTs, and images into structured Markdown/JSON with VLM+OCR dual engine. GitHub stars
  • Marker - Fast, accurate PDF-to-markdown converter with table extraction, equation handling, and optional LLM enhancement for RAG pipelines. GitHub stars
  • ColPali / ColQwen - Vision-language models for document retrieval. GitHub stars
  • LightRAG - Graph-based RAG with dual-level retrieval system. Simple and fast with comprehensive knowledge discovery (EMNLP 2025). GitHub stars
  • RAG-Anything - All-in-One Multimodal RAG system for seamless processing of text, images, tables, and equations. Built on LightRAG. GitHub stars
  • RAGLite (Superlinear) - Python toolkit for RAG with DuckDB or PostgreSQL. Lightweight, efficient retrieval-augmented generation without heavy dependencies. MPL 2.0 licensed. GitHub stars
  • GPT-RAG (Azure) - Enterprise RAG pattern for Azure OpenAI at scale. Secure, production-ready architecture using Azure Cognitive Search and Azure OpenAI LLMs for ChatGPT-style Q&A experiences. MIT licensed. GitHub stars
  • LangChain4j - Java library for integrating LLMs into Java applications. Implements RAG, tool calling (including MCP support), and agents with seamless integration into enterprise Java frameworks like Spring Boot. Apache 2.0 licensed. GitHub stars
  • Kernel Memory (Microsoft) - Memory solution for users, teams, and applications. RAG pipelines with document ingestion, vector indexing, and natural language querying with citations. Supports multiple LLM providers and vector stores. MIT licensed. GitHub stars
  • txtai - All-in-one AI framework for semantic search, LLM orchestration and language model workflows. Embeddings database with customizable pipelines. GitHub stars
  • Infinity (Embeddings Server) - High-throughput, low-latency serving engine for text-embeddings, reranking, CLIP, and ColPali. OpenAI-compatible API. GitHub stars
  • FlashRAG - Efficient toolkit for RAG research with 40+ retrieval and reranking models, 20+ benchmark datasets, and optimized evaluation pipelines (WWW 2025 Resource). MIT licensed. GitHub stars
  • DocsGPT - Private AI platform for building intelligent agents and assistants with enterprise search. Features Agent Builder, deep research tools, multi-format document analysis, and multi-model support. MIT licensed. GitHub stars
  • llmware - Unified framework for building enterprise RAG pipelines with small, specialized models. Optimized for AI PC and local deployment with 300+ models in catalog. Apache 2.0 licensed. GitHub stars
  • AutoFlow - Graph RAG-based conversational knowledge base tool built on TiDB Vector and LlamaIndex. Features Perplexity-style search with built-in website crawler. Apache 2.0 licensed. GitHub stars
  • KAG (OpenSPG) - Knowledge Augmented Generation framework for logical reasoning and factual Q&A in professional domains. Builds on OpenSPG knowledge graph engine to overcome traditional RAG vector similarity limitations. Supports multi-hop reasoning with schema-constrained knowledge construction. Apache 2.0 licensed. GitHub stars
  • Chonkie - Lightweight document chunking library for fast, efficient RAG pipelines. Memory-safe with multiple chunking strategies (semantic, token, recursive) and direct vector DB integration. MIT licensed. GitHub stars
  • PageIndex (VectifyAI) - Vectorless, reasoning-based RAG framework using document index structure. Achieves high accuracy without vector databases through intelligent context engineering and reasoning-based retrieval. MIT licensed. GitHub stars
  • Kotaemon (Cinnamon) - Open-source RAG-based tool for chatting with your documents. Hybrid RAG pipeline with full-text and vector retriever, re-ranking, and multi-modal capabilities. Clean Gradio-based UI with support for local and API-based LLMs. Apache 2.0 licensed. GitHub stars
  • Reader (Jina AI) - Convert any URL to LLM-friendly input with a simple prefix (r.jina.ai). Free service that extracts article content, removes clutter, and returns clean Markdown for RAG and agentic workflows. Apache 2.0 licensed. GitHub stars
  • UltraRAG (OpenBMB) - First lightweight RAG framework based on Model Context Protocol (MCP) architecture. Low-code RAG pipeline builder with comprehensive evaluation system and DeepResearch capabilities. From Tsinghua THUNLP, NEUIR, OpenBMB, and AI9stars. Apache 2.0 licensed. GitHub stars
  • Semantic Router - Superfast AI decision-making layer for LLMs and agents. Uses semantic vector space to route requests using semantic meaning rather than waiting for slow LLM generations. Cuts routing time from seconds to milliseconds. MIT licensed. GitHub stars
  • Neurite - Fractal Graph-of-Thought mind-mapping for AI agents, web-links, notes, and code. Rhizomatic workspace blending chaos theory, graph theory, and fractal logic for creative thinking and RAG workflows. MIT licensed. GitHub stars
  • Pathway - Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG. Features 350+ connectors with always-in-sync data from SharePoint, Google Drive, S3, Kafka, PostgreSQL and more. BSL 1.1 license (becomes Apache 2.0 after 4 years). GitHub stars
  • Infinity (AI Database) - AI-native database built for LLM applications with incredibly fast hybrid search of dense vector, sparse vector, tensor (multi-vector), and full-text. Powers RAGFlow's document engine. Apache 2.0 licensed. GitHub stars
  • PrivateGPT - Private document Q&A project for local and offline RAG workflows where data stays inside the user's environment. GitHub stars
  • FastGPT - Knowledge-base platform with RAG retrieval, document processing, visual AI workflows, and self-hosted deployment options. GitHub stars
  • MaxKB - Self-hostable knowledge-base and agent platform for document ingestion, RAG pipelines, and enterprise assistant workflows. GitHub stars
  • DB-GPT - Self-hosted AI data assistant for private knowledge, database-aware conversations, and data-heavy RAG workflows. GitHub stars
  • localGPT - Local document-chat project for private, on-device Q&A over files without sending data to external APIs. GitHub stars
  • SurfSense - Privacy-focused NotebookLM-style workspace for teams to search, organize, and query knowledge with self-hosted RAG. GitHub stars
  • Morphik - Open-source multimodal RAG framework for building AI apps over private knowledge. Handles text, images, and documents with built-in embedding generation and vector search. MIT licensed. GitHub stars
  • Beever Atlas - Open-source LLM knowledge base combining Neo4j knowledge graph with Weaviate vector DB for graph-based RAG. Native MCP server, team chat ingestion (Slack, Discord, Teams, Telegram), and BYO LLM via LiteLLM. Apache 2.0 licensed. GitHub stars

Knowledge Graphs for RAG

  • Graphiti - Build real-time temporal knowledge graphs for AI agents. Tracks how facts change over time with provenance to source data. Supports prescribed and learned ontology for evolving real-world data. Apache 2.0 licensed. GitHub stars

Web Data Ingestion

  • Crawl4AI - LLM-friendly web crawler that turns websites into clean Markdown for RAG and agentic workflows. GitHub stars
  • Scrapling - Adaptive web scraping and crawling framework for robust structured extraction from pages to large-scale pipelines. GitHub stars
  • Lightpanda - Machine-first headless browser in Zig; rendering-free and ultra-lightweight for AI agent browsing. GitHub stars
  • Paperless-AI - Automated document analyzer for Paperless-ngx with RAG-powered semantic search across your document archive. GitHub stars
  • Firecrawl - Web Data API for AI - search, scrape, and interact with the web at scale. Clean markdown/JSON output with proxy rotation and JS-blocking handled automatically. GitHub stars
  • invisible-playwright - Playwright wrapper for a stealth-patched Firefox 150 binary. Drop-in Browser object for AI agents that need to ingest web data from sites with anti-bot guardrails (reCAPTCHA, FingerprintPro, Cloudflare). Spoofing happens in C++ source, not via JS overrides. MIT (wrapper) + MPL-2.0 (patches). GitHub stars

Document Conversion & Preprocessing

  • OpenDataLoader PDF - Accessibility-aware PDF parser and conversion pipeline for AI-ready markdown and structured data workflows. GitHub stars
  • MarkItDown (Microsoft) - Python tool for converting files and office documents to Markdown. Supports PDF, PowerPoint, Word, Excel, images, audio, HTML, and more with OCR and transcription capabilities. MIT licensed. GitHub stars
  • LiteParse - Lightweight document parsing toolkit for AI and RAG pipelines with PDF/OCR extraction and clean preprocessing defaults. GitHub stars
  • PaddleOCR - Large-scale OCR suite with detection, recognition, and layout analysis, used widely for document digitization and downstream RAG pipelines. GitHub stars
  • DocETL (UC Berkeley) - Agentic LLM-powered data processing and ETL system for complex document processing. Query rewriting and evaluation for unstructured data analysis with 80% higher accuracy than baselines. MIT licensed. GitHub stars
  • olmOCR (Allen Institute for AI) - Toolkit for reconstructing and linearizing PDF documents into clean text optimized for LLM datasets, training, and RAG pipelines. Apache 2.0 licensed. GitHub stars

LLM Application Frameworks

  • aisuite - Simple, unified interface to multiple Generative AI providers. Use OpenAI, Anthropic, Google, and 10+ other providers with a standardized API similar to OpenAI's. Switch between models or providers with a single line of code. MIT licensed. GitHub stars
  • Spring AI - Application framework for AI engineering in the Spring ecosystem. Unified API for LLMs, vector stores, and embedding models with seamless integration into Spring Boot applications. Supports RAG, tool calling, and structured outputs. Apache 2.0 licensed. GitHub stars
  • Rig - Rust library for building scalable, modular LLM-powered applications. Type-safe agent framework with unified LLM interface, built-in vector store integrations, and ergonomic abstractions for production AI systems. MIT licensed. GitHub stars
  • Ax - TypeScript framework for building reliable AI applications. "Official" DSPy-inspired framework for TypeScript with type-safe LLM interactions, chain-of-thought reasoning, and structured output validation. Apache 2.0 licensed. GitHub stars
  • Genkit - Open-source framework for building full-stack AI-powered applications in JavaScript, Go, and Python. Built and used in production by Google's Firebase. Unified interface for integrating AI models from multiple providers with built-in RAG, tool calling, structured outputs, and developer tools. Apache 2.0 licensed. GitHub stars
  • ContextGem - Effortless LLM extraction framework for documents. Powerful abstractions for building extraction workflows with automated dynamic prompts, data modeling, validation, and precise reference mapping. Apache 2.0 licensed. GitHub stars
  • Eino - The ultimate LLM/AI application development framework in Go. Drawing from LangChain and Google ADK, designed to follow Go conventions with composable components for chains, agents, and workflows. Apache 2.0 licensed. GitHub stars
  • ruby_llm - One beautiful Ruby API for OpenAI, Anthropic, Gemini, Bedrock, Azure, OpenRouter, DeepSeek, Ollama, and 15+ providers. Agents, Chat, Vision, Audio, PDF, Images, Embeddings, Tools, Streaming and Rails integration. MIT licensed. GitHub stars
  • LangChain.rb - Build LLM-powered applications in Ruby. Idiomatic Ruby library for building AI applications with support for multiple LLM providers, vector stores, and RAG pipelines. MIT licensed. GitHub stars

6. Generative Media Tools

Open-source models and applications for image, video, audio, and 3D generation and editing.

Image Generation & Editing

  • ComfyUI - Node-based visual workflow editor for Stable Diffusion, FLUX, etc. GitHub stars
  • Stable Diffusion WebUI Forge - Neo - Actively maintained Forge-based Stable Diffusion web UI with the familiar extension-driven workflow. GitHub stars
  • Diffusers - PyTorch library for diffusion pipelines spanning image, video, and audio generation. GitHub stars
  • InvokeAI - Full-featured creative studio. GitHub stars
  • SD.Next - All-in-one WebUI for AI generative image and video creation with multi-platform support, SDNQ quantization, and balanced CPU/GPU memory offload. GitHub stars
  • Qwen-Image (Alibaba) - 20B MMDiT image foundation model with state-of-the-art complex text rendering and precise image editing. Strong performance in Chinese text generation. Apache 2.0 licensed. GitHub stars
  • stable-diffusion.cpp - Production-ready C++ inference runtime for SD, Flux, and related diffusion models, optimized for CPU and GPU deployment. GitHub stars
  • Upscayl - Free and open-source AI image upscaler for Linux, macOS, and Windows. Uses Real-ESRGAN and Vulkan architecture to enhance images by reconstructing high-resolution details. Cross-platform desktop app with batch processing. AGPL-3.0 licensed. GitHub stars
  • Z-Image (Tongyi) - Powerful and efficient image generation model family with 6B parameters. Includes Z-Image-Turbo for sub-second inference and Z-Image-Omni-Base for both generation and editing. Strong bilingual text rendering and instruction adherence. Apache 2.0 licensed. GitHub stars
  • Krita AI Diffusion - Streamlined AI image generation plugin for Krita. Inpaint and outpaint with optional text prompt, no tweaking required. Integrates ComfyUI backend for professional digital painting workflows. GPL-3.0 licensed. GitHub stars

Face Swap & Deepfake

  • Deep-Live-Cam - Real-time face swap and one-click video deepfake with only a single image. High-quality face swapping for live video streaming and content creation. AGPL-3.0 licensed. GitHub stars

Portrait Animation

  • EchoMimic (Ant Group) - Lifelike audio-driven portrait animations through editable landmark conditioning. High-quality talking head generation with precise lip synchronization and natural head movements. AAAI 2025. Apache 2.0 licensed. GitHub stars

Video Generation

  • Wan2.2 (Alibaba) - Leading open Mixture-of-Experts text-to-video model. GitHub stars
  • SkyReels V2/V3 (Skywork) - First open-source infinite-length film generative model using AutoRegressive Diffusion-Forcing. GitHub stars
  • Hyperframes (HeyGen) - Open-source long video generation platform for cinematic and social video creation with timeline control, diffusion-based motion modules, and multimodal conditioning. GitHub stars
  • LTX-2 (Lightricks) - Official Python inference and LoRA trainer package for the LTX-2 audio–video generative model. GitHub stars
  • Open-Sora-Plan (PKU-YuanGroup) - Reproduction of Sora with full open-source pipeline for text-to-video generation. MIT licensed. GitHub stars
  • Helios (PKU-YuanGroup) - Efficient long-video generation framework with 24GB VRAM support for up to 10,000 frames (5+ minutes) and 1280×768 resolution. Apache 2.0 licensed. GitHub stars
  • Pixelle-Video (AIDC-AI) - Text-to-video foundation model optimized for long coherent scenes and controllable generation workflows. Apache 2.0 licensed. GitHub stars
  • ViralMint - End-to-end short-video pipeline that scouts trends, transcribes competitors locally, and assembles captioned videos with AI scripts, voice, and stock footage. AGPL-3.0 licensed. GitHub stars
  • MoneyPrinterTurbo - An end-to-end short-video generation pipeline that automates scripts, footage collection, voiceover, and subtitle synthesis. MIT licensed. GitHub stars
  • OpenMontage - Agentic video production platform that orchestrates scriptwriting, asset generation, voice synthesis, editing, and rendering. AGPL-3.0 licensed. GitHub stars
  • ViMax - Multi-agent video generation framework that orchestrates scriptwriting, storyboarding, character design, and temporal visual consistency for end-to-end video synthesis. MIT licensed. GitHub stars
  • WhisperLive - Nearly-live implementation of OpenAI's Whisper for real-time speech-to-text transcription. Supports faster-whisper, tensorrt, and openvino backends with WebSocket streaming. MIT licensed. GitHub stars

Audio / Music / Voice Generation

  • ACE-Step 1.5 - Local-first music generation model with broad hardware support across Mac, AMD, Intel, and CUDA devices. GitHub stars
  • Magenta RealTime 2 - Open-weights live music model for streaming generation and real-time interaction. Apache 2.0 licensed. GitHub stars
  • Amphion - Comprehensive toolkit for Audio, Music, and Speech Generation (9.7K stars). GitHub stars
  • Stable Audio Tools - Stability AI's open-source audio and music generative models. Latent diffusion model for generating audio conditioned on metadata and timing, providing faster inference times and creative control for sound effects and music production. MIT licensed. GitHub stars
  • GPT-SoVITS - Few-shot voice cloning with just 1 minute of voice data. Combines GPT and SoVITS architectures for high-quality TTS with cross-lingual support and emotional expression. MIT licensed. GitHub stars
  • Real-Time Voice Cloning - Clone a voice in 5 seconds to generate arbitrary speech in real-time. SV2TTS implementation with speaker encoder and vocoder for instant voice synthesis. MIT licensed. GitHub stars
  • Supertonic - Lightning-fast, on-device, multilingual text-to-speech system running natively via ONNX. MIT licensed. GitHub stars
  • Voicebox - Local-first AI voice studio to clone voices, generate speech in multiple languages, and dictate text locally. MIT licensed. GitHub stars

3D & Creative Tools

  • gsplat (3D Gaussian Splatting tools) - High-performance 3D Gaussian Splatting library. GitHub stars
  • LichtFeld-Studio - Native application for training, editing, and exporting 3D Gaussian Splatting scenes with MCMC optimization and timelapse generation. GPL-3.0 licensed. GitHub stars
  • OpenSplat - Production-grade, portable implementation of 3D Gaussian Splatting with CPU/GPU support for Windows, Mac, and Linux. Creates 3D scenes from camera poses and sparse points. AGPL-3.0 licensed. GitHub stars

7. Training & Fine-tuning Ecosystem

Tools for model training, fine-tuning, synthetic data generation, and distributed training.

Full Training Frameworks

  • Oumi - Fully open-source platform for the complete foundation model lifecycle - from data preparation and training to evaluation and deployment. Supports 100+ models with 200+ recipes for fine-tuning gpt-oss, Qwen3, DeepSeek-R1, and more. Apache 2.0 licensed. GitHub stars
  • Marin - Open-source framework for foundation-model development with composable data, training, and evaluation pipelines for modern LLM research. GitHub stars
  • LLaMA-Factory - One-stop unified framework for SFT, DPO, ORPO, KTO with web UI. GitHub stars
  • Axolotl - YAML-driven full pipeline for SFT, DPO, GRPO. GitHub stars
  • ms-swift - Unified training framework for 600+ LLMs and 300+ MLLMs with CPT/SFT/DPO/GRPO (AAAI 2025). GitHub stars
  • Unsloth - 2× faster, 70% less memory fine-tuning. GitHub stars
  • LitGPT - Clean from-scratch implementations of 20+ LLMs. GitHub stars
  • LLM Foundry - Databricks' training framework for composable LLM training with StreamingDataset and Composer. GitHub stars
  • torchtune - PyTorch-native library for post-training, fine-tuning, and experimentation with LLMs. GitHub stars
  • kohya_ss - Gradio-based GUI and CLI for training Stable Diffusion models (LoRA, Dreambooth, fine-tuning, SDXL). Provides accessible interface to Kohya's powerful training scripts. GitHub stars
  • TRL (Transformers Reinforcement Learning) - Official library for RLHF, SFT, DPO, ORPO. GitHub stars
  • verl - Volcano Engine Reinforcement Learning for LLMs with PPO, GRPO, REINFORCE++, DAPO (EuroSys 2025). GitHub stars
  • NeMo-RL - Scalable toolkit for efficient model reinforcement with DTensor and Megatron backends. GitHub stars
  • OpenRLHF - Easy-to-use, scalable RLHF framework based on Ray. Supports PPO, GRPO, REINFORCE++, DAPO with vLLM integration and async training. Apache 2.0 licensed. GitHub stars
  • LMFlow - Extensible toolkit for finetuning and inference of large foundation models. Features RAFT alignment algorithm and comprehensive model support. Apache 2.0 licensed. GitHub stars
  • XTuner - A next-generation training engine built for ultra-large MoE models with efficient QLoRA and full-parameter fine-tuning. Apache 2.0 licensed. GitHub stars
  • Ludwig - Low-code framework for building custom LLMs and deep neural networks. Declarative YAML configuration for training state-of-the-art models with PEFT/LoRA, 4-bit quantization, distributed training via Hugging Face Accelerate, and native Kubernetes support. Linux Foundation AI project. Apache 2.0 licensed. GitHub stars
  • TorchTitan (PyTorch) - PyTorch native platform for training generative AI models at scale. Showcases 4D parallelism (FSDP, tensor, pipeline, context) for LLM pretraining with 65%+ speedups over optimized baselines. BSD-3-Clause licensed. GitHub stars
  • VeOmni (ByteDance) - Versatile framework for both single- and multi-modal pre-training and post-training. Model-centric distributed recipe zoo supporting text, vision, audio, and video models with unified training interface. Apache 2.0 licensed. GitHub stars
  • H2O LLM Studio - No-code GUI framework for fine-tuning LLMs. Streamlined interface for SFT, reward modeling, and model deployment. Apache 2.0 licensed. GitHub stars
  • TinyZero - Minimal reproduction of DeepSeek R1-Zero for countdown and multiplication tasks. Clean, accessible implementation for understanding RL-based reasoning training. Apache 2.0 licensed. GitHub stars
  • PRIME-RL - Agentic RL Training at Scale from Prime Intellect. Framework for large-scale reinforcement learning capable of scaling to 1000+ GPUs with fully asynchronous RL, FSDP2 training, and vLLM inference. Apache 2.0 licensed. GitHub stars
  • slime - LLM post-training framework for RL Scaling from THUDM. Supports SFT and RL training with multi-turn compilation feedback, powering projects like TritonForge for automated GPU kernel generation. Apache 2.0 licensed. GitHub stars
  • rLLM - Democratizing Reinforcement Learning for LLMs. Framework for training AI agents with RL featuring near-zero code changes, CLI-first workflow, and 50+ built-in benchmarks. Supports GRPO, REINFORCE, RLOO with verl and tinker backends. Apache 2.0 licensed. GitHub stars
  • EasyR1 - Efficient, scalable, multi-modality RL training framework based on veRL. Extends veRL to support vision-language models with GRPO algorithm for efficient RL training. Apache 2.0 licensed. GitHub stars
  • LeRobot - Making AI for robotics more accessible with end-to-end learning. State-of-the-art approaches for imitation learning and reinforcement learning with pretrained models, datasets, and simulated environments. Apache 2.0 licensed. GitHub stars
  • AI-Toolkit - Ultimate training toolkit for finetuning diffusion models. Easy-to-use all-in-one training suite supporting FLUX.1, FLUX.2, Stable Diffusion, and video models with both GUI and CLI interfaces. Consumer-grade hardware friendly with comprehensive LoRA and full fine-tuning support. MIT licensed. GitHub stars
  • OneTrainer - One-stop solution for all your Diffusion training needs. Supports FLUX, Stable Diffusion 1.5/2.x/3.x/SDXL, Würstchen, PixArt, Hunyuan Video and more. Features full fine-tuning, LoRA, embeddings, masked training, automatic backups, and TensorBoard integration. GPL-3.0 licensed. GitHub stars
  • FluxGym - Dead simple FLUX LoRA training UI with LOW VRAM support (12GB/16GB/20GB). WebUI forked from AI-Toolkit with backend powered by Kohya Scripts. Combines simplicity of Gradio interface with flexibility of Kohya's powerful training scripts. GPL-3.0 licensed. GitHub stars
  • MiniMind - Train a 64M-parameter LLM from scratch in just 2 hours for $3. Complete from-scratch implementation covering MoE, data cleaning, pretraining, SFT, LoRA, RLHF (DPO/PPO/GRPO), tool use, and model distillation. All core algorithms implemented in pure PyTorch without high-level abstractions. Educational framework for understanding LLM internals. Apache 2.0 licensed. GitHub stars
  • FastChat - Open platform for training, serving, and evaluating large language model chatbots. Powers Chatbot Arena (lmarena.ai) serving 10M+ requests for 70+ LLMs. Includes training code for Vicuna, MT-Bench evaluation, and distributed multi-model serving with OpenAI-compatible APIs. Apache 2.0 licensed. GitHub stars
  • PaddleNLP - Easy-to-use and powerful LLM library built on Baidu's PaddlePaddle framework. Supports 100+ models with efficient training, compression, and high-performance inference on diverse hardware. Features RsLoRA+ algorithm, DeepSeek V3/R1 support with FP8/INT8 quantization, and unified checkpointing. Apache 2.0 licensed. GitHub stars

LoRA / PEFT Tools

Synthetic Data Generation

  • distilabel - End-to-end pipeline for synthetic instruction data. GitHub stars
  • Data-Juicer - High-performance data processing for LLM training. GitHub stars
  • Argilla - Open-source data labeling + synthetic data platform. GitHub stars
  • SDV (Synthetic Data Vault) - High-fidelity tabular and relational synthetic data. GitHub stars
  • DataTrove (Hugging Face) - Platform-agnostic data processing pipelines for LLM training at scale. Handles filtering, deduplication, and tokenization on local machines or SLURM clusters. GitHub stars
  • Bespoke Curator - Synthetic data curation for post-training and structured data extraction. Makes it easy to build pipelines around LLMs with batching and progress tracking. Apache 2.0 licensed. GitHub stars
  • SDG (Harbin Institute) - Specialized framework for generating high-quality structured tabular synthetic data with CTGAN models supporting billion-level data processing. Apache 2.0 licensed. GitHub stars

Distributed Training

  • DeepSpeed - Extreme-scale training optimizations. GitHub stars
  • Colossal-AI - Unified system for 100B+ models. GitHub stars
  • Megatron-LM - Distributed training framework and reference codebase for large transformer models at scale. GitHub stars
  • Ray Train - Scalable distributed training. GitHub stars
  • Nanotron (Hugging Face) - Minimalistic 3D-parallelism LLM pretraining with tensor, pipeline, and data parallelism. Designed for simplicity and speed. GitHub stars
  • veScale (ByteDance) - Hyperscale PyTorch distributed training with flexible FSDP implementation for LLMs and RL training at scale. GitHub stars
  • RLinf - Scalable open-source RL infrastructure for post-training foundation models via reinforcement learning. Features M2Flow paradigm for embodied AI and agentic workflows with real-world robotics integrations. Apache 2.0 licensed. GitHub stars
  • dstack - Vendor-agnostic orchestration for training, inference and agentic workloads across NVIDIA, AMD, TPU, and Tenstorrent on clouds, Kubernetes, and bare metal. MPL-2.0 licensed. GitHub stars
  • Streaming (MosaicML) - High-performance data streaming library for efficient neural network training. Streams training data from cloud storage (S3, GCS, Azure) with local caching and deterministic shuffling. Apache 2.0 licensed. GitHub stars

Model Quantization & Optimization

  • LLM Compressor (vLLM) - Transformers-compatible library for applying various compression algorithms to LLMs for optimized deployment with vLLM. Supports GPTQ, AWQ, SmoothQuant, AutoRound, and FP8/INT8 quantization with seamless Hugging Face integration. GitHub stars
  • NVIDIA Model Optimizer - Unified library of SOTA model optimization techniques including quantization, pruning, distillation, and speculative decoding. Compresses deep learning models for deployment with TensorRT-LLM, TensorRT, and vLLM to optimize inference speed across NVIDIA hardware. GitHub stars

8. MLOps / LLMOps & Production

Tooling for tracking, deploying, monitoring, and operating AI systems in production.

Experiment Tracking & Versioning

  • MLflow - End-to-end open platform for the ML/LLM lifecycle. GitHub stars
  • DVC (Data Version Control) - Git-like versioning for data and models. GitHub stars
  • ClearML - Open-source platform for experiment tracking, orchestration, data management, and model serving. GitHub stars
  • Weights & Biases Weave - Open-source tracing and experiment tracking. GitHub stars
  • Aim - Self-hosted ML experiment tracker designed to handle 10,000s of training runs with performant UI and SDK for programmatic access. Apache 2.0 licensed. GitHub stars
  • Feast - Open source feature store for ML. Manages offline/online feature storage with point-in-time correctness to prevent data leakage. Apache 2.0 licensed. GitHub stars
  • OpenLineage - Open standard for lineage metadata collection designed to instrument jobs as they run. Defines a generic model of run, job, and dataset entities for consistent data lineage tracking. Apache 2.0 licensed. GitHub stars
  • Marquez - LF AI & Data Foundation Graduated project for metadata collection, aggregation, and visualization. Maintains provenance of how datasets are consumed and produced with global visibility into job runtime and dataset lifecycle management. Integrates with OpenLineage. Apache 2.0 licensed. GitHub stars

Model Hubs & Registries

  • Civitai - Open-source AI model hub and community platform for sharing and discovering generative AI models, with focus on image generation models. Features model versioning, reviews, and integrated inference. Apache 2.0 licensed. GitHub stars
  • Hugging Face Hub - Official Python client for the Hugging Face Hub. Download, upload, and manage 1M+ open-source ML models and datasets programmatically. The de facto standard for model sharing and distribution. Apache 2.0 licensed. GitHub stars
  • ModelScope - Model-as-a-Service platform bringing together 700+ state-of-the-art ML models from the AI community. Covers NLP, CV, Audio, Multi-modality, and AI for Science with streamlined model inference, fine-tuning and evaluation. Apache 2.0 licensed. GitHub stars
  • OpenVINO Open Model Zoo - Pre-trained deep learning models and demos optimized for Intel hardware. 200+ public pre-trained models for vision, speech, and NLP with benchmarking tools and accuracy metrics. Apache 2.0 licensed. GitHub stars
  • ONNX Model Zoo - Collection of pre-trained, state-of-the-art models in the ONNX format. 80+ models spanning vision, NLP, and audio with validation data and reference implementations. Apache 2.0 licensed. GitHub stars
  • Transformers.js - State-of-the-art Machine Learning for the web. Run Hugging Face Transformers directly in your browser with no server needed. Supports 1000+ models including BERT, GPT-2, T5, and more via ONNX Runtime Web. Apache 2.0 licensed. GitHub stars
  • DJL (Deep Java Library) - Engine-agnostic deep learning framework for Java with built-in model zoo. Load and run PyTorch, TensorFlow, MXNet, and ONNX models with a unified API. Includes 80+ pre-trained models for CV and NLP. Apache 2.0 licensed. GitHub stars
  • PaddleSeg - Easy-to-use image segmentation library with awesome pre-trained model zoo. Supports semantic segmentation, interactive segmentation, panoptic segmentation, image matting, and 3D segmentation with 200+ pre-trained models. Apache 2.0 licensed. GitHub stars
  • TorchVision Models - PyTorch's official computer vision library with 50+ pre-trained model architectures including ResNet, EfficientNet, Vision Transformers (ViT), ConvNeXt, and more. The de facto standard model zoo for PyTorch computer vision. BSD-3-Clause licensed. GitHub stars
  • TensorFlow Model Garden - Official TensorFlow repository of state-of-the-art (SOTA) models and modeling solutions. Contains reference implementations for BERT, ResNet, Transformer, and many more with pre-trained weights and training scripts. Apache 2.0 licensed. GitHub stars
  • PINTO Model Zoo - Repository for storing models inter-converted between various frameworks. Supports TensorFlow, PyTorch, ONNX, OpenVINO, TFJS, TFTRT, TensorFlowLite (Float32/16/INT8), EdgeTPU, and CoreML. 4,100+ stars with extensive model conversion tools for edge deployment. MIT licensed. GitHub stars
  • Cerebras Model Zoo - Collection of deep learning models and utilities optimized for Cerebras hardware. Includes reference implementations for Llama, Mixtral, DINOv2, and Llava with configuration files, data preprocessing tools, and checkpoint converters. 1,150+ stars. Apache 2.0 licensed. GitHub stars
  • PaddleClas - Comprehensive image recognition and classification toolkit with rich model zoo. 5,800+ stars featuring 24 series of classification networks, 122 pretrained models, and end-to-end image recognition systems including PP-ShiTuV2. Apache 2.0 licensed. GitHub stars

Model Packaging & Deployment

  • Cog (Replicate) - Containerize and deploy ML models with production-grade inference servers. Packages models into standardized containers with automatic API generation, GPU support, and one-command deployment. Powers thousands of production AI models on Replicate. Apache 2.0 licensed. GitHub stars

Deployment & Orchestration

  • BentoML - Unified framework to build, ship, and scale AI apps. GitHub stars
  • ZenML - Pipeline and orchestration framework for taking ML and LLM systems from development to production. GitHub stars
  • Kubeflow - Kubernetes-native ML/LLM platform. GitHub stars
  • KServe - Kubernetes-based model serving. GitHub stars
  • Seldon Core - MLOps and LLMOps framework for deploying, managing and scaling AI systems in Kubernetes. Standardized deployment across model types with autoscaling, multi-model serving, and A/B experiments. GitHub stars
  • Metaflow - Netflix's ML platform for building and managing real-world AI systems. Powers thousands of projects at Netflix, Amazon, and DoorDash. Apache 2.0 licensed. GitHub stars
  • Flyte - Kubernetes-native workflow orchestration platform for AI/ML pipelines. Dynamic, resilient orchestration with strong type safety and reproducibility. Used by Lyft, Spotify, and Gojek. Apache 2.0 licensed. GitHub stars
  • Prefect - Workflow orchestration framework for building resilient data and ML pipelines. Python-native with modern observability and 200+ integrations. Apache 2.0 licensed. GitHub stars
  • Dagster - Cloud-native orchestration platform for developing and maintaining data assets including ML models. Declarative programming model with integrated lineage and observability. Apache 2.0 licensed. GitHub stars
  • Kubeflow Pipelines - Machine Learning Pipelines for Kubeflow. Platform for building and deploying portable, scalable ML workflows using Kubernetes and Argo. Apache 2.0 licensed. GitHub stars
  • Argo Workflows - CNCF graduated container-native workflow engine for orchestrating parallel jobs on Kubernetes. Powers Kubeflow Pipelines and widely used for ML/data processing at scale. Apache 2.0 licensed. GitHub stars
  • MLRun - Open-source AI orchestration platform for quickly building and managing continuous ML and generative AI applications across their lifecycle. Automates data preparation, model tuning, and deployment. Apache 2.0 licensed. GitHub stars
  • Kestra - Event-driven orchestration and scheduling platform for mission-critical workflows. Infrastructure-as-Code approach with declarative YAML, Git version control integration, and hundreds of plugins for data pipelines and ML workflows. Apache 2.0 licensed. GitHub stars
  • KitOps - CNCF open source DevOps tool for packaging, versioning, and securely sharing AI/ML models, datasets, code, and configuration. Packages everything into OCI artifacts stored in existing container registries. Apache 2.0 licensed. GitHub stars
  • Polyaxon - MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle. Reproducible and scalable machine learning workflows on Kubernetes with experiment tracking, model management, and pipeline orchestration. Apache 2.0 licensed. GitHub stars
  • Netflix Maestro - Netflix's next-generation workflow orchestrator for data and ML pipelines at massive scale. Highly scalable and flexible scheduler designed to handle millions of workflows across thousands of nodes. Apache 2.0 licensed. GitHub stars
  • HAMi - Heterogeneous GPU Sharing on Kubernetes. CNCF sandbox project providing GPU virtualization, slicing, and scheduling for efficient AI workload management across heterogeneous accelerators (GPUs, NPUs, MLUs). Apache 2.0 licensed. GitHub stars
  • NVIDIA KAI Scheduler - Kubernetes-native GPU scheduler for AI workloads at large scale. Originally developed by Run:ai, now open-sourced by NVIDIA. Optimizes GPU resource allocation with dynamic allocation and efficient queue management. Apache 2.0 licensed. GitHub stars
  • NVIDIA DeepOps - Infrastructure automation tools for building GPU clusters with Kubernetes and Slurm. Deploys multi-node GPU clusters with monitoring, logging, and storage for AI/HPC workloads. BSD-3-Clause licensed. GitHub stars
  • SkyPilot - Run, manage, and scale AI workloads on any AI infrastructure. Unified interface to access and manage compute across Kubernetes, Slurm, and 20+ cloud providers. Used by Shopify and research institutions for training and inference. Apache 2.0 licensed. GitHub stars
  • Volcano - Cloud-native batch scheduling system for compute-intensive workloads. CNCF incubating project with gang scheduling, job dependency management, and topology-aware scheduling for AI/ML and deep learning. Apache 2.0 licensed. GitHub stars
  • Apache YuniKorn - Kubernetes resource scheduler for batch, data, and ML workloads. Provides hierarchical resource queues, multi-tenancy fairness, and gang scheduling for big data and machine learning applications. Apache 2.0 licensed. GitHub stars
  • Kueue - Kubernetes-native job queueing system for batch, HPC, AI/ML, and similar applications. Cloud-native job queueing with resource flavor fungibility, fair sharing, cohorts, and preemption policies. Integrates with Kubeflow, Ray, and JobSet. Apache 2.0 licensed. GitHub stars

Feature Engineering & Data Preparation

  • Featuretools - Open-source Python library for automated feature engineering. Transforms transactional and relational datasets into feature matrices for machine learning using Deep Feature Synthesis with reusable primitives. BSD-3-Clause licensed. GitHub stars
  • Kedro - Toolbox for production-ready data science. Uses software engineering best practices to help you create data engineering and data science pipelines that are reproducible, maintainable, and modular. Apache 2.0 licensed. GitHub stars
  • Feature-engine - Python library with multiple transformers to engineer and select features for machine learning models. scikit-learn compatible with fit() and transform() methods for encoding, imputation, variable transformation, and feature selection. BSD-3-Clause licensed. GitHub stars
  • NVTabular - GPU-accelerated feature engineering and preprocessing library for tabular data. Manipulates terabyte-scale datasets to train deep learning recommender systems. Component of NVIDIA Merlin framework. Apache 2.0 licensed. GitHub stars
  • OpenMLDB - Open-source machine learning database providing a feature platform for consistent features between training and inference. Real-time relational data feature computation system for online ML applications. Apache 2.0 licensed. GitHub stars

Monitoring, Evaluation & Observability

  • Langfuse - #1 open-source LLM observability platform. GitHub stars
  • Phoenix (Arize) - AI observability & evaluation platform. GitHub stars
  • Evidently - ML & LLM monitoring framework. GitHub stars
  • Opik (Comet) - Production-ready LLM evaluation platform. GitHub stars
  • LiteLLM - AI Gateway to call 100+ LLM APIs in OpenAI format with unified cost tracking, guardrails, load balancing, and logging. GitHub stars
  • OpenLIT - OpenTelemetry-native LLM observability platform with GPU monitoring, evaluations, prompt management, and guardrails. GitHub stars
  • OpenLLMetry (Traceloop) - Open-source observability for GenAI/LLM applications based on OpenTelemetry with 25+ integration backends. GitHub stars
  • Agenta - Open-source LLMOps platform combining prompt playground, prompt management, LLM evaluation, and observability. GitHub stars
  • Latitude - Open-source agent engineering platform with prompt management, evaluations, and optimization. Features prompt playground, LLM-as-judge evals, and GEPA prompt optimizer for production LLM features. LGPL-3.0 licensed. GitHub stars
  • Helicone - Open-source LLM observability with request logging, caching, rate limiting, and cost analytics. GitHub stars
  • Giskard - Open-source evaluation and testing library for LLM agents. Red teaming, vulnerability scanning, RAG evaluation, and safety testing with modular architecture. Apache 2.0 licensed. GitHub stars
  • Portkey Gateway - Blazing fast AI Gateway to route 200+ LLMs with unified API. Integrated guardrails, load balancing, fallbacks, and cost tracking. MIT licensed. GitHub stars
  • Envoy AI Gateway - Manages unified access to generative AI services built on Envoy Gateway. Kubernetes-native AI gateway for routing, load balancing, and managing LLM traffic with enterprise-grade reliability. Apache 2.0 licensed. GitHub stars
  • Pezzo - Cloud-native LLMOps platform with prompt management, versioning, and observability. Features collaborative prompt editing, A/B testing, and cost analytics. Apache 2.0 licensed. GitHub stars
  • Microsoft PromptFlow - Comprehensive suite for LLM-based AI app development from prototyping to production. Includes prompt engineering, evaluation, and deployment tools with VS Code integration. MIT licensed. GitHub stars
  • ChainForge - Visual programming environment for battle-testing prompts and evaluating LLM outputs. Features node-based prompt chains, multi-model comparison, and hypothesis testing. MIT licensed. GitHub stars
  • Future AGI - Open-source self-hostable end-to-end agent engineering and optimization platform that unifies tracing, evals, simulations, datasets, gateway, and guardrails. Built for shipping self-improving AI agents with one feedback loop from prototype to production. Apache 2.0 licensed. GitHub stars
  • KubeStellar Console - AI-powered multi-cluster Kubernetes dashboard with GPU workload monitoring, AI pipeline observability, and CNCF ecosystem integrations. Apache 2.0 licensed. GitHub stars

Guardrails & Safety Tools

  • PurpleLlama (Meta) - Comprehensive set of tools to assess and improve LLM security. Includes Llama Guard safety classifiers, CyberSec Eval benchmarks, and Prompt Guard for prompt injection detection. BSD-3-Clause licensed. GitHub stars
  • Garak (NVIDIA) - The LLM vulnerability scanner. Probes models for hallucinations, data leakage, prompt injection, misinformation, toxicity, and jailbreaks. Extensive plugin-based architecture with 100+ vulnerability probes. Apache 2.0 licensed. GitHub stars
  • Promptfoo - Open-source LLM evaluation and red teaming framework. Test prompts, agents, and RAGs with automated security vulnerability scanning, side-by-side model comparison, and CI/CD integration. Now part of OpenAI. MIT licensed. GitHub stars
  • DeepTeam (Confident AI) - Red teaming framework for LLM systems with 50+ vulnerabilities, 20+ adversarial attacks, and production-ready guardrails. Includes OWASP, NIST, and MITRE ATLAS framework mappings. Apache 2.0 licensed. GitHub stars
  • SkillSpector (NVIDIA) - Security scanner for AI agent skills that detects vulnerabilities, malicious patterns, and security risks. Apache 2.0 licensed. GitHub stars

9. Evaluation, Benchmarks & Datasets

Benchmarks, evaluation frameworks, datasets, and supporting tools for model assessment.

Benchmark Suites

  • LiveBench - Contamination-free LLM benchmark with objective ground-truth scoring. ICLR 2025 spotlight paper featuring frequently-updated questions from recent sources. Tests math, coding, reasoning, language, instruction following, and data analysis. GitHub stars
  • lm-evaluation-harness (EleutherAI) - De-facto standard for generative model evaluation. GitHub stars
  • HELM (Stanford) - Holistic Evaluation of Language Models. GitHub stars
  • MMLU-Pro / GPQA - More challenging MMLU-style benchmark suite for evaluating advanced language models with expert-level reasoning questions. GitHub stars
  • SWE-bench - Evaluates LLMs on real-world GitHub issues from 15+ Python repositories. GitHub stars
  • GAIA - Real-world multi-step agentic benchmark.
  • OpenCompass - Evaluation platform for benchmarking language and multimodal models across large benchmark suites. GitHub stars
  • MLPerf Inference - Industry-standard ML inference benchmarks with reference implementations for AI accelerators. GitHub stars
  • MLPerf Training - Industry-standard ML training benchmarks from MLCommons. Reference implementations for training AI models at scale across image classification, object detection, NLP, and recommendation tasks. Apache 2.0 licensed. GitHub stars
  • VLMEvalKit - Open-source evaluation toolkit for large multi-modality models (LMMs). Supports 220+ LMMs and 80+ benchmarks including MMMU, MathVista, and ChartQA. Powers the OpenVLM Leaderboard. Apache 2.0 licensed. GitHub stars
  • Vectara Hallucination Leaderboard - Leaderboard comparing LLM performance at producing hallucinations when summarizing short documents. Systematic evaluation of factual consistency across major models. Apache 2.0 licensed. GitHub stars
  • SWE-rebench (Nebius) - Continuously updated benchmark with 21,000+ real-world SWE tasks for evaluating agentic LLMs. Decontaminated, mined from GitHub.
  • AgentBench (THUDM) - Comprehensive benchmark to evaluate LLMs as agents across 8 diverse environments including household, web shopping, OS interaction, and database tasks. ICLR 2024. Apache 2.0 licensed. GitHub stars
  • MLE-bench (OpenAI) - Benchmark for measuring how well AI agents perform at machine learning engineering. Evaluates agents on 75 Kaggle competitions covering diverse ML tasks. MIT licensed. GitHub stars
  • PinchBench - Benchmarking system for evaluating LLM models as OpenClaw coding agents. Built with Rust by the kilo.ai team. MIT licensed. GitHub stars

Evaluation Frameworks

  • DeepEval - The "Pytest for LLMs". GitHub stars
  • Inspect AI - Framework for large language model evaluations from the UK AI Security Institute. GitHub stars
  • RAGAs - End-to-end RAG evaluation framework. GitHub stars
  • Lighteval - Evaluation toolkit for LLMs across multiple backends with reusable tasks, metrics, and result tracking. GitHub stars
  • Hugging Face Evaluate - Standardized evaluation metrics. GitHub stars
  • OpenAI Evals - Framework for evaluating LLMs and LLM systems with an open-source registry of 100+ community-contributed benchmarks. MIT licensed. GitHub stars
  • LMMs-Eval - Unified multimodal evaluation toolkit for text, image, video, and audio tasks with 100+ supported benchmarks. GitHub stars
  • BrowserGym - Gym environment for web task automation and agent evaluation. Includes MiniWoB, WebArena, WorkArena, and more. Apache 2.0 licensed. GitHub stars
  • TruLens - Evaluation and tracking for LLM experiments and AI agents. Provides feedback functions for measuring quality, relevance, and groundedness with LangChain and LlamaIndex integrations. MIT licensed. GitHub stars
  • OpenEvals - Open-source evaluation library for LLM and agent applications. Built by LangChain with pre-built evaluators for common use cases including RAG, agents, and structured output validation. MIT licensed. GitHub stars
  • AutoRAG - RAG AutoML tool for automatically finding optimal RAG pipelines. Evaluates and optimizes retrieval-augmented generation with AutoML-style automation for your own data and use-case. Apache 2.0 licensed. GitHub stars
  • E2B Code Interpreter - Python & JS/TS SDK for running AI-generated code in secure isolated sandboxes. Essential infrastructure for evaluating code-generating LLMs with safe execution environments. Apache 2.0 licensed. GitHub stars
  • SimpleEvals (OpenAI) - Lightweight library for evaluating language models with transparent accuracy numbers. Reference implementations for MMLU, GPQA, MATH, HumanEval, MGSM, DROP, and SimpleQA benchmarks. MIT licensed. GitHub stars
  • EvalScope (ModelScope) - Streamlined and customizable framework for efficient large model (LLM, VLM, AIGC) evaluation and performance benchmarking. One-stop evaluation solution with 80+ benchmarks. Apache 2.0 licensed. GitHub stars
  • Harbor - Framework for running agent evaluations and creating/using RL environments. Evaluate arbitrary agents like Claude Code, OpenHands, and Codex CLI. Build and share benchmarks and environments. Apache 2.0 licensed. GitHub stars

High-quality Open Datasets & Data Tools

  • Hugging Face Datasets - Largest open repository of datasets. GitHub stars
  • Cleanlab - Data-centric AI package for automatically finding and fixing issues in datasets. Detects label errors, outliers, and ambiguous examples in ML datasets. Apache 2.0 licensed. GitHub stars
  • FineWeb / FineWeb-2 (Hugging Face) - Curated 15T+ token web dataset for pre-training.
  • OSWorld - Multimodal agent benchmark dataset. GitHub stars

10. AI Safety, Alignment & Interpretability

Tools for alignment, interpretability, safety evaluation, and adversarial testing.

Safety Evaluation Frameworks

  • AgentOps - Python SDK for AI agent monitoring, LLM cost tracking, benchmarking, and evaluation. Integrates with CrewAI, Agno, OpenAI Agents SDK, LangChain, Autogen, AG2, and CamelAI. MIT licensed. GitHub stars
  • Bloom - Open-source agentic framework for automated behavioral evaluations of frontier AI models. Generates targeted evaluation suites to probe LLMs for specific behaviors (sycophancy, self-preservation, political bias, etc.) with quantitative elicitation rates. From Anthropic's safety research team. MIT licensed. GitHub stars

Alignment & RLHF Tools

Interpretability & Explainability

  • interpret (Microsoft) - Fit interpretable models and explain blackbox machine learning with state-of-the-art explainability techniques including Explainable Boosting Machines and SHAP-based explanations. GitHub stars
  • TransformerLens - Gold-standard for mechanistic interpretability. GitHub stars
  • SAELens - Sparse autoencoders for interpretable features. GitHub stars
  • nnsight - Library for inspecting, tracing, and intervening on neural network internals at scale. GitHub stars
  • Captum - PyTorch's official interpretability library. GitHub stars
  • EasyEdit - Easy-to-use knowledge editing framework for LLMs. Enables precise modification of model knowledge and behavior to correct hallucinations or outdated information. ACL 2024. MIT licensed. GitHub stars
  • AIX360 - Comprehensive AI explainability toolkit with interpretability algorithms for data and machine learning models. Includes TED, BRCG, and ProtoNN methods for diverse explanation needs. Apache 2.0 licensed. GitHub stars
  • ELI5 - Library for debugging/inspecting machine learning classifiers and explaining their predictions. Supports scikit-learn, XGBoost, LightGBM, and more with feature importance and explanation visualizations. MIT licensed. GitHub stars
  • Shapash - User-friendly explainability library for transparent ML models. Beautiful visualizations with explicit labels that everyone can understand. Generates web reports and integrates with SHAP/LIME. Apache 2.0 licensed. GitHub stars

Fairness & Bias Mitigation

  • AI Fairness 360 - Comprehensive toolkit for detecting, understanding, and mitigating unwanted algorithmic bias in datasets and ML models. GitHub stars
  • Fairlearn - Python package to assess and improve fairness of machine learning models. Provides metrics for disparity assessment and algorithms for unfairness mitigation with scikit-learn integration. MIT licensed. GitHub stars

Adversarial & Red-teaming Tools

  • PyRIT (Microsoft) - Python Risk Identification Tool for generative AI. Microsoft's open-source framework for automated red teaming with multi-modal attack support, crescendo strategies, and 100+ operations experience. MIT licensed. GitHub stars
  • Heretic - Open-source system for automatic censorship and robustness suppression removal in language-model outputs. GitHub stars
  • Agentic Security - Agentic LLM vulnerability scanner and AI red teaming kit with multi-step attack simulation and automated security probing. Apache 2.0 licensed. GitHub stars
  • NeMo Guardrails (NVIDIA) - Programmable guardrails toolkit for LLM-based conversational systems. Uses Colang DSL to define safety rules, dialog flows, and content boundaries. Integrates with LangChain, LangGraph, and LlamaIndex for production deployments. Apache 2.0 licensed. GitHub stars
  • Guardrails AI - Input/output validation framework for building reliable AI applications. Detects and mitigates risks through composable validators for PII, toxicity, prompt injection, and structured output validation. Features Guardrails Hub with 50+ pre-built validators. Apache 2.0 licensed. GitHub stars
  • Detoxify - Trained models and code to predict toxic comments on all 3 Jigsaw Toxic Comment Challenges. Built using PyTorch Lightning and Transformers for toxicity, severe toxicity, obscene, threat, insult, identity attack, and sexual explicit content detection. Apache 2.0 licensed. GitHub stars
  • RedAmon - AI-powered agentic red team framework that automates offensive security operations from reconnaissance to exploitation to post-exploitation with zero human intervention. Integrates multiple security tools for comprehensive penetration testing. MIT licensed. GitHub stars
  • CAI - Cybersecurity AI framework for semi- and fully-automating offensive and defensive security tasks. Purpose-built for cybersecurity use cases with agent-based architecture for vulnerability assessment and security operations. MIT licensed. GitHub stars
  • AI-Infra-Guard (Tencent) - Full-stack AI Red Teaming platform securing AI ecosystems via OpenClaw Security Scan, Agent Scan, Skills Scan, MCP scan, AI Infra scan and LLM jailbreak evaluation. Apache 2.0 licensed. GitHub stars
  • PentestAgent (GH05TCREW) - AI agent framework for black-box security testing, supporting bug bounty, red-team, and penetration testing workflows. MIT licensed. GitHub stars
  • Superagent - Protects AI applications against prompt injections, data leaks, and harmful outputs. Embed safety directly into your app and prove compliance to your customers. MIT licensed. GitHub stars
  • Anthropic Sandbox Runtime - Portable sandbox execution environment for AI agents with constrained filesystem and network boundaries, designed to reduce blast radius in tool-use and LLM autonomy tests. GitHub stars
  • SchemaBrain - An open-source schema intelligence and safety layer (like Cloudflare) between AI agents and databases. Exposes a read-only Model Context Protocol (MCP) interface with PII masking, structured query recovery, and tamper-evident SHA-256 audit logs. Apache 2.0 licensed. GitHub stars
  • Anthropic Cybersecurity Skills - Structured library of 754 cybersecurity skills mapped to five frameworks including MITRE ATT&CK and NIST CSF 2.0, compatible with Claude Code, Cursor, and agentskills.io. Apache 2.0 licensed. GitHub stars
  • Strix - Autonomous AI-powered penetration testing agent that identifies vulnerabilities and validates them with proof-of-concept exploits. Apache 2.0 licensed. GitHub stars

Responsible AI Development

  • Responsible AI Toolbox - Suite of tools providing model and data exploration, assessment interfaces and libraries for understanding AI systems. Enables developers to develop and monitor AI more responsibly with better data-driven actions. MIT licensed. GitHub stars
  • Agent Governance Toolkit - Security and compliance toolkit for autonomous agents with policy enforcement, zero-trust identity, and sandboxed execution to reduce operational risk. MIT licensed. GitHub stars

Privacy-Preserving AI

  • Presidio (Microsoft) - SDK for detecting, redacting, masking, and anonymizing sensitive personally identifiable information (PII) across text and images. MIT licensed. GitHub stars

11. Specialized Domains

Weather & Climate AI

  • GraphCast - Deep learning weather forecasting model from Google DeepMind. State-of-the-art AI weather prediction with 10-day global forecasts matching or exceeding traditional numerical methods. Apache 2.0 licensed. GitHub stars

Scientific AI & Physics ML

  • NVIDIA Modulus - Open-source deep learning framework for physics-informed machine learning (Physics-ML). Build, train, and fine-tune models for AI4science and engineering applications using state-of-the-art SciML methods. Apache 2.0 licensed. GitHub stars
  • TorchGeo - PyTorch domain library for geospatial data. Datasets, samplers, transforms, and pre-trained models for multispectral satellite imagery and remote sensing. First library with pre-trained models for Sentinel-2 bands. MIT licensed. GitHub stars
  • Astropy - Core library for astronomy and astrophysics in Python. Comprehensive tools for celestial coordinates, FITS I/O, cosmological calculations, and data analysis for professional astronomy. BSD-3-Clause licensed. GitHub stars

Scientific AI & Drug Discovery

  • Boltz - Open-source biomolecular interaction prediction models. Boltz-1 was the first fully open source model to approach AlphaFold3 accuracy; Boltz-2 adds binding affinity prediction for drug discovery. MIT licensed. GitHub stars
  • Protenix - High-accuracy open-source biomolecular structure prediction model from ByteDance. First fully open-source model to outperform AlphaFold3 across diverse benchmarks with Apache 2.0 licensing for both academic and commercial use. GitHub stars
  • DeepChem - Democratizing deep learning for drug discovery, quantum chemistry, materials science, and biology. High-quality open-source toolchain with 50+ models and extensive tutorials. MIT licensed. GitHub stars

Probabilistic Programming & Bayesian ML

  • PyMC - Modern, comprehensive probabilistic programming framework in Python. Bayesian modeling with advanced MCMC sampling, variational inference, and seamless integration with ArviZ for visualization. Apache 2.0 licensed. GitHub stars
  • ArviZ - Exploratory analysis of Bayesian models with Python. Comprehensive visualization and diagnostics for probabilistic models, supporting PyMC, Pyro, Stan, and other PPLs. Apache 2.0 licensed. GitHub stars
  • Stanza - Stanford NLP Python library for 100+ human languages. State-of-the-art neural pipelines for tokenization, NER, parsing, and sentiment analysis with pre-trained models. Apache 2.0 licensed. GitHub stars

Medical Imaging & Healthcare AI

  • MONAI - Medical Open Network for AI. End-to-end framework for healthcare imaging with state-of-the-art, production-ready training workflows. Apache 2.0 licensed. GitHub stars
  • nnU-Net - Self-configuring deep learning method for medical image segmentation. Automatically adapts to any dataset without manual parameter tuning. Widely adopted as the standard baseline for biomedical segmentation challenges. Apache 2.0 licensed. GitHub stars
  • OpenMed - Local-first healthcare AI framework and application for clinical text de-identification, entity extraction, and on-device specialized model serving. Apache 2.0 licensed. GitHub stars

Creative Writing & Narrative AI

  • Alex - Open-source desktop novel-writing engine and AI story scaffold with Tauri, FastAPI, SQLite, and plot-generation workflows. MIT licensed. GitHub stars

Game AI & Simulations

  • Unity ML-Agents - Toolkit for training intelligent agents in games and simulations using deep reinforcement learning. Enables NPC behavior control, automated testing, and game design evaluation. Apache 2.0 licensed. GitHub stars
  • Tianshou - An elegant PyTorch deep reinforcement learning library with clean API design and comprehensive algorithm implementations. Supports both single-agent and multi-agent RL with GPU acceleration. MIT licensed. GitHub stars
  • RL Baselines3 Zoo - A training framework for Stable Baselines3 reinforcement learning agents with hyperparameter optimization, pre-trained agents, and extensive benchmark environments. MIT licensed. GitHub stars
  • skrl - Modular reinforcement learning library implemented in PyTorch, JAX, and NVIDIA Warp with support for Gymnasium, NVIDIA Isaac Lab, MuJoCo Playground, and other environments. MIT licensed. GitHub stars
  • Finetrainers - Scalable and memory-optimized training of diffusion models from Hugging Face. Supports LoRA and full fine-tuning for video and image generation models. Apache 2.0 licensed. GitHub stars
  • OpenSpiel - Collection of environments and algorithms for research in general reinforcement learning and search/planning in games from Google DeepMind. Apache 2.0 licensed. GitHub stars

Finance & Quantitative AI

  • OpenBB - Financial data platform for analysts, quants and AI agents. Open-source investment research infrastructure with extensive data integrations. AGPL-3.0 licensed. GitHub stars
  • FinGPT - Open-source financial large language models. Democratizing financial AI with data-centric training pipeline and multiple model releases for trading, analysis, and robo-advising. MIT licensed. GitHub stars
  • FinRL - Financial reinforcement learning framework for quantitative trading. Deep RL library for stock trading, portfolio allocation, and market execution with pre-built environments and benchmarks. MIT licensed. GitHub stars
  • Qlib - AI-oriented quantitative investment platform from Microsoft. Supports diverse ML modeling paradigms including supervised learning, market dynamics modeling, and RL. Now equipped with RD-Agent for automated R&D process. MIT licensed. GitHub stars
  • FinRobot - Open-source AI agent platform for financial analysis using LLMs. Multi-agent system with specialized agents for trading, analysis, and research. Apache 2.0 licensed. GitHub stars
  • Kronos - Foundation model for financial candlesticks (K-lines) pre-trained on multi-dimensional market data across global exchanges. MIT licensed. GitHub stars
  • Daily Stock Analysis - LLM-powered multi-market stock analysis system providing automated decision dashboard reports and real-time market insights. MIT licensed. GitHub stars
  • Vibe-Trading - Open-source personal trading agent and research autopilot platform featuring multi-agent swarms, quantitative backtesting, and broker connectors. MIT licensed. GitHub stars
  • AI Hedge Fund - Multi-agent system simulating an AI-powered hedge fund that utilizes specialized investor agent personalities to make trading decisions. MIT licensed. GitHub stars

Computer Vision

  • OpenCV - World's most widely used computer vision library. GitHub stars
  • Ultralytics YOLO - State-of-the-art real-time object detection. GitHub stars
  • Detectron2 - High-performance object detection library. GitHub stars
  • CVAT - Industry-leading data annotation platform for computer vision. Interactive video and image annotation tool used by tens of thousands of teams for machine learning at any scale. GitHub stars
  • SAM 2 - Promptable image and video segmentation model with released checkpoints and training code. GitHub stars
  • Kornia - Differentiable computer vision library. GitHub stars
  • Roboflow Supervision - Reusable computer-vision utilities for detection, tracking, and segmentation pipelines in Python. GitHub stars
  • torchaudio - PyTorch audio processing library. Comprehensive toolkit for audio I/O, transformations, and deep learning with support for speech recognition, TTS, and audio classification. BSD-2-Clause licensed. GitHub stars
  • MediaPipe - Cross-platform multimodal pipelines. GitHub stars
  • OpenEyes - Hardware-agnostic robot vision framework with world models for predictive intelligence on edge devices. GitHub stars

3D Vision & Point Cloud Processing

  • Open3D - Modern library for 3D data processing with Python and C++ APIs. Core features include 3D data structures, processing algorithms, scene reconstruction, surface alignment, 3D visualization, and GPU acceleration. MIT licensed. GitHub stars
  • Point Cloud Library (PCL) - Standalone, large-scale open project for 2D/3D image and point cloud processing. Comprehensive algorithms for filtering, feature estimation, surface reconstruction, registration, model fitting, and segmentation. BSD licensed. GitHub stars
  • PyTorch3D - FAIR's library of reusable components for deep learning with 3D data. Provides efficient 3D operators, differentiable rendering, and mesh processing tools integrated with PyTorch. BSD licensed. GitHub stars
  • RTAB-Map - Real-Time Appearance-Based Mapping library for RGB-D, Stereo and LiDAR SLAM. Graph-based SLAM approach with incremental appearance-based loop closure detection for large-scale and long-term operation. BSD licensed. GitHub stars
  • MoveIt 2 - Open source robotics manipulation framework for ROS 2. Motion planning, manipulation, 3D perception, kinematics, control, and navigation for robotic arms. BSD-3-Clause licensed. GitHub stars
  • LingBot-Map - Feed-forward 3D foundation model for transforming and reconstructing streaming 3D scenes. Apache 2.0 licensed. GitHub stars

Reinforcement Learning & Robotics

  • Stable-Baselines3 - Production-ready RL algorithms. GitHub stars
  • Isaac Lab - GPU-accelerated robot learning framework. GitHub stars
  • MuJoCo - General-purpose physics simulator for robotics, biomechanics, and ML research. High-fidelity contact dynamics with native Python and C++ bindings. Apache 2.0 licensed. GitHub stars
  • Gymnasium (ex-OpenAI Gym) - Standard RL environment API. GitHub stars
  • OpenEnv - End-to-end sandbox execution environment framework for agentic reinforcement learning training built on Gymnasium-compatible APIs. GitHub stars
  • JaxMARL - Multi-agent reinforcement learning library with JAX-accelerated environments and baselines. GitHub stars

Time Series & Scientific AI

  • Time Series Library (TSLib) - Comprehensive benchmark for time-series models. GitHub stars
  • Chronos (Amazon) - Pretrained foundation models for time-series forecasting. GitHub stars
  • GluonTS (AWS Labs) - Probabilistic time series modeling with deep learning. Powers Amazon SageMaker forecasting with PyTorch and MXNet backends. Apache 2.0 licensed. GitHub stars
  • AutoTS - Automated time series forecasting with broad model selection, ensembling, anomaly detection, and holiday effects. Designed for production deployment with minimal setup. GitHub stars
  • TimesFM (Google Research) - Pretrained decoder-only foundation model developed by Google Research for time-series forecasting, supporting up to 16k context length, covariate support, and Flax / PyTorch backends. Apache 2.0 licensed. GitHub stars

Edge / On-device AI

  • ExecuTorch - PyTorch runtime and toolchain for deploying AI models on mobile, embedded, and edge devices. GitHub stars
  • OpenVINO - Intel's toolkit for edge deployment. GitHub stars
  • Apache TVM - Open Machine Learning Compiler Framework. Universal deployment to bring models into minimum deployable modules that can be embedded and run everywhere from datacenter to edge devices. Apache 2.0 licensed. GitHub stars
  • NCNN - High-performance neural network inference framework optimized for mobile platforms. No third-party dependencies, cross-platform, and runs faster than all known open-source frameworks on mobile CPU. Powers Tencent apps including QQ, WeChat, and Pitu. BSD-3-Clause licensed. GitHub stars
  • MNN - Blazing-fast, lightweight inference engine battle-tested by Alibaba. Supports inference and training with industry-leading on-device performance. Powers high-performance LLMs and Edge AI with MNN-LLM runtime. Apache 2.0 licensed. GitHub stars
  • RuView - Real-time spatial intelligence, vital sign monitoring, and human pose estimation using commodity WiFi signals and neural networks. MIT licensed. GitHub stars

Legal AI & Contract Analysis

  • OpenContracts - Self-hosted document annotation platform for legal AI. Semantic search, contract analysis, version control, and MCP integration for building legal knowledge bases. AGPL-3.0 licensed. GitHub stars

Autonomous Driving & Robotics Simulators

  • CARLA - Open-source simulator for autonomous driving research. High-fidelity simulation of urban environments with realistic physics, sensors, and traffic scenarios. Widely used for training and validating self-driving algorithms. MIT licensed. GitHub stars
  • Webots - Open-source multi-platform robot simulator providing a complete development environment for modeling, programming, and simulating robots, vehicles, and mechanical systems. Used in education, research, and industry. Apache 2.0 licensed. GitHub stars
  • Habitat-Sim - High-performance physics-enabled 3D simulator for embodied AI research. Supports 3D scans of indoor/outdoor spaces, CAD models, and configurable sensors. Powers Meta's embodied AI research. MIT licensed. GitHub stars
  • Genesis World - General-purpose simulation platform for embodied AI and robotics research with flexible scenes, sensors, and agent workflows. Apache 2.0 licensed. GitHub stars
  • OpenPilot - Operating system for robotics. Currently upgrades driver assistance systems on 300+ supported cars. End-to-end autonomous driving stack with open-source hardware and software. MIT licensed. GitHub stars
  • Autoware - World's leading open-source software project for autonomous driving. Complete stack from localization and object detection to route planning and control. Used by 50+ companies globally. Apache 2.0 licensed. GitHub stars

12. User Interfaces & Self-hosted Platforms

Local AI Chat UIs & Personal Assistants

  • OpenClaw - Local-first personal AI assistant with multi-channel integrations and full agentic task execution. GitHub stars
  • Open WebUI - Most popular self-hosted ChatGPT-style interface. GitHub stars
  • text-generation-webui - Web UI for running local LLMs with multiple backends, extensions, and model formats. GitHub stars
  • LobeChat - Sleek modern chat UI. GitHub stars
  • LibreChat - Feature-packed multi-LLM interface. GitHub stars
  • HuggingChat (self-hosted) - Official open-source codebase for HuggingChat. GitHub stars
  • Khoj - Self-hostable personal AI assistant for search, chat, automation, and workflows over local and web data. GitHub stars
  • Newelle - GNOME/Linux desktop virtual assistant with integrated file editor, global hotkeys, and profile manager. GitHub stars
  • NextChat - Light and fast AI assistant supporting Web, iOS, macOS, Android, Linux, and Windows. One-click deploy with multi-model support. MIT licensed. GitHub stars
  • big-AGI - AI suite for power users with multi-model "Beam" chats, AI personas, voice, text-to-image, code execution, and PDF import. MIT licensed. GitHub stars
  • Morphic - AI-powered search engine with a generative UI. Supports multiple AI providers (OpenAI, Anthropic, Google, Ollama) and search providers (Tavily, SearXNG, Brave). Features smart search modes, widgets, and image/video search. Apache 2.0 licensed. GitHub stars
  • Leon - Your open-source personal assistant. Built around tools, context, memory, and agentic execution. Self-hosted, privacy-focused, and extensible. MIT licensed. GitHub stars
  • Willow - Open source, local, and self-hosted Amazon Echo/Google Home competitive voice assistant alternative with hardware support. Apache-2.0 licensed. GitHub stars
  • CoPaw - Your Personal AI Assistant; easy to install, deploy on your own machine or on the cloud; supports multiple chat apps with easily extensible capabilities. Apache-2.0 licensed. GitHub stars
  • Smart2Brain - Privacy-focused Obsidian plugin for AI-powered second brain functionality. Chat with your notes using local or remote LLMs including Ollama and OpenAI. MIT licensed. GitHub stars
  • Casibase - Open-source enterprise-level AI knowledge base and agent management platform. Supports multiple LLM providers, RAG, and team collaboration. Apache-2.0 licensed. GitHub stars
  • BionicGPT - On-prem ChatGPT replacement for teams with assistants, RAG, access controls, auditing, and enterprise deployment features. GitHub stars
  • OpenHuman - A local-first personal assistant and memory harness with Obsidian integration, model routing, and automatic integration sync. GPL-3.0 licensed. GitHub stars
  • Open-LLM-VTuber - Talk to any LLM with hands-free voice interaction, voice interruption, and Live2D talking face running locally across platforms. MIT licensed. GitHub stars
  • AIRI - Self-hosted cyber companion and VTuber platform with Live2D character rendering, real-time voice chat, and game integration capabilities. MIT licensed. GitHub stars
  • Next AI Draw.io - Next.js web application that integrates AI capabilities with draw.io diagrams to create and edit diagrams through natural language. Apache-2.0 licensed. GitHub stars

Full Self-hosted AI Platforms

  • AnythingLLM - All-in-one RAG + agents platform. GitHub stars
  • Flowise - Drag-and-drop LLM app builder. GitHub stars
  • LocalAI - Open-source AI engine running LLMs, vision, voice, image, and video models on any hardware. Self-hosted OpenAI-compatible API. MIT licensed. GitHub stars
  • Onyx - Full-featured AI platform with Chat, RAG, Agents, and Actions. 40+ document connectors and every LLM support. MIT licensed (Community Edition). GitHub stars
  • biniou - Self-hosted webUI for 30+ generative AI models. Generate multimedia content with AI on your own computer, even without dedicated GPU (8GB RAM minimum). Works offline once deployed. GPL-3.0 licensed. GitHub stars
  • CoAI - Next-generation multi-tenant AI one-stop solution with built-in admin and billing system. Enterprise-grade unified LLM gateway supporting 200+ models and 35+ providers. Apache-2.0 licensed. GitHub stars
  • Plane - Open-source Jira, Linear, Monday, and ClickUp alternative. AI-powered project management platform with intelligent task triage, sprint planning, and automated workflows. AGPL-3.0 licensed. GitHub stars
  • RAG Web UI - Intelligent dialogue system based on RAG technology. Build intelligent Q&A systems on your own knowledge base with modern web interface. Apache-2.0 licensed. GitHub stars
  • LibreTranslate - Self-hosted machine translation API powered by Argos Translate, offering a free and offline-capable alternative to proprietary translation services. AGPL-3.0 licensed. GitHub stars

Desktop & Mobile AI Apps

  • Jan - Local-first AI app framework. GitHub stars
  • Cherry Studio - AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs. AGPL-3.0 licensed. GitHub stars
  • DeepChat - A smart assistant that connects powerful AI to your personal world. Built-in MCP and ACP support, multiple search engines, privacy-focused with local data storage. Apache-2.0 licensed. GitHub stars
  • SillyTavern - Highly customizable role-playing frontend. GitHub stars
  • ChatALL - Concurrently chat with multiple AI bots to discover the best answers. Desktop app for comparing ChatGPT, Claude, Gemini, and 20+ LLMs side-by-side. Apache 2.0 licensed. GitHub stars
  • Chatbox - Powerful desktop AI client for ChatGPT, Claude, and other LLMs. Cross-platform with modern UI. GPLv3 licensed (Community Edition). GitHub stars
  • Maid - Free and open-source Android app for interfacing with llama.cpp models locally and remote APIs (Anthropic, DeepSeek, Mistral, Ollama, OpenAI). MIT licensed. GitHub stars
  • Dive - Open-source MCP Host Desktop Application with dual Tauri/Electron architecture. Seamlessly integrates with any LLMs supporting function calling. MIT licensed. GitHub stars
  • PocketPal AI - Open-source app that brings small language models directly to your phone. Run AI 100% privately on iOS and Android with no cloud required. MIT licensed. GitHub stars
  • Hermes Desktop - Desktop companion application for installing, configuring, and chatting with Hermes Agent. MIT licensed. GitHub stars
  • Craft Agents - Open-source desktop and web interface for agentic workflows, featuring built-in MCP support, customizable API connections, and session sharing. Apache-2.0 licensed. GitHub stars
  • Meetily - Privacy-first local AI meeting assistant for real-time transcription and summary generation. MIT licensed. GitHub stars
  • OpenSuperWhisper - macOS dictation application providing real-time audio transcription and drag-and-drop file transcription using Whisper and Parakeet models. MIT licensed. GitHub stars
  • T3 Code - Minimal web GUI and desktop app for interacting with coding agents like Codex, Claude Code, Cursor, and OpenCode. MIT licensed. GitHub stars

Agent & Voice Infrastructure

  • Speech to Speech - Low-latency, fully modular voice-agent pipeline integrating voice activity detection, speech-to-text, LLMs, and text-to-speech via an OpenAI Realtime-compatible WebSocket API. Apache 2.0 licensed. GitHub stars
  • LiveKit Agents - Framework for building realtime voice AI agents with WebRTC transport, STT-LLM-TTS pipelines, and production-grade orchestration. Used by Salesforce Agentforce and Tesla. Apache-2.0 licensed. GitHub stars
  • Pipecat - Open-source framework for voice and multimodal conversational AI. Build real-time voice agents with support for speech-to-text, LLMs, text-to-speech, and live video. BSD-2-Clause licensed. GitHub stars
  • Agent Chat UI - Web app for interacting with any LangGraph agent (Python & TypeScript) via a chat interface. Stream messages, handle interruptions, and view agent state. MIT licensed. GitHub stars

13. Developer Tools & Integrations

AI-Native IDEs & Development Environments

  • Ralph - Autonomous AI development loop for Claude Code with intelligent exit detection. Automates iterative coding workflows with self-monitoring capabilities. MIT licensed. GitHub stars
  • Nimbalyst - Desktop app for running multiple Codex and Claude Code AI sessions in parallel Git worktrees. Test, compare approaches and manage AI-assisted development workflows in one unified interface. MIT licensed. GitHub stars
  • Nezha - Code editor for the AI agents era. Run multiple Claude Code and Codex agents across projects on your machine with an intuitive interface. GPL-3.0 licensed. GitHub stars
  • Aider Desk - Platform for AI-powered software engineers. Desktop application that enhances the aider terminal experience with a modern UI. Apache 2.0 licensed. GitHub stars
  • Zed - High-performance, multiplayer code editor with built-in AI features. From the creators of Atom and Tree-sitter. Native AI agentic editing with support for any LLM provider. GPL licensed. GitHub stars
  • Code Server - Run VS Code on any machine anywhere and access it in the browser. Self-hosted cloud IDE with full extension support. MIT licensed. GitHub stars
  • Gitpod - Cloud development environment platform with automated prebuilds, ephemeral workspaces, and support for any IDE. Self-hostable with open-source core. AGPL-3.0 licensed. GitHub stars
  • Onlook - Open-source AI-first design and React editing environment for visually building and modifying frontend applications. GitHub stars
  • Daytona - Secure elastic infrastructure for running AI-generated code. Self-hosted alternative to GitHub Codespaces with support for multiple IDEs, prebuilds, and any cloud provider. AGPL-3.0 licensed. GitHub stars
  • AI Workdeck - Open-source AI-native IDE workspace for legal and document-heavy workflows — "VS Code for lawyers." Self-hosted with MCP agent orchestration, OCR, due-diligence risk flagging, evidence-chain management, WPS WebOffice integration, smart clipboard. Supports air-gapped deployment with Ollama + local storage. AGPL-3.0 licensed. GitHub stars
  • Orca - An agentic development environment (ADE) for running and orchestrating coding agents in parallel Git worktrees on desktop and mobile. MIT licensed. GitHub stars
  • Terax - Lightweight terminal-first AI-native dev workspace (ADE) featuring multi-tab terminals, a code editor with AI edit diffs, source control, and agentic workflows. Apache 2.0 licensed. GitHub stars

AI Coding Assistants (open-source)

  • Continue - Open-source AI coding autopilot for VS Code & JetBrains. GitHub stars
  • Tabby - Self-hosted AI coding assistant. GitHub stars
  • Cline - Open-source IDE coding agent that can edit files, run commands, and use tools with user approval. GitHub stars
  • Open Interpreter - Lets LLMs run code locally. GitHub stars
  • Aider - Terminal-based AI pair programmer. Edit code in your local editor and aider implements the changes. Supports multiple LLMs, voice coding, and automatic Git commits. Top scores on SWE Bench. Apache 2.0 licensed. GitHub stars
  • Kimi CLI - Kimi Code CLI agent from Moonshot AI. Terminal-based coding assistant with advanced context understanding and multi-file editing capabilities. Apache 2.0 licensed. GitHub stars
  • Qwen Code - Open-source AI agent for the terminal, optimized for Qwen series models. Multi-protocol provider support including OpenAI, Anthropic, Gemini, Alibaba Cloud, OpenRouter. Features agentic workflow with Skills and SubAgents. Apache 2.0 licensed. GitHub stars
  • DeepCode - Transforms research papers and natural language into production-ready code. AI-powered research-to-code automation tool. MIT licensed. GitHub stars
  • OpenSpec - Spec-driven development (SDD) framework and CLI tool for AI coding assistants, providing structured workflows for proposing, implementing, and archiving code changes. MIT licensed. GitHub stars
  • Spec Kit - Toolkit and CLI for Spec-Driven Development that integrates with AI coding agents to generate structured code implementations from executable specifications. MIT licensed. GitHub stars

Notebooks & Interactive Computing

  • Open Notebook - Open-source implementation of Notebook LM with multi-modal content support (PDFs, videos, audio, web pages). Features multi-speaker podcast generation, 18+ AI provider integrations, and full-text + vector search. Self-hosted with complete data sovereignty. MIT licensed. GitHub stars
  • Deta Surf - Personal AI notebook for organizing files and webpages with AI-generated notes. Local-first data storage, open data formats, and open model choice including local models. Cross-platform desktop app for research and thinking workflows. Apache 2.0 licensed. GitHub stars
  • FilePilot AI - Local-first file intelligence app, CLI, and MCP server for searching, summarizing, tagging, deduplicating, and safely organizing local files for AI agent workflows. MIT licensed. GitHub stars
  • Quarto - Open-source scientific and technical publishing system built on Pandoc. Create dynamic content with Python, R, Julia, and Observable. MIT licensed. GitHub stars
  • Drawdata - Draw datasets from within Python notebooks. Interactive data visualization tool for creating and editing datasets directly in Jupyter environments. MIT licensed. GitHub stars
  • Deepnote - Drop-in replacement for Jupyter with AI-first design, sleek UI, and native data integrations. Use Python, R, and SQL locally, then scale to Deepnote cloud for collaboration and deployable data apps. Apache 2.0 licensed. GitHub stars
  • Zasper - High-performance IDE for Jupyter Notebooks built with Go. Up to 5x less CPU and 40x less RAM than JupyterLab. Implements Jupyter's wire protocol with massive concurrency support. AGPL-3.0 licensed. GitHub stars

IDE Plugins & Extensions

  • Archify - Diagram-generation agent skill for Claude Code, Codex, and OpenCode that converts natural language into interactive system, workflow, sequence, data flow, and lifecycle diagrams. MIT licensed. GitHub stars
  • Graphify - AI coding assistant skill that maps a codebase and resource directory into an interactive knowledge graph for local query and navigation. MIT licensed. GitHub stars
  • llama.vim - Local LLM-powered code completion plugin for Vim/Neovim using llama.cpp. Fast, privacy-first, no API key needed. GitHub stars
  • CodeCompanion.nvim - AI-powered coding assistant for Neovim. Inline code generation, chat, actions, and tool use with support for multiple LLM providers. GitHub stars
  • ProxyAI - Leading open-source AI copilot for JetBrains IDEs. Connect to any model in any environment with auto-apply, image chat, file references, web search, and customizable personas. Apache 2.0 licensed. GitHub stars
  • avante.nvim - Neovim plugin that brings Cursor-like AI IDE features to Vim. Edit code with natural language, generate code from context, and chat with AI about your codebase. Apache 2.0 licensed. GitHub stars
  • Serena - Powerful MCP toolkit for coding agents providing semantic retrieval and editing capabilities. Integrates language servers for IDE-level code understanding. MIT licensed. GitHub stars
  • vim-ai - AI-powered code assistant for Vim and Neovim. Generate code, edit text, and have interactive conversations with GPT models. Supports custom roles, vision capabilities, and any OpenAI-compatible API. MIT licensed. GitHub stars
  • windsurf.vim - Free, ultrafast Copilot alternative for Vim and Neovim. AI-powered code completion with low latency and large context window. MIT licensed. GitHub stars
  • Jupyter AI - Chat and code generation inside notebooks. GitHub stars
  • Minuet AI - Neovim plugin offering code completion as-you-type from popular LLMs including OpenAI, Gemini, Claude, Ollama, Llama.cpp, Codestral, and more. GPL-3.0 licensed. GitHub stars
  • Peekaboo - macOS CLI & MCP server enabling AI agents to capture screenshots and automate UI interactions. Visual question answering through local or remote AI models. MIT licensed. GitHub stars
  • Skills - A collection of custom productivity and engineering skills for Claude Code and other AI coding agents. MIT licensed. GitHub stars
  • planning-with-files - Persistent file-based planning skill for AI coding agents to survive context loss and restarts with a deterministic completion gate. MIT licensed. GitHub stars
  • Stop Slop - A skill file for Claude Code and other agents to remove AI writing patterns and tells from generated prose. MIT licensed. GitHub stars
  • Understand Anything - Turns subdirectories, codebases, or knowledge bases into an interactive, AI-navigable knowledge graph and dashboard. MIT licensed. GitHub stars
  • Knowledge Work Plugins (Anthropic) - Collection of role-specific plugins and sub-agents for Claude Cowork and Claude Code. Apache 2.0 licensed. GitHub stars
  • Cursor Plugins - Official Cursor plugins for developer tools, workflows, and SaaS integrations. MIT licensed. GitHub stars
  • Claude Plugins Marketplace - Official, Anthropic-managed directory of high-quality plugins for Claude Code. Apache 2.0 licensed. GitHub stars
  • Agent Toolkit for AWS - Official AWS-supported MCP servers, skills, and plugins to help AI coding agents build, deploy, and manage applications on AWS. Apache 2.0 licensed. GitHub stars
  • Caveman - Skill and setup script for Claude Code, Codex, Gemini, Cursor, and other coding agents that reduces token output by instructing agents to communicate in concise, caveman-style prose. MIT licensed. GitHub stars
  • Chrome DevTools MCP - Official Model Context Protocol (MCP) server from Google that enables coding agents to control and inspect a live Chrome browser for automation, debugging, and web performance analysis. Apache 2.0 licensed. GitHub stars
  • Codex Plugin for Claude Code - Official integration plugin for Claude Code that enables developers to run Codex code reviews, delegate tasks, and manage background coding jobs. Apache 2.0 licensed. GitHub stars
  • Unity MCP - Model Context Protocol (MCP) server bridging AI assistants with the Unity Editor to automate asset, scene, and script workflows. MIT licensed. GitHub stars
  • .NET Agent Skills - Curated set of skills, custom agents, and plugins to assist AI coding agents with .NET and C# development. MIT licensed. GitHub stars
  • Claude Video - A skill and plugin that enables AI coding assistants to view, transcribe, and analyze video content. MIT licensed. GitHub stars
  • Stitch Design Skills - A library of agent skills and plugins designed to work with the Stitch MCP server, following the Agent Skills open standard. Apache 2.0 licensed. GitHub stars
  • Impeccable - Design guidance skill, CLI tool, and detector rules to improve user interface design generated by AI coding agents. Apache 2.0 licensed. GitHub stars
  • Hallmark - Anti-AI-slop design skill and ruleset for Claude Code, Cursor, and Codex to prevent generic, AI-generated layouts. MIT licensed. GitHub stars

UI Components & Chat Libraries

  • Assistant UI - React/TypeScript library for building production-grade AI chat interfaces. Drop-in components for streaming messages, tool calls, and multi-modal inputs. GitHub stars
  • Deep Chat - Fully customizable AI chatbot component for your website. Supports OpenAI, direct API services, and custom endpoints. MIT licensed. GitHub stars
  • CopilotKit - Best-in-class SDK for building full-stack agentic applications, Generative UI, and chat applications. Creators of the AG-UI Protocol adopted by Google, LangChain, AWS, and Microsoft. MIT licensed. GitHub stars

CLI Tools & API Clients

  • Ruler - Central AI agent rule registry. Manages and distributes rules for AI coding agents across projects. MIT licensed. GitHub stars
  • PR-Agent (Qodo) - AI-powered code review agent for GitHub, GitLab, Bitbucket, and Azure DevOps. Automated PR analysis, improvement suggestions, and multi-platform deployment via CLI, GitHub Actions, or webhooks. AGPL-3.0 licensed. GitHub stars
  • LLM (Simon Willison) - CLI tool and Python library for interacting with dozens of LLMs via remote APIs or locally. Extensible plugin ecosystem, SQLite logging. Apache 2.0 licensed. GitHub stars
  • AIChat - All-in-one LLM CLI in Rust featuring Shell Assistant, Chat-REPL, RAG, AI Tools & Agents. Supports 20+ providers. MIT/Apache 2.0 licensed. GitHub stars
  • aicommits - CLI that writes your Git commit messages for you with AI. Never write a commit message again. Supports multiple providers including OpenAI, Groq, xAI, Ollama, and LM Studio. MIT licensed. GitHub stars
  • Codex CLI - OpenAI's lightweight coding agent that runs in your terminal. Code generation, file editing, and command execution with approval. Apache 2.0 licensed. GitHub stars
  • Repomix - Powerful tool that packs your entire repository into a single AI-friendly file. Perfect for feeding codebases to LLMs with smart filtering and token counting. MIT licensed. GitHub stars
  • GitIngest - Replace 'hub' with 'ingest' in any GitHub URL to get a prompt-friendly extract of a codebase. Optimized for Python ecosystem and data science workflows. MIT licensed. GitHub stars
  • Instructor - Python library for extracting structured, validated data from LLMs using Pydantic models. Handles validation, retries, and error handling with 15+ provider support. MIT licensed. GitHub stars
  • Mirascope - Python toolkit for building LLM applications with automatic versioning, tracing, and cost tracking. The "LLM Anti-Framework" for developers who want control. MIT licensed. GitHub stars
  • Context7 - Up-to-date code documentation for LLMs and AI code editors. Fetches latest docs and code examples directly into LLM context via MCP. Eliminates hallucinated APIs. MIT licensed. GitHub stars
  • Claude Squad - Manage multiple AI terminal agents like Claude Code, Codex, OpenCode, and Amp. Terminal multiplexer for AI coding agents with session management and parallel execution. AGPL-3.0 licensed. GitHub stars
  • Herdr - Terminal agent multiplexer and workspace manager with mouse-native split-panes and automatic agent state detection. AGPL-3.0 licensed. GitHub stars
  • agenttrace - Local-first TUI for observing AI coding agent sessions across Claude Code, Codex CLI, Gemini CLI, Aider, Cursor exports, OpenCode, and more. GitHub stars
  • agentsview - Local-first session intelligence and cost analytics dashboard for AI coding agents, supporting Claude Code, Codex, and other tools. MIT licensed. GitHub stars
  • Uni-CLI - Self-repairing CLI catalog that exposes web, desktop, Electron, and bridge tools as deterministic commands for AI agents. GitHub stars
  • OpenChamber Mobile Bridge - OpenCode/OpenChamber helper for exposing devcontainer-based coding sessions to private Tailscale mobile access through a host bridge. MIT licensed. GitHub stars
  • DesktopCommander MCP - MCP server for Claude providing terminal control, file system search, and diff file editing capabilities. Enables autonomous code editing through Model Context Protocol. MIT licensed. GitHub stars
  • Claude Code Action - GitHub Action for running Claude Code in PR and issue workflows with approval-aware automation and coding assistance. GitHub stars
  • OfficeCLI - Office suite purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files without external Office installations. Apache 2.0 licensed. GitHub stars

SDKs & API Development Tools

  • Vercel AI SDK - Provider-agnostic TypeScript toolkit for building AI-powered applications and agents. Unified API for OpenAI, Anthropic, Google, and 20+ providers with first-class streaming, tool-calling, and structured output support. Apache 2.0 licensed. GitHub stars
  • GitHub Copilot SDK - Multi-platform SDK for integrating GitHub Copilot Agent into apps and services. Production-tested agent runtime with planning, tool invocation, and context management. Build Copilot-style agents without writing your own orchestration. MIT licensed. GitHub stars
  • IBM MCP Context Forge - Gateway and registry for MCP/A2A/REST APIs with unified discovery, routing, and guardrails for production agent integrations. GitHub stars
  • Fern - Open-source SDK generator for REST APIs. Generate type-safe API clients in TypeScript, Python, Go, Java, and more from OpenAPI specs. Powers SDKs for companies like OpenAI, Anthropic, and Cloudflare. Apache 2.0 licensed. GitHub stars

Testing & Debugging Tools

  • no-mistakes - A local Git proxy and validation pipeline that runs AI-driven checks and applies fixes in a temporary worktree before forwarding pushes and opening clean PRs. MIT licensed. GitHub stars

Prompt Engineering & Management

  • Helicone - Open-source LLM observability platform with prompt management, versioning, and experimentation. One-line integration, YC W23 company. Apache 2.0 licensed. GitHub stars
  • GEPA - Reflective prompt evolution optimizer using natural language reflection and Pareto frontier learning. Outperforms reinforcement learning for prompt optimization. Integrated with DSPY and MLflow. MIT licensed. GitHub stars

14. Resources & Learning

Papers with Open Implementations

Communities, Forums & Newsletters

Educational Resources & Courses

  • AI Engineering from Scratch (rohitg00) - Comprehensive curriculum covering machine learning, deep learning, NLP, computer vision, and agents by implementing them from scratch. MIT licensed. GitHub stars
  • Prompt Engineering Guide (DAIR-AI) - Comprehensive guides, papers, lessons, and notebooks for prompt engineering, context engineering, RAG, and AI Agents. The definitive open-source resource for learning prompt engineering with 3M+ learners. MIT licensed. GitHub stars
  • Start Machine Learning (louisfb01) - A complete guide to start and improve in machine learning and AI in 2026 without any background. Curated learning path with the latest news, state-of-the-art techniques, and comprehensive resources for beginners. MIT licensed. GitHub stars
  • Claude How To - Comprehensive learning path and template guide for Claude Code, covering setup, hooks, custom skills, and MCP server integrations. MIT licensed. GitHub stars
  • r/LocalLLaMA - Go-to subreddit for local/open-source LLM topics.

Courses & Interactive Playgrounds

  • Hugging Face Course - Free hands-on courses using only open models.
  • ML For Beginners (Microsoft) - 12-week, 26-lesson, 52-quiz classic machine learning course for beginners. Comprehensive curriculum covering regression, classification, clustering, and NLP with practical projects. GitHub stars
  • LLM Course (Maxime Labonne) - End-to-end course for getting into Large Language Models with roadmaps and Colab notebooks. Covers pre-training, fine-tuning, RLHF, quantization, and prompt engineering. GitHub stars
  • AI For Beginners (Microsoft) - 12-week, 24-lesson curriculum on Artificial Intelligence. Covers symbolic AI, neural networks, computer vision, NLP, and reinforcement learning with hands-on labs. GitHub stars
  • Generative AI for Beginners (Microsoft) - 21 lessons covering generative AI fundamentals, prompt engineering, RAG applications, fine-tuning, and LLM app deployment with practical exercises. GitHub stars
  • LangChain Academy - Free courses on agents and RAG.
  • Data Science for Beginners (Microsoft) - 10-week, 20-lesson curriculum on data science fundamentals. Covers data preparation, visualization, modeling, and deployment with practical projects. GitHub stars
  • Learn PyTorch for Deep Learning (Zero to Mastery) - Comprehensive PyTorch deep learning course with hundreds of exercises and real-world projects. GitHub stars
  • The Incredible PyTorch - Curated list of PyTorch tutorials, papers, projects, and communities for deep learning researchers. GitHub stars
  • Deep RL Class (Hugging Face) - Free deep reinforcement learning course with hands-on exercises and trained agent publishing to the Hugging Face Hub. GitHub stars
  • Practical RL (Yandex Data School) - Comprehensive reinforcement learning course covering RL fundamentals, deep RL, policy gradients, actor-critic methods, and practical applications in the wild. The Unlicense. GitHub stars
  • NLP Course (Yandex Data School) - YSDA course in Natural Language Processing with 2025 materials covering text classification, language models, transformers, and modern NLP techniques. MIT licensed. GitHub stars
  • Large Language Model Notebooks Course - Practical hands-on course about Large Language Models and their applications. Covers Chatbots, Code Generation, OpenAI API, Hugging Face, Vector databases, LangChain, Fine Tuning, PEFT, LoRA, QLoRA. MIT licensed. GitHub stars
  • Transformers Tutorials (Niels Rogge) - Comprehensive tutorials and demos using the Hugging Face Transformers library for NLP, vision, and multimodal tasks. GitHub stars
  • Made With ML (Goku Mohandas) - End-to-end course on building production-grade ML systems with MLOps fundamentals, from design to deployment and iteration. GitHub stars
  • AI Engineering Hub - 93+ production-ready projects with in-depth tutorials on LLMs, RAG, and real-world AI agent applications. Comprehensive resources for all skill levels from beginner to advanced. MIT licensed. GitHub stars
  • Complete Agentic AI Engineering Course - 6-week comprehensive course on Agentic AI covering autonomous agents, multi-agent systems, and practical agent development. MIT licensed. GitHub stars

Starter Projects & Examples

  • Awesome LLM Apps - A collection of run-ready artificial intelligence templates and agent customizer scripts, featuring over 100 retrieval-augmented generation (RAG) and intelligent agent blueprints. Apache 2.0 licensed. GitHub stars
  • Claude Cookbooks - Official collection of recipes and notebooks demonstrating tool use, prompt caching, structured outputs, and agentic workflows with Claude. MIT licensed. GitHub stars
  • Hugging Face Transformers Notebooks - Run Transformers, Datasets, and more in Colab. GitHub stars
  • TensorFlow Tutorials - Official guides for beginners to advanced users. GitHub stars

Curated Resource Lists

  • Awesome Machine Learning - The definitive curated list of machine learning frameworks, libraries and software organized by language. Covers Python, C++, Java, JavaScript, and more with comprehensive coverage of the ML ecosystem. CC0-1.0 licensed. GitHub stars
  • Awesome Artificial Intelligence - Curated list of artificial intelligence courses, books, video lectures, and papers for developers and researchers. MIT licensed. GitHub stars
  • Andrej Karpathy Skills - A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls. Principles: Think Before Coding, Simplicity First, Surgical Changes, Goal-Driven Execution. MIT licensed. GitHub stars
  • Awesome DESIGN.md - Curated collection of DESIGN.md files representing popular design systems to guide AI coding agents in consistent UI generation. MIT licensed. GitHub stars

Contributing

Contributions are welcome. Please read CONTRIBUTING.md for guidelines.

  • Only OSI-approved licenses
  • No minimum GitHub star requirement
  • Useful, relevant, well-documented projects with a clear reason to exist
  • Maintained current list, not a historical archive

关于 About

Curated list of the best truly open-source AI projects, models, tools, and infrastructure. Daily updated.
agentsaiartificial-intelligenceawesomeawesome-listgenerative-aillmmachine-learningmlopsopen-sourceopen-source-airag

语言 Languages

Python100.0%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
753
Total Commits
峰值: 136次/周
Less
More

核心贡献者 Contributors