On-Premise Customers: The credit consumption model on this page describes billing for EKB SaaS/cloud-hosted environments and does not apply to on-premises deployments. On-prem customers run their own instance of EKB and use their own LLM models. Instead, credits are available as an optional governance tool — on-prem super admins can configure and control how many credits are “charged” per activity or task within their org, then assign credit limits to specific teams to measure and cap LLM usage (e.g., to prevent a team from over-consuming LLM resources). Once a team exhausts its assigned credits, members will be unable to perform further agentic tasks until the limit is increased or reset.
Core Concepts
What Are Credits?
Credits are the unit of measurement EKB uses to track and bill for platform usage. Rather than billing separately for every underlying resource (compute, API calls, LLM usage), credits provide a single, unified currency that abstracts those costs into a predictable format. Credits are consumed in two ways:- Platform Action Credits are flat-rate charges tied to specific user actions — uploading a document, sending a chat message, or invoking a tool. These are fixed and predictable regardless of content size or model used.
- LLM Token Credits are variable charges based on actual language model usage. Because LLM costs depend on how much text goes in and comes out of the model, these credits fluctuate based on document size, response length, and model selection.
What Are Tokens?
Tokens are the unit that Large Language Models use to process text. Before any text is read or generated by an LLM, it is broken down into tokens — small fragments that roughly correspond to words or parts of words. As a general rule of thumb:- 1 token ≈ 4 characters, or roughly ¾ of a word in English
- A 100,000-word document is approximately 133,000 tokens
- A short sentence like “Explain this document” is around 4–5 tokens
Credit Consumption Table
A. Chat / Agent Interaction
Fixed platform credits
Variable LLM Token Credits
LLM credits are calculated as:
(Input Tokens × Input Rate) + (Output Tokens × Output Rate)
Example pricing (Claude 4.5 sample model):
- Input: 3,000 credits ($3) per 1M tokens
- Output: 15,000 ($15) credits per 1M tokens
Chat Example
Scenario User asks: “Explain the attached document.” Platform credits
LLM token usage (model: Claude 4.5 sample — 3,000 credits per 1M input tokens, 15,000 credits per 1M output tokens)
Final total
B. Knowledge Base
Knowledge Base credit consumption spans two stages: ingesting documents into a Knowledge Base, and the optional document chunking and enrichment step that prepares content for retrieval.Knowledge Base (KB) Ingestion
Uploading a document to a Knowledge Base triggers a multi-stage ingestion pipeline. Each stage has its own cost structure, and some stages incur additional LLM Token Credits depending on your project configuration. Ingestion Pipeline
Stages 2 and 4 are only billed when enabled in your Project Settings. Document chunking occurs as part of ingestion and may incur additional costs. See Document Chunking for a detailed breakdown.
Example – 10,000 word document (no optional stages enabled)
Example – 100,000 word document (no optional stages enabled)
Example – 100,000 word document (all stages enabled)
The more optional stages you enable, the higher the per-document ingestion cost. Word-based upload cost is always fixed and predictable.
Document Chunking
Chunking is the step between document extraction and embedding. It takes the cleaned text from an uploaded document and breaks it into smaller pieces (chunks) that are indexed in the vector store and later retrieved for Chat or Agent queries. Chunking costs fall into two categories:- Platform Chunking: Deterministic operations (tokenization, splitting, metadata assembly) that run locally on the server and are not billed as LLM usage.
- Chunk Enrichment (LLM Token Credits): Billed only when Chunk Enrichment is enabled for the project in Knowledge Base Settings. The LLM generates a short context prefix for each chunk; both input and output tokens are charged.
Example: Document Chunking Costs
The following example assumes a moderately sized document with Chunk Enrichment enabled:- Document size: 100,000 words (~133,000 input tokens, at 4 chars/token)
- Chunk settings:
chunk_size=64 tokens,chunk_overlap=10 tokens→ ~2,300 chunks - Chunk Enrichment: Enabled with
gpt-4o-mini - Output text (joined chunks incl. enrichment prefixes): ~140,000 output tokens
- Model pricing (example,
gpt-4o-mini): input150 creditsper 1M tokens, output600 creditsper 1M tokens
This document’s Chunk Enrichment consumes approximately 104 credits (~19.95 input + 84 output).
If the same document were uploaded without Chunk Enrichment enabled, chunking would consume 0 LLM Token Credits.
C. Workflow Executions
The cost is 1 credit per execution, regardless of the number of steps involved.