Skip to content
OpenSmartRoute
Model catalogue
Meta

Meta

Llama 3.3 70B Instruct

meta-llama/llama-3.3-70b-instruct

Specification

Published by the vendor; the platform bills at the target's declared price.

Meta

Llama 3.3 70B Instruct

open weights tools

Meta meta-llama/llama-3.3-70b-instruct

The Meta Llama 3.3 multilingual large language model (LLM) is a pretrained and instruction tuned generative model in 70B (text in/text out). The Llama 3.3 instruction tuned text only model...

Input $/1M
$0.10
Output $/1M
$0.32
Context
131K
Max output
16K
Released
Dec 6, 2024
Modalities
text
Intelligence index-
Coding index12
Agentic index-

On this deployment

1 target runs this model; traffic is measured over the last 30 days.

OpenAI SDKpython
from openai import OpenAI

client = OpenAI(base_url="https://api.opensmartroute.ai/v1", api_key="osr_live_...")
resp = client.chat.completions.create(
    model="llm-onprem",   # the target on this deployment that runs Llama 3.3 70B Instruct
    messages=[{"role": "user", "content": "Summarise this in one sentence."}],
)
print(resp.model, resp.choices[0].message.content)