Model reference · open weights

Apriel

Available as managed deployment LLMs ServiceNow-AI Text gen 1 variants 1k dl/mo

Apriel is an open-weight language model from ServiceNow-AI. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

MakerServiceNow-AI
TypeLanguage models
TaskText gen
Parameters (lead)4.8B
Context16k tokens
Runs withtransformers
Based onServiceNow-AI/Apriel-5B-Base
Released2025-04-11
Popularity1k downloads / month
LicenceOpen weights

About

What Apriel is

/ˈɑː.pri.əl/

Table of Contents

  1. Model Summary
  2. Evaluation
  3. Intended Use
  4. Limitations
  5. Security and Responsible Use
  6. License
  7. Citation

Model Summary

Apriel is a family of models built for versatility, offering high throughput and efficiency across a wide range of tasks.

Apriel-5B-Base

Apriel-5B-base is a decoder-only transformer trained on 4.5T+ tokens of data. It is the first release in the Apriel model family, designed to support research on foundation models. Apriel-5B-base achieves strong performance across common benchmarks for models under 5B parameters.

Apriel-5B-Instruct

Apriel-5B-Instruct is built on top of Apriel-5B-base using continual pretraining (CPT), supervised finetuning (SFT), and post-training alignment with DPO and RLVR.

Both CPT and SFT stages involved training multiple domain-biased variants with overlapping datasets (e.g., instruction, code, math). These were then merged to form a more general-purpose model before alignment. The final model is aligned for instruction following, reasoning, and safety-aware dialogue.

The y-axis shows average downstream benchmark scores. Throughput (x-axis) was measured using vLLM with batch size 8, 256 input tokens, and 32 output tokens.

How to Use

pip install transformers

Running the Base model

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

checkpoint = "ServiceNow-AI/Apriel-5B-Base"
device = "cuda"  # or "cpu"

tokenizer = AutoTokenizer.from_pretrained(checkpoint)
model = AutoModelForCausalLM.from_pretrained(checkpoint, torch_dtype=torch.bfloat16).to(device)

inputs = tokenizer.encode("Snow is", return_tensors="pt").to(device)
outputs = model.generate(inputs)
print(tokenizer.decode(outputs[0]))
>>> print(f"Memory footprint: {model.get_memory_footprint() / 1e6:.2f} MB")
Memory footprint: 9664.14 MB

Running the Instruct model

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

checkpoint = "ServiceNow-AI/Apriel-5B-Instruct"
tokenizer = AutoTokenizer.from_pretrained(checkpoint)
device = "cuda" if torch.cuda.is_available() else "cpu"

model = AutoModelForCausalLM.from_pretrained(
    checkpoint,
    torch_dtype=torch.bfloat16 if device == "cuda" else torch.float32
).to(device)

messages = [
    {"role": "system", "content": "You are a helpful AI assistant that provides accurate and concise information."},
    {"role": "user", "content": "Tell me about artificial intelligence"}
]

input_text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(input_text, return_tensors="pt").to(device)

generation_params = {
    "max_new_tokens": 512,
    "temperature": 0.2,
    "top_p": 0.9,
    "do_sample": True
}

outputs = model.generate(**inputs, **generation_params)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)

Chat Template

System message here (optional)
User message here
Assistant response here

If no system message is provided, the model inserts a blank system prompt to maintain format structure. The model supports structured interaction patterns, including tool calling and reasoning steps for more advanced workflows.

Evaluation

Evaluations were conducted using lm-eval-harness and evalchemy.

Apriel-5B-Base

Task NameApriel-5B-BaseOLMo-2-1124-7BLlama-3.1-8BMistral-Nemo-Base-2407
Average58.758.7161.7266.01
ARC Challenge56.762.758.262.9
ARC Easy82.486.085.786.7
MMMLU44.535.347.454.7
Global MMLU57.452.461.168.4
GSM8k64.263.254.858.5
HellaSwag74.480.578.882.7
MUSR39.139.638.039.9
MBPP27.622.446.054.6
MMLU61.363.966.069.6
PIQA78.981.181.282.1

Apriel-5B-Instruct

Task NameApriel-5B-InstructOLMo-2-1124-7B-InstructLlama-3.1-8B-InstructMistral-Nemo-Instruct-2407
Average49.6443.9152.6048.63
ARC Challenge59.0461.4564.2566.38
GSM8k80.3679.6882.6377.63
Hellaswag74.5280.2178.4381.71
BBH39.8239.9550.8650.06
GPQA28.3627.85

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys apriel for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (apriel below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/chat/completions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"apriel","messages":[{"role":"user","content":"Hello"}]}'

Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms