Open Source First

Explore free & open source AI models

AI models curated for developers — filter by task, license, size, and access type. All free or open source.

80+ ModelsOpen Source FirstUpdated Weekly
Featured Models This Week
L2

Llama 2

🔥 Trending
by Meta AI
Params7B / 13B / 70B
Context4K
LicenseLlama Community License
Text GenerationLanguage Model+1

Llama 2 is Meta's landmark open large language model, released in 7B, 13B and 70B sizes with…

DE

DeepSeek-Coder

🔥 Trending
by DeepSeek-AI
Params1.3B / 5.7B / 6.7B /
Context16K
LicenseDeepSeek License (commercial use allowed
Code GenerationCode Completion+1

DeepSeek Coder is an open family of high-performing code models from DeepSeek-AI. Trained on 2…

DM

DALL·E Mini

🔥 Trending
by Boris Dayma & Community
Params~400M
LicenseApache 2.0
Image GenerationText-to-Image+1

DALL·E Mini (now Craiyon) is an open text-to-image model that brought AI image generation to the…

M8

Mistral 8x22B

🔥 Trending
by Mistral AI
Params141B total / 39B act
Context65K
LicenseApache 2.0
Text GenerationMixture-of-Experts+1

Mixtral 8x22B is Mistral AI's open sparse mixture-of-experts model. With 141B total but only ~39B…

YO

YOLOv5

🔥 Trending
by Ultralytics
Params1.9M (n) – 86.7M (x)
LicenseGPL v3
Object DetectionComputer Vision+1

YOLOv5 is a fast, popular real-time object-detection model from Ultralytics. Built in PyTorch with…

SA

Segment Anything

🔥 Trending
by Meta AI
ParamsViT-B 91M / ViT-L 30
LicenseApache 2.0
Image SegmentationComputer Vision+1

Segment Anything (SAM) is Meta's foundation model for image segmentation. Given a point, box or…

CL

CLIP

🔥 Trending
by OpenAI
Params150M (B/32) – 428M (
LicenseMIT
MultimodalVision-Language+1

CLIP is OpenAI's contrastive language-image model that learns a shared space for images and text.…

DR

DreamBooth

🔥 Trending
by Google Research
ParamsFine-tuning method (
LicenseApache 2.0
Image GenerationFine-Tuning+1

DreamBooth is a fine-tuning technique for text-to-image models. Using just a few photos of a…

AL

AlphaFold

🔥 Trending
by Google DeepMind
Params~93M (AF2)
LicenseApache 2.0
Protein FoldingStructure Prediction+1

AlphaFold is DeepMind's breakthrough AI for predicting protein 3D structure from sequence.…

ST

StyleGAN2

🔥 Trending
by NVIDIA Research
Params~30M (config-F at 10
LicenseNVIDIA Source Code License
Image GenerationGAN+1

StyleGAN2 is NVIDIA's landmark generative adversarial network for ultra-realistic image synthesis,…

BE

BERT

🔥 Trending
by Google AI
ParamsBERT-Base 110M / BER
Context512
LicenseApache 2.0
Language ModelNLP+1

BERT is Google's landmark bidirectional transformer that reshaped natural language processing. By…

CO

ControlNet

🔥 Trending
by Stanford University (Lvmin Zhang)
Params~1.45B per control t
LicenseApache 2.0
Image GenerationConditioning+1

ControlNet adds precise spatial control to Stable Diffusion: condition image generation on edges,…

MS

Mistral Small 3

🔥 Trending
by Mistral AI
Params24B
Context32768 (128K in v3.1+
LicenseApache 2.0
Text GenerationChat+1

Mistral Small 3 is a 24B open model from Mistral AI built for low latency. Apache-2.0 licensed, it…

PH

Phi-4

🔥 Trending
by Microsoft Research
Params14B (Phi-4) / 3.8B (
Context16K
LicenseMIT
Text GenerationReasoning LLM+1

Phi-4 is Microsoft's 14B small language model that delivers reasoning and math performance rivaling…

AU

Auto-GPT

🔥 Trending
by Significant Gravitas
ParamsAgent framework (use
LicenseMIT
AI AgentAgent Framework+1

AutoGPT is a pioneering open-source framework for building autonomous AI agents. It chains LLM…

Showing 115 of 84 models

The basics

What are open source AI models?

An open source AI modelis a machine-learning model whose weights, architecture and training code are released under a license that lets you download, inspect, modify and redistribute the system. That distinguishes them from closed frontier models — which you can only reach through a vendor's API — and lets you run them on your own hardware, fine-tune them on your own data, and ship them inside your product without sending every request to a third party.

People often conflate open source with open weight, but they are not the same thing. An open-source release publishes the model weights plus everything you would need to reproduce them: training data, training scripts, the evaluation harness and a license. An open-weight release shares the weights but keeps some of those pieces private. Both let you self-host; only the former lets you fully reproduce the result.

Are open source AI models free for commercial use?

Not always — “free to download” and “free for commercial use” are different questions. Permissive licenses such as Apache 2.0 and MIT let you use the model in a commercial product, modify it and redistribute it with very few conditions. Others, like some community or research licenses, restrict commercial use above a revenue threshold or forbid using outputs to train competing models. Before you ship, check the License and Commercial use filters on each model card and read the original model card — that is the only source that is legally binding.

How to run open source AI models locally

You do not need a data centre to start. For laptops and single-GPU desktops, Ollama and llama.cpp run quantised models (4-bit and 8-bit builds) with a one-line install, trading a little accuracy for a much smaller memory footprint. For production serving and high throughput, vLLM and Text Generation Inference batch requests across a GPU efficiently. As a rough guide: a 7B model needs roughly 4–6 GB of VRAM when quantised, a 13B model around 8–10 GB, and 70B-class models realistically want multiple GPUs or aggressive quantisation. Use the Parameters and Context window filters above to find a model that fits your hardware.

Open source vs API models — which should you choose?

Hosted API models are fastest to integrate and need zero infrastructure, but you pay per token, your data leaves your network, and you cannot pin a specific version forever. Self-hosted open models flip every one of those trade-offs: fixed infrastructure cost instead of per-request billing, full data privacy, complete version control and the freedom to fine-tune. A common pattern is to prototype against a hosted API, then move the steady, high-volume workloads to an open model you host yourself once the economics make sense. Many open models are also available through hosted providers (Together AI, Groq, Fireworks, Hugging Face), so you can get both without rewriting your code.

Browse

Most popular AI model categories

FAQ

Frequently asked questions

What is the best free open source AI model in 2026?

There is no single best model — it depends on the task. For general chat and reasoning, large Llama, Mistral and Qwen models lead the open leaderboards; for code, models like DeepSeek-Coder and Code Llama are strong; for images, the Stable Diffusion family; and for speech, Whisper. Use the task tabs and sort options above to compare the current top models by downloads, parameters and license.

Can I use open source AI models without a GPU?

Yes. Small and quantised models (1B–7B parameters in 4-bit form) run on a modern CPU with tools like llama.cpp and Ollama, though responses are slower than on a GPU. Embedding models and many speech models are also comfortable on CPU. For larger models or real-time use, a consumer GPU with 8GB or more of VRAM makes a noticeable difference.

Are open source AI models safe to use in production?

They can be, provided you treat them like any other dependency: pin a specific version, review the license, scan the weights file for tampering, and evaluate the model on your own test set before launch. Because you host the model yourself, no prompt or user data is sent to a third party, which is often easier to reconcile with privacy and compliance requirements than a closed API.

What is the difference between open weight and open source models?

An open-weight model publishes its trained weights so you can download and run it, but may keep the training data, training code or full license private. An open-source model publishes the weights and everything needed to reproduce them. Both can be self-hosted; only a fully open-source release lets you independently retrain or audit how the model was built.

How much does it cost to self-host an open source LLM?

The model itself is free to download. Your real cost is compute: a single cloud GPU instance suitable for a 7B–13B model typically runs a few hundred dollars a month if left on continuously, or a fraction of that if you autoscale to zero between requests. Self-hosting becomes cheaper than a per-token API once your request volume is high and steady.

Where do the models on this page come from?

Every model listed here is curated from public releases by their original developers — companies and labs such as Meta, Mistral, Google, Alibaba and independent research groups. Each card links to the official model card and repository so you can verify the license, parameters and capabilities at the source.