← Back to Catalog

nvidia/Llama-3.3-Nemotron-70B-Reward-Multilingual

Size
70B
Context Length
32,768
Max Output
Default

Categories

Usage Examples

Chat (curl)

curl https://api.featherless.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "nvidia/Llama-3.3-Nemotron-70B-Reward-Multilingual",
    "messages": [
      {"role": "user", "content": "Hello, how can you help me?"}
    ]
  }'

PHP

$ch = curl_init('https://api.featherless.ai/v1/chat/completions');
curl_setopt_array($ch, [
    CURLOPT_POST => true,
    CURLOPT_HTTPHEADER => [
        'Authorization: Bearer YOUR_API_KEY',
        'Content-Type: application/json',
    ],
    CURLOPT_POSTFIELDS => json_encode([
        'model' => 'nvidia/Llama-3.3-Nemotron-70B-Reward-Multilingual',
        'messages' => [
            ['role' => 'user', 'content' => 'Hello!'],
        ],
    ]),
    CURLOPT_RETURNTRANSFER => true,
]);
$response = json_decode(curl_exec($ch), true);
echo $response['choices'][0]['message']['content'] ?? 'No response';

Actions

Links