Llama 3.3 Euryale 70B

API ID: sao10k/l3.3-euryale-70b-v2.3

Input Price
$0.65
/1M tokens
Output Price
$0.75
/1M tokens

About Llama 3.3 Euryale 70B

Llama 3.3 Euryale 70B is a budget-friendly general-purpose model from Sao10K with long context (131k), suitable for conversations, content creation, and general AI tasks.

๐Ÿ’ฐ
Price Ranking
#878 lowest price among 1240 Chat models

Model Specifications

Context Length
131k
Max Output
16k
Release Date
2024-12-18
Capabilities
chat
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.52
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$16.50
/month
1000 tickets/day, ~800 tokens each

Sao10K Model Lineup

Compare all models from Sao10K to find the best fit

Model Input Output Context Capabilities
Llama 3.3 Euryale 70B Current $0.65 $0.75 131k chat
Llama 3 8B Lunaris $0.04 $0.05 8k chat
Llama 3 8B Lunaris $0.05 $0.05 8k chat
Llama 3.1 Euryale 70B v2.2 $0.65 $0.75 131k chat
Llama 3.1 Euryale 70B v2.2 $0.85 $0.85 131k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Nous Research Hermes 3 70B Instruct
Input: $0.70
Output: $0.70
Context: 131k
Google Gemini 3.5 Flash Lite (batch)
Input: $0.15
Output: $1.25
Context: 1.0M
Google Gemini 2.5 Flash (batch)
Input: $0.15
Output: $1.25
Context: 1.0M
Baidu ERNIE 4.5 300B A47B
Input: $0.28
Output: $1.10
Context: 123k

๐Ÿš€ Quick Start

Get started with Llama 3.3 Euryale 70B API

OpenAI-compatible SDK
from openai import OpenAI

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

response = client.chat.completions.create(
    model="sao10k/l3.3-euryale-70b-v2.3",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)