
Llama 3 is now available to run using Ollama.
To get started, Download Ollama and run Llama 3:
ollama run llama3
Llama 3 represents a large improvement over Llama 2 and other openly available models:
The initial release of Llama 3 includes two sizes:
ollama run llama3:8bollama run llama3:70bfrom langchain_community.llms import Ollama
llm = Ollama(model="llama3")
llm.invoke("Why is the sky blue?")
from llama_index.llms.ollama import Ollama
llm = Ollama(model="llama3")
llm.complete("Why is the sky blue?")
Meta plans to release a 400B parameter Llama 3 model and many more. Over the coming months, they will release multiple models with new capabilities including multimodality, the ability to converse in multiple languages, a much longer context window, and stronger overall capabilities.