> ## Documentation Index > Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt > Use this file to discover all available pages before exploring further. # Quantization ## Example Usage ```typescript theme={null} import { Quantization } from "@openrouter/sdk/models"; let value: Quantization = "fp16"; // Open enum: unrecognized values are captured as Unrecognized ``` ## Values ```typescript theme={null} "int4" | "int8" | "fp4" | "mxfp4" | "nvfp4" | "fp6" | "fp8" | "mxfp8" | "fp16" | "bf16" | "fp32" | "unknown" | Unrecognized ```