AIUV
返回模型列表
Meta·text

llama-3.3-70b-instruct:free

meta-llama/llama-3.3-70b-instruct:free

Llama 3.3 70B Instruct (free) is an AI model provided by openrouter.

ToolsOpen 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": "meta-llama/llama-3.3-70b-instruct:free",
    "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="meta-llama/llama-3.3-70b-instruct:free",
    messages=[{"role": "user", "content": "hi"}],
)
print(resp.choices[0].message.content)