A comprehensive list of open-source AI models... Because nothing says "freedom" quite like code you won't understand anyway!
- Large Language Models (LLMs)
- Image Generation
- Audio / Speech / TTS
- Specialized Models & Tools
- Useful Resources
- Quick Summary
- Contributing
Alphabetically sorted - because order matters when you're pretending to save the world with AI π―
Author: BigScience
License: RAIL License v1.0
Description: The multilingual big sibling, 100% open-source, built by the community. Because unity makes strength... or at least a decent README.
# Example usage
pip install transformersAuthor: Cohere
License: CC-BY-NC 4.0
Description: Even Cohere cracked. Open for commercial use, optimized for RAG and agentic workflows. Turns out capitalists need community love too.
Author: TII UAE
License: Custom (Apache 2.0 variant)
Description: Falcon-180B was a giant... but the commercial license? A real oriental puzzle π§©
Author: Google
License: Gemma Terms of Use
Description: "Open source"... in quotes. More like "open-ish". Free as a fish... in a locked aquarium π π
Author: Meta
License: Llama 3 Community License
Description: Semi-open license, commercial use allowed... but with terms vaguer than a dream after three Red Bulls.
# Via Ollama
ollama run llama3Author: Mistral AI
License: Apache 2.0
Description: French, elegant, and energy-efficient. Mixtral? It's like having 8 brains... but only one pays the bill π«π·π‘
Available models:
- Mistral 7B
- Mixtral 8x7B
- Mistral Large
Author: Allen Institute
License: Apache 2.0
Description: The holy grail: code, data, training logsβeverything's public. Transparent as your future after your fifth coffee β
Author: Microsoft
License: MIT
Description: Small but mighty. Almost open... except you need an Azure account for some weights. So free. So open π
Author: Alibaba
License: Apache 2.0
Description: China's answer to the rest of the world. Qwen-72B struts in wearing an open-source suitβwith a surprisingly permissive license π
For generating cyborg unicorns in tuxedos... because the world clearly needs that π¦π€
Craiyon (formerly DALLΒ·E Mini)
Author: Community
License: Apache 2.0
Description: Open, yes... but the images look like what your cat would draw if it had a keyboard πΉ
Author: Black Forest Labs
License: Proprietary (weights available)
Description: Hyper-realistic... but not truly open. Sorry buddy - you're staying outside πͺ
Variants:
- FLUX.1 [pro] - API only
- FLUX.1 [dev] - Non-commercial
- FLUX.1 [schnell] - Apache 2.0
Author: Sber AI
License: Apache 2.0
Description: Russian, open-source, and surprisingly capable. Like a matryoshka doll full of useful features... and vodka πͺ
Available versions:
- Kandinsky 2.2
- Kandinsky 3.0
Author: Stability AI
License: Varies by version
Description: The classic. Open weights, commercial use often allowed - but double-check the version before selling your soul πΉ
Popular versions:
- SD 1.5 - CreativeML Open RAIL-M
- SDXL - OpenRAIL++-M
- SD3 - Stability AI Community License
# With diffusers
pip install diffusers transformers accelerateSo your AI can talk in Morgan Freeman's voice... or that of a depressed robot ποΈ
Author: Suno
License: MIT
Description: Generates speech, music, laughter... sometimes hauntingly. But it's open-source! So it's cool π
from bark import generate_audio, SAMPLE_RATE
audio_array = generate_audio("Hello, I am Bark!")Author: Community
License: MPL 2.0
Description: Fully open-source TTS framework. Train it on your own voice - if you dare to listen to yourself π§
# Installation
pip install TTS
# Usage
tts --text "Hello world!" --model_name tts_models/en/ljspeech/tacotron2-DDCAuthor: OpenAI
License: MIT
Description: The ultimate irony: OpenAI gave us one of the most genuinely open models. Audio-to-text transcription, free and everywhere π―
# Installation
pip install openai-whisper
# Usage
whisper audio.mp3 --model mediumBecause the world needs more than just AIs that say "hello" in 42 languages π
Author: Georgi Gerganov
License: MIT
Description: Not a model, but lets you run Llama on a toaster. Almost literally π
# Build
git clone https://github.com/ggerganov/llama.cpp
cd llama.cpp && make
# Run
./main -m ./models/7B/ggml-model.bin -p "Hello world"Author: Nomic AI
License: Apache 2.0
Description: Ultra-compact open embeddings. For when you want to shove an AI into a floppy disk πΎ
Author: UKP Lab
License: Apache 2.0
Description: Loyal as a golden retriever. Encodes sentences, never judges your life choices π
from sentence_transformers import SentenceTransformer
model = SentenceTransformer('all-MiniLM-L6-v2')
embeddings = model.encode(['This is a sentence', 'This is another one'])Ironically, not always that open π
| Resource | Description | Link |
|---|---|---|
| Hugging Face Leaderboard | The official heavyweight championship | β Visit |
| Open Source AI Collective | The community that actually shares | β Visit |
| Replicate | Test models without selling a kidney | β Visit |
| Ollama Library | Your local AI library | β Visit |
| Papers with Code | Research papers + implementations | β Visit |
Permissive license + code + weights available
- β BLOOM - BigScience (RAIL License)
- β OLMo - Allen Institute (Apache 2.0)
- β Whisper - OpenAI (MIT)
- β Stable Diffusion 1.5 - Stability AI (CreativeML OpenRAIL-M)
- β Mistral 7B - Mistral AI (Apache 2.0)
- β Llama.cpp - Georgi Gerganov (MIT)
Available but with commercial restrictions
β οΈ Llama 3 - Meta (Community License)β οΈ Command R+ - Cohere (CC-BY-NC 4.0)β οΈ Qwen - Alibaba (Apache 2.0 but...)β οΈ Mixtral - Mistral AI (Apache 2.0)
"Open source" with a giant asterisk
- β Gemma - Google (Proprietary Terms of Use)
- β Phi-3 - Microsoft (MIT but restricted weights)
- β FLUX.1 - Black Forest Labs (weights available, restrictive license)
- β Falcon - TII UAE (complex commercial license)
Contributions are welcome! To add a model:
- Fork this repo
- Create a branch (
git checkout -b feature/new-model) - Add your model following the existing format
- Commit your changes (
git commit -am 'Add [Model Name]') - Push to the branch (
git push origin feature/new-model) - Create a Pull Request
For a model to be added, it must:
- β Have publicly available weights
- β Have clear documentation
- β Be usable without major barriers
- β Have an active community (bonus)
This repo is under MIT license - Because even sarcastic lists deserve to be free! π
If this repo was helpful, feel free to give it a star! β
Because a good alphabetical sorting is the foundation of civilization! π©β¨
Last updated: November 2025
Maintained by: The community (and lots of coffee β)