Back to Models

Apriel 1.6 15B Thinker

servicenow-ai/apriel-1.6-15b-thinker
Servicenow AI Chat

Description

Apriel 1.6 15B Thinker by Servicenow AI. This model supports chat capabilities.

Specifications

Context Length:
131072
Parameters:
15B

Pricing

Input Cost:
$0.00/1M tokens
Output Cost:
$0.00/1M tokens

Usage Example

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.yourproxy.com/v1",
  apiKey: process.env.PROXY_KEY,
});

const completion = await client.chat.completions.create({
  model: "servicenow-ai/apriel-1.6-15b-thinker",
  messages: [{ role: "user", content: "Hello!" }],
});