Llama 3.1 405B

128 000 tokens context
Reasoning

Model ID

llama-3.1-405b

Use It in Python

from openai import OpenAI

client = OpenAI(
    base_url="https://api.venice.ai/api/v1",
    api_key="YOUR_API_KEY",
)

response = client.chat.completions.create(
    model="llama-3.1-405b",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)

Don't have a key yet? See how to get one — quick registration required.

Free Tier Limits (Venice.ai)

Rate Limit
10 Requests per minute (free tier)
Daily Limit
Limited daily usage
Monthly Limit
Resets daily
Get Your API Key View Venice.ai

More free models from Venice.ai