提示缓存
什么会破坏缓存
对早期消息的任何更改都会破坏缓存。只能在末尾追加新消息。
WARNING
保持消息不变。 在多轮对话中,要获得缓存命中,切勿编辑、删除或重新排序早期消息 — 只能追加新消息。对于推理模型,您必须包含来自先前响应的 reasoning_content;省略它是缓存未命中的最主要原因。
对于推理模型,您可以通过以下两种方式维持缓存命中:
- 发送回加密的推理内容 — 包含来自先前响应的
reasoning_content。详细信息请参见 加密推理内容。 - 使用有状态响应 — 使用
previous_response_id自动继续对话。详细信息请参见 链接对话。
缓存命中 — 追加新消息
提示前缀与之前的请求相同,仅追加了一条新的用户消息:
bash
# Turn 1: Initial request (establishes the cache)
curl https://api.x.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $XAI_API_KEY" \
-H "x-grok-conv-id: conv_abc123" \
-d '{
"model": "grok-4.5",
"messages": [
{"role": "system", "content": "You are Grok, a helpful and truthful AI assistant built by xAI."},
{"role": "user", "content": "What is prompt caching?"},
{"role": "assistant", "content": "Prompt caching stores KV pairs from unchanged prompt prefixes so they can be reused on subsequent requests. This makes responses faster and cheaper."}
]
}'
# Turn 2: Cache HIT — exact prefix preserved, new message appended
curl https://api.x.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $XAI_API_KEY" \
-H "x-grok-conv-id: conv_abc123" \
-d '{
"model": "grok-4.5",
"messages": [
{"role": "system", "content": "You are Grok, a helpful and truthful AI assistant built by xAI."},
{"role": "user", "content": "What is prompt caching?"},
{"role": "assistant", "content": "Prompt caching stores KV pairs from unchanged prompt prefixes so they can be reused on subsequent requests. This makes responses faster and cheaper."},
{"role": "user", "content": "Show me a code example."}
]
}'python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_XAI_API_KEY",
base_url="https://api.x.ai/v1",
)
conversation_id = "conv_abc123"
messages = [
{"role": "system", "content": "You are Grok, a helpful and truthful AI assistant built by xAI."},
{"role": "user", "content": "What is prompt caching?"},
]
# Turn 1: Initial request (establishes the cache)
response = client.chat.completions.create(
model="grok-4.5",
messages=messages,
extra_headers={"x-grok-conv-id": conversation_id},
)
print(f"Turn 1 — Cached tokens: {response.usage.prompt_tokens_details.cached_tokens}")
# Append the assistant's reply and the next user message
messages.append({"role": "assistant", "content": response.choices[0].message.content})
messages.append({"role": "user", "content": "Show me a code example."})
# Turn 2: Cache HIT — prefix is unchanged, only new messages appended
response = client.chat.completions.create(
model="grok-4.5",
messages=messages,
extra_headers={"x-grok-conv-id": conversation_id},
)
print(f"Turn 2 — Cached tokens: {response.usage.prompt_tokens_details.cached_tokens}")javascript
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_XAI_API_KEY',
baseURL: 'https://api.x.ai/v1',
});
const conversationId = 'conv_abc123';
const messages = [
{
role: 'system',
content:
'You are Grok, a helpful and truthful AI assistant built by xAI.',
},
{ role: 'user', content: 'What is prompt caching?' },
];
// Turn 1: Initial request (establishes the cache)
const turn1 = await client.chat.completions.create(
{ model: 'grok-4.5', messages },
{ headers: { 'x-grok-conv-id': conversationId } },
);
console.log(
`Turn 1 — Cached tokens: ${turn1.usage.prompt_tokens_details.cached_tokens}`,
);
// Append the assistant reply and next user message
messages.push({ role: 'assistant', content: turn1.choices[0].message.content });
messages.push({ role: 'user', content: 'Show me a code example.' });
// Turn 2: Cache HIT — prefix unchanged, new message appended
const turn2 = await client.chat.completions.create(
{ model: 'grok-4.5', messages },
{ headers: { 'x-grok-conv-id': conversationId } },
);
console.log(
`Turn 2 — Cached tokens: ${turn2.usage.prompt_tokens_details.cached_tokens}`,
);缓存未命中 — 编辑早期消息
更改任何早期消息的内容会破坏前缀匹配:
bash
# Cache MISS — editing the assistant message content
curl https://api.x.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $XAI_API_KEY" \
-H "x-grok-conv-id: conv_abc123" \
-d '{
"model": "grok-4.5",
"messages": [
{"role": "system", "content": "You are Grok, a helpful and truthful AI assistant built by xAI."},
{"role": "user", "content": "What is prompt caching?"},
{"role": "assistant", "content": "Prompt caching stores KV pairs from unchanged prompt prefixes so they can be reused on subsequent requests. This makes responses faster and cheaper."},
{"role": "assistant", "content": "It stores KV pairs."},
{"role": "user", "content": "Show me a code example."}
]
}'变更内容: 第11行的助手响应被缩短为 "It stores KV pairs."(第12行)。
缓存未命中 — 删除消息
从对话中删除任何消息会破坏前缀:
bash
# Cache MISS — the assistant message was removed
curl https://api.x.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $XAI_API_KEY" \
-H "x-grok-conv-id: conv_abc123" \
-d '{
"model": "grok-4.5",
"messages": [
{"role": "system", "content": "You are Grok, a helpful and truthful AI assistant built by xAI."},
{"role": "user", "content": "What is prompt caching?"},
{"role": "assistant", "content": "Prompt caching stores KV pairs from unchanged prompt prefixes so they can be reused on subsequent requests. This makes responses faster and cheaper."},
{"role": "user", "content": "Show me a code example."}
]
}'变更内容: 第11行的助手消息被完全删除。
缓存未命中 — 重新排序消息
更改消息顺序也会破坏前缀:
bash
# Cache MISS — user and system messages are swapped
curl https://api.x.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $XAI_API_KEY" \
-H "x-grok-conv-id: conv_abc123" \
-d '{
"model": "grok-4.5",
"messages": [
{"role": "user", "content": "What is prompt caching?"},
{"role": "system", "content": "You are Grok, a helpful and truthful AI assistant built by xAI."},
{"role": "assistant", "content": "Prompt caching stores KV pairs from unchanged prompt prefixes so they can be reused on subsequent requests. This makes responses faster and cheaper."},
{"role": "user", "content": "Show me a code example."}
]
}'变更内容: 第9行和第10行被交换 — 用户消息现在位于系统消息之前。