Meta/llama-3-2-1b-instruct/Released Mar 2025

Llama 3.2 1B Instruct

Multilingual on-device chat model

Fine-tunable
Text

About Llama 3.2 1B Instruct

meta-llama/Llama-3.2-1B-Instruct is an LLM designed for efficient, multilingual instruction following and dialogue-based applications. It excels in delivering helpful conversational responses, question answering, summarization, and instruction adherence, particularly on edge and mobile devices due to its small parameter size and optimized architecture.

Some other noteworthy use cases of meta-llama/Llama-3.2-1B-Instruct include personal information management and multilingual knowledge retrieval, where privacy and on-device execution are prioritized.

MetricValue
Parameter Count1 billion
Mixture of ExpertsNo
Context Length128,000 tokens
MultilingualYes
Quantized*No

*Quantization is specific to the inference provider and the model may be offered with different quantization levels by other providers.

Ready to build with Llama 3.2 1B Instruct?

Try Llama 3.2 1B Instruct in the Workbench to prompt it, compare outputs, and iterate on prompts without writing any code. When you're ready to ship, call the same model from our API and build your own apps on top of it.

Sign in to grab your API key and start making requests.
bash
curl -sSf -X POST https://hub.oxen.ai/api/ai/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $OXEN_API_KEY" \
    -d '{
  "model": "llama-3-2-1b-instruct",
  "messages": [
    {
      "role": "user",
      "content": "Try sending a message."
    }
  ]
}'