Meta
Llama 3 70B Instruct
meta-llama/llama-3-70b-instruct
Meta's latest class of model (Llama 3) launched with a variety of sizes & flavors. This 70B instruct-tuned version was optimized for high quality dialogue usecases.
It has demonstrated strong performance compared to leading closed-source models in human evaluations.
To read more about the model release, click here. Usage of this model is subject to Meta's Acceptable Use Policy.
Community
Open Source
Context Window
8,192
Max Output Tokens
4,096
Using Llama 3 70B Instruct with Python API
Using Llama 3 70B Instruct with OpenAI compatible API
import openai
client = openai.Client(
api_key= '{your_api_key}',
base_url="https://api.model.box/v1",
)
response = client.chat.completions.create(
model="meta-llama/llama-3-70b-instruct",
messages: [
{
role: 'user',
content:
'introduce your self',
},
]
)
print(response)