Llama 3.1 Euryale 70B v2.2

Other chattool_usereasoning

API ID: sao10k/l3.1-euryale-70b

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

About Llama 3.1 Euryale 70B v2.2

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

๐Ÿ’ฐ
Price Ranking
#771 lowest price among 950 Chat models

Model Specifications

Context Length
131k
Max Output
16k
Release Date
2024-08-28
Capabilities
chat tool_use reasoning
Input Modalities
text
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)
  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ 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
Data Analysis Pipeline
$23.63
/month
500 analyses/day, ~2k tokens each

Other Model Lineup

Compare all models from Other to find the best fit

Model Input Output Context Capabilities
Llama 3.1 Euryale 70B v2.2 Current Free Free 131k chat tool_use reasoning
Riverflow V2 Max Preview Free Free 8k chat vision image_gen
Riverflow V2 Standard Preview Free Free 8k chat vision image_gen
Riverflow V2 Fast Preview Free Free 8k chat vision image_gen
AFM 4.5B Free Free 66k chat
AFM 4.5B Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Baidu ERNIE 4.5 300B A47B
Input: $0.28
Output: $1.10
Context: 123k
Moonshot AI Kimi Dev 72B
Input: $0.29
Output: $1.15
Context: 131k
Alibaba Qwen Qwen3 Next 80B A3B Thinking
Input: $0.15
Output: $1.20
Context: 131k
Alibaba Qwen Qwen3 VL 8B Thinking
Input: $0.12
Output: $1.36
Context: 131k

๐Ÿš€ Quick Start

Get started with Llama 3.1 Euryale 70B v2.2 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.1-euryale-70b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)