> ## 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. # Prediction Static predicted output content. Supported models can use this to reduce latency when much of the response is known in advance. ## Example Usage ```typescript theme={null} import { Prediction } from "@openrouter/sdk/models"; let value: Prediction = { content: "Expected response", type: "content", }; ``` ## Fields | Field | Type | Required | Description | | --------- | ----------------------------------------------------- | -------------------- | ----------- | | `content` | *models.PredictionContent* | :heavy\_check\_mark: | N/A | | `type` | [models.PredictionType](../models/predictiontype.mdx) | :heavy\_check\_mark: | N/A |