Meta: Llama 3.3 70B Instruct
GPU TEE
meta-llama/llama-3.3-70b-instruct
Created Nov 28, 2025|131K context|$2.00/M input tokens|$2.00/M output tokens
Intel TDXNVIDIA CC
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 is optimized for multilingual dialogue use cases and outperforms many of the available open source and closed chat models on common industry benchmarks.
Providers for Meta: Llama 3.3 70B Instruct
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
tinfoil
Input Price
$2.00
Output Price
$2.00
Total Context
131K
API
RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.
fetch("https://api.redpill.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "meta-llama/llama-3.3-70b-instruct",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})