IBM Granite

IBM Granite: Granite 4.1 8B

ibm-granite/granite-4.1-8b

Access Granite 4.1 8B from IBM Granite using Puter.js AI API.

Get Started
// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';

puter.ai.chat("Explain quantum computing in simple terms", {
    model: "ibm-granite/granite-4.1-8b"
}).then(response => {
    document.body.innerHTML = response.message.content;
});
<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
        puter.ai.chat("Explain quantum computing in simple terms", {
            model: "ibm-granite/granite-4.1-8b"
        }).then(response => {
            document.body.innerHTML = response.message.content;
        });
    </script>
</body>
</html>
# pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://api.puter.com/puterai/openai/v1/",
    api_key="YOUR_PUTER_AUTH_TOKEN",
)

response = client.chat.completions.create(
    model="ibm-granite/granite-4.1-8b",
    messages=[
        {"role": "user", "content": "Explain quantum computing in simple terms"}
    ],
)

print(response.choices[0].message.content)
curl https://api.puter.com/puterai/openai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_PUTER_AUTH_TOKEN" \
  -d '{
    "model": "ibm-granite/granite-4.1-8b",
    "messages": [
      {"role": "user", "content": "Explain quantum computing in simple terms"}
    ]
  }'

Model Card

IBM Granite 4.1 8B is a dense, decoder-only language model from IBM, built for enterprise workloads like tool calling, RAG, code generation, summarization, and classification. It supports a 131K-token context window and 12 languages including English, German, Spanish, French, Japanese, and Chinese.

Despite its compact size, the 8B model matches or outperforms IBM's previous-generation 32B Mixture-of-Experts model across benchmarks — scoring 69.0 on ArenaHard, 68.3 on BFCL V3 (tool calling), and 92.5 on GSM8K. It implements OpenAI-compatible tool calling and supports fill-in-the-middle for code completion.

Its dense architecture makes it straightforward to fine-tune for downstream tasks. Released under the Apache 2.0 license, it's a strong pick for developers who need reliable enterprise capabilities at an efficient parameter count.

Context Window 131K

tokens

Max Output 131K

tokens

Input Cost $0.05

per million tokens

Output Cost $0.1

per million tokens

Release Date Apr 30, 2026

 

Model Playground

Try Granite 4.1 8B instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.

Chat ibm-granite/granite-4.1-8b
IBM Granite
Chat with Granite 4.1 8B
Powered by Puter.js

Frequently Asked Questions

How do I use Granite 4.1 8B?

You can access Granite 4.1 8B by IBM Granite through Puter.js AI API. Include the library in your web app or Node.js project and start making calls with just a few lines of JavaScript — no backend and no configuration required. You can also use it with Python or cURL via Puter's OpenAI-compatible API.

Is Granite 4.1 8B free?

Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Granite 4.1 8B to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.

What is the pricing for Granite 4.1 8B?
Granite 4.1 8B costs $0.05 per 1M input tokens and $0.1 per 1M output tokens.
Price per 1M tokens
Input$0.05
Output$0.1
Who created Granite 4.1 8B?

Granite 4.1 8B was created by IBM Granite and released on Apr 30, 2026.

What is the context window of Granite 4.1 8B?

Granite 4.1 8B supports a context window of 131K tokens. For reference, that is roughly equivalent to 262 pages of text.

What is the max output length of Granite 4.1 8B?

Granite 4.1 8B can generate up to 131K tokens in a single response.

Does it work with React / Vue / Vanilla JS / Node / etc.?

Yes — the Granite 4.1 8B API works with any JavaScript framework, Node.js, or plain HTML through Puter.js. Just include the library and start building. See the documentation for more details.

Get started with Puter.js

Add Granite 4.1 8B to your app without worrying about API keys or setup.

Read the Docs View Tutorials