AIUV
返回模型列表
NVIDIA·text

llama-3.3-nemotron-super-49b-v1.5

nvidia/llama-3.3-nemotron-super-49b-v1.5

Llama 3.3 Nemotron Super 49b V1.5 is an AI model provided by nvidia.

128K

价格

输入价
$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": "nvidia/llama-3.3-nemotron-super-49b-v1.5",
    "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="nvidia/llama-3.3-nemotron-super-49b-v1.5",
    messages=[{"role": "user", "content": "hi"}],
)
print(resp.choices[0].message.content)