AIUV
返回模型列表
Sao10K·text

l3.3-euryale-70b

sao10k/l3.3-euryale-70b

Sao10K: Llama 3.3 Euryale 70B is an AI model provided by kilo.

Open Weights131.1K

价格

输入价
$75.00/ 百万 tokens
输出价
$75.00/ 百万 tokens

支持的端点

  • openaiPOST /v1/chat/completions

代码示例

cURL
curl https://aiuv.ai/v1/chat/completions \
  -H "Authorization: Bearer sk-YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sao10k/l3.3-euryale-70b",
    "messages": [{"role":"user","content":"hi"}]
  }'
Python
from openai import OpenAI

client = OpenAI(
    base_url="https://aiuv.ai/v1",
    api_key="sk-YOUR_KEY",
)

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