High-performance multilingual language model for chat and reasoning
A powerful multilingual language model optimized for dialogue use cases. Outperforms many available open source and closed chat models on common industry benchmarks. Supports common languages with strong performance.
70.6 billion
64k tokens
Ideal for assistant-style chat, multilingual tasks, and general text generation. Should be deployed as part of a system with additional safety guardrails.
English, German, French, Italian, Portuguese, Hindi, Spanish, and Thai
Installation:
pip install tinfoil
Inference:
from tinfoil import TinfoilAI
client = TinfoilAI(
enclave="llama3-3-70b-p.model.tinfoil.sh",
repo="tinfoilsh/confidential-llama3-3-70b-prod",
api_key="YOUR_API_KEY",
)
chat_completion = client.chat.completions.create(
messages=[
{
"role": "user",
"content": "Hello!",
}
],
model="llama3-3-70b",
)
print(chat_completion.choices[0].message.content)