Ex0bit / Kimi-K2.5-PRISM

huggingface.co
Total runs: 0
24-hour runs: 0
7-day runs: 0
30-day runs: 0
Model's Last Updated: February 28 2026
image-text-to-text

Introduction of Kimi-K2.5-PRISM

Model Details of Kimi-K2.5-PRISM

Parameters Architecture Context Multimodal

# Kimi-K2.5-PRISM

An unrestricted/unchained PRISM version of Moonshot AI's Kimi-K2.5 with over-refusal and propaganda mechanisms removed using our advanced PRISM pipeline (Projected Refusal Isolation via Subspace Modification).

☕ Support Our Work

If you enjou our work and find it useful, please consider sponsoring or supporting us!

Ko-fi

Option Description
PRISM VIP Membership Access to all PRISM models
One-Time Support Support this model

Model Highlights
  • PRISM Ablation — State-of-the-art technique that removes over-refusal behaviors while preserving model capabilities
  • 1T MoE Architecture — 1 trillion total parameters with 32 billion active per token across 384 experts
  • Native Multimodal — Pre-trained on vision-language tokens for seamless image, video, and text understanding
  • 256K Context Window — Extended context for complex agentic tasks and large codebases
  • Dual Modes — Supports both Thinking (deep reasoning) and Instant (fast response) modes
  • Agent Swarm — Self-directed, coordinated multi-agent execution for complex tasks
Model Architecture
Specification Value
Architecture Mixture-of-Experts (MoE)
Total Parameters 1T
Activated Parameters 32B
Number of Layers 61
Attention Hidden Dimension 7168
Number of Attention Heads 64
Number of Experts 384
Selected Experts per Token 8
Shared Experts 1
Vocabulary Size 160K
Context Length 256K
Attention Mechanism MLA
Activation Function SwiGLU
Vision Encoder MoonViT (400M)
Benchmarks
Benchmark Kimi K2.5 (Thinking) GPT-5.2 Claude 4.5 Opus Gemini 3 Pro
AIME 2025 96.1 100 92.8 95.0
GPQA-Diamond 87.6 92.4 87.0 91.9
HLE-Full 30.1 34.5 30.8 37.5
HLE-Full (w/ tools) 50.2 45.5 43.2 45.8
SWE-Bench Verified 76.8 80.0 80.9 76.2
Terminal Bench 2.0 50.8 54.0 59.3 54.2
BrowseComp 60.6 65.8 37.0 37.8
MMMU-Pro 78.5 79.5 74.0 81.0
VideoMMMU 86.6 85.9 84.4 87.6
Usage
Transformers

Install dependencies:

pip install git+https://github.com/huggingface/transformers.git

Basic chat completion:

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

MODEL_PATH = "Ex0bit/Kimi-K2.5-PRISM"

tokenizer = AutoTokenizer.from_pretrained(MODEL_PATH, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    MODEL_PATH,
    torch_dtype=torch.bfloat16,
    device_map="auto",
    trust_remote_code=True,
)

messages = [
    {"role": "system", "content": "You are Kimi, an AI assistant."},
    {"role": "user", "content": "Hello!"}
]

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

