Meta Llama is Meta's family of open-weight large language models, spanning Llama 3 through Llama 4 and beyond. It sits at #8 in real-world usage share with roughly 17.8%, and is arguably the single model most responsible for kickstarting the modern open-weight LLM ecosystem โ thousands of fine-tunes, tools, and local-hosting setups (like Ollama) trace back to Llama. It's free to download and run on your own hardware, with no API key required.
Run it locally with Ollama in one command, or call it through Ollama's local REST API from Python.
# run locally with Ollama
ollama run llama3.3
import requests
response = requests.post("http://localhost:11434/api/generate", json={
"model": "llama3.3",
"prompt": "Write a haiku about open-source software.",
"stream": False
})
print(response.json()["response"])
Install Ollama, pull a Llama model, and you're generating locally โ no signup or API key needed.
# 1. install Ollama from ollama.com
# 2. pull and run the model
ollama pull llama3.3
ollama run llama3.3