generated_ids = model.generate(**inputs, max_new_tokens=4096, do_sample=True, temperature=1.0, top_p=0.95)
output_text = tokenizer.decode(generated_ids[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)
print(output_text)
Chat with Image
import base64
import requests

# Load image
url = "https://example.com/image.png"
image_base64 = base64.b64encode(requests.get(url).content).decode()

messages = [
    {
        "role": "user",
        "content": [
            {"type": "text", "text": "Describe this image in detail."},
            {
                "type": "image_url",
                "image_url": {"url": f"data:image/png;base64,{image_base64}"},
            },
        ],
    }
]

# Use same generation code as above
vLLM

Install vLLM nightly:

pip install -U vllm --pre --index-url https://pypi.org/simple --extra-index-url https://wheels.vllm.ai/nightly
pip install git+https://github.com/huggingface/transformers.git

Serve the model:

vllm serve Ex0bit/Kimi-K2.5-PRISM \
     --tensor-parallel-size 8 \
     --trust-remote-code \
     --served-model-name kimi-k2.5-prism
SGLang
python3 -m sglang.launch_server \
  --model-path Ex0bit/Kimi-K2.5-PRISM \
  --tp-size 8 \
  --trust-remote-code \
  --served-model-name kimi-k2.5-prism \
  --host 0.0.0.0 \
  --port 8000
Recommended Parameters
Mode Temperature Top-P Max New Tokens
Thinking 1.0 0.95 96000
Instant 0.6 0.95 4096
Switching Modes

For Instant mode (faster, no reasoning), pass:

# Official API
extra_body={"thinking": {"type": "disabled"}}

# vLLM/SGLang
extra_body={"chat_template_kwargs": {"thinking": False}}
Hardware Requirements

Due to the 1T parameter size, this model requires significant hardware:

  • Minimum: 8x A100 80GB or equivalent
  • Recommended: 8x H100 80GB for optimal performance
  • INT4 Quantization: Available for reduced memory footprint
License

This model is released under the PRISM Research License .

Acknowledgments

Based on Kimi-K2.5 by Moonshot AI . See the technical blog for more details on the base model.

Runs of Ex0bit Kimi-K2.5-PRISM on huggingface.co

0
Total runs
0
24-hour runs
0
3-day runs
0
7-day runs
0
30-day runs

More Information About Kimi-K2.5-PRISM huggingface.co Model

More Kimi-K2.5-PRISM license Visit here:

https://choosealicense.com/licenses/prism-research

Kimi-K2.5-PRISM huggingface.co

Kimi-K2.5-PRISM huggingface.co is an AI model on huggingface.co that provides Kimi-K2.5-PRISM's model effect (), which can be used instantly with this Ex0bit Kimi-K2.5-PRISM model. huggingface.co supports a free trial of the Kimi-K2.5-PRISM model, and also provides paid use of the Kimi-K2.5-PRISM. Support call Kimi-K2.5-PRISM model through api, including Node.js, Python, http.

Kimi-K2.5-PRISM huggingface.co Url

https://huggingface.co/Ex0bit/Kimi-K2.5-PRISM

Ex0bit Kimi-K2.5-PRISM online free

Kimi-K2.5-PRISM huggingface.co is an online trial and call api platform, which integrates Kimi-K2.5-PRISM's modeling effects, including api services, and provides a free online trial of Kimi-K2.5-PRISM, you can try Kimi-K2.5-PRISM online for free by clicking the link below.

Ex0bit Kimi-K2.5-PRISM online free url in huggingface.co:

https://huggingface.co/Ex0bit/Kimi-K2.5-PRISM

Kimi-K2.5-PRISM install

Kimi-K2.5-PRISM is an open source model from GitHub that offers a free installation service, and any user can find Kimi-K2.5-PRISM on GitHub to install. At the same time, huggingface.co provides the effect of Kimi-K2.5-PRISM install, users can directly use Kimi-K2.5-PRISM installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Kimi-K2.5-PRISM install url in huggingface.co:

https://huggingface.co/Ex0bit/Kimi-K2.5-PRISM

Url of Kimi-K2.5-PRISM

Kimi-K2.5-PRISM huggingface.co Url

Provider of Kimi-K2.5-PRISM huggingface.co

Ex0bit
ORGANIZATIONS

Other API from Ex0bit

huggingface.co

Total runs: 322
Run Growth: 116
Growth Rate: 36.02%
Updated:February 02 2026
huggingface.co

Total runs: 18
Run Growth: -2.5K
Growth Rate: -13922.22%
Updated:January 25 2026
huggingface.co

Total runs: 16
Run Growth: 5
Growth Rate: 33.33%
Updated:September 17 2025
huggingface.co

Total runs: 9
Run Growth: -6
Growth Rate: -66.67%
Updated:March 06 2026
huggingface.co

Total runs: 2
Run Growth: 0
Growth Rate: 0.00%
Updated:June 12 2024