mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-27 01:22:18 +00:00
* ci: run the unit_selection.sh shard files on every event instead of only fork pull requests Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * ci: rename fork-flag to unit-flag now that it applies on every event * test: move tests/test_litellm root and small trees into tests/unit Pure renames, no content changes. Follow-up commits in this PR fix references, merge the three files that already existed in tests/unit, keep live-provider tests in tests/test_litellm and wire CI. * test: carry tests/test_litellm conftest isolation into tests/unit Callback lists, routing fallbacks, cached HTTP clients, logger state, AWS, proxy-URL and keychain env, and session-end client cleanup now reset for unit tests too. The environment isolation owns its MonkeyPatch so a test's own monkeypatch is undone before the model-cost teardown runs. * test: merge, split and prune the moved root and small-tree tests Merge batches/test_batch_utils.py and the chat_completions and messages dispatch tests into the files that already existed in tests/unit. Keep the live Gemini interactions tests, the async image-fetch format test and the OpenAI embedding scorer test in tests/test_litellm since they need real network or keys. Put test_router.py under tests/unit/test_router so the existing package no longer shadows it. Delete eight tests the audit found superseded by stronger ones kept in this move. * ci: run the moved root and small-tree tests under their legacy flags Add the misc and responses-caching-types flags to unit_selection.sh and CircleCI, extend enterprise-routing and mcp-integration, and point the legacy GHA shards, Makefile, redis-compat workflow, merge smoke manifest and change classifier at the new paths. * test: make the new tests/unit directories packages tests/unit/test_package_layout.py requires every directory to carry an __init__.py, and without one the moved and retained test_litellm_responses_bridge.py modules collide on import. * test: scope the unit socket block to tests/unit in shared sessions The GHA shards collect the legacy test-path and the unit selection in one pytest session. The unit conftest's loopback-only block leaked into legacy modules that reach the network at import. The legacy conftest now lifts the restriction at collect and setup time, and the unit conftest re-applies it when collecting its own modules. * test: move tests/test_litellm/llms into tests/unit/llms Rename-only. Moves the provider tests and the fine-tuning fixtures they load, mirroring the old paths. Follow-up commits merge, split and wire them. * test: merge, split and prune the moved llms tests Merges the Databricks chat transformation tests into the existing unit file, keeps the tests that need real keys or the network in tests/test_litellm, deletes the audited tests a stronger unit test already covers, and points imports at tests.unit.llms. * ci: run the moved llms tests under their legacy flags The Vertex AI and All Other Providers shards keep their legacy test-path for the retained files and add the llm-vertex-ai and llm-other-providers unit selections. CircleCI gets matching unit jobs. * test: make the tests/unit/llms directories packages Adds __init__.py to the moved dirs and drops the legacy ones whose directories no longer hold tests. * test: drop script runners and path hacks the llms split left dangling The __main__ runners in the split openai_like files and the Databricks e2e runner called tests that now live in the other half of the split or were deleted. The retained legacy halves also no longer need sys.path edits. * test: give the shard-script tests their own GITHUB_OUTPUT They only passed where the runner set it. The CircleCI unit job's env allowlist drops it, so the script's redirect failed there. * test: point the router and module-deletion checks at tests/unit router_code_coverage and code_qa_check_tests only searched tests/test_litellm, so the moved router tests no longer counted. The two silent-experiment tests the audit deleted were the only direct callers of those methods; they are replaced with tests that assert the forwarded shadow request and the recursion guard. * test: move tests/test_litellm integrations and secret_managers into tests/unit Rename-only. Mirrors the old paths, including the directory conftests and the prompt and JSON fixtures. Follow-up commits prune and wire them. * test: prune and repoint the moved integrations tests Deletes the 7 audited tests a stronger test in the same tree already covers, imports the TLS sink helpers from their new conftest path, and restores os.environ after each integrations test. Some presets write OTEL_EXPORTER_OTLP_HEADERS straight into os.environ, and without the legacy tree's test ordering that header leaked into the AgentOps tests. * ci: run the moved integrations tests under their legacy flag The integrations GHA shard and a new CircleCI job run the integrations unit selection. secret_managers joins the misc selection. * docs: point integrations and secret_managers references at tests/unit * test: make the moved integrations directories packages * test: keep the Databricks manual e2e runner and fix the SageMaker Nova run path The Databricks e2e file is a manual script whose main() calls the tests that were pruned, so pruning them broke the documented run. It is back to its main version. The SageMaker Nova docstring now points at the file's real location in tests/local_testing. * test: keep the job's UNIT_FLAG out of the shard-script tests --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
3608 lines
161 KiB
Python
3608 lines
161 KiB
Python
import copy
|
|
import json
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import textwrap
|
|
from typing import Final, List, Optional, Tuple
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
import litellm
|
|
from litellm.integrations.anthropic_cache_control_hook import (
|
|
AnthropicCacheControlHook,
|
|
supports_openai_prompt_cache_breakpoint,
|
|
)
|
|
from litellm.llms.custom_httpx.http_handler import AsyncHTTPHandler
|
|
from litellm.types.llms.openai import AllMessageValues
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _no_openai_api_base_override(monkeypatch):
|
|
monkeypatch.delenv("OPENAI_BASE_URL", raising=False)
|
|
monkeypatch.delenv("OPENAI_API_BASE", raising=False)
|
|
monkeypatch.setattr(litellm, "api_base", None)
|
|
|
|
|
|
def _rendered_log_message(call):
|
|
message = str(call.args[0])
|
|
values = call.args[1:]
|
|
return message % values if values else message
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_system_message(monkeypatch: pytest.MonkeyPatch):
|
|
# Use patch.dict to mock environment variables instead of setting them directly
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Here is my analysis of the key terms and conditions...",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 100,
|
|
"outputTokens": 200,
|
|
"totalTokens": 300,
|
|
"cacheReadInputTokens": 100,
|
|
"cacheWriteInputTokens": 200,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
# Mock AsyncHTTPHandler.post method
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
response = await litellm.acompletion(
|
|
model="bedrock/anthropic.claude-3-5-haiku-20241022-v1:0",
|
|
messages=[
|
|
{
|
|
"role": "system",
|
|
"content": [
|
|
{
|
|
"type": "text",
|
|
"text": "You are an AI assistant tasked with analyzing legal documents.",
|
|
},
|
|
{
|
|
"type": "text",
|
|
"text": "Here is the full text of a complex legal agreement",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "what are the key terms and conditions in this agreement?",
|
|
},
|
|
],
|
|
cache_control_injection_points=[
|
|
{
|
|
"location": "message",
|
|
"role": "system",
|
|
},
|
|
],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
print("request_body: ", json.dumps(request_body, indent=4))
|
|
|
|
# Verify that cache control was applied (Bedrock transforms it to a separate item)
|
|
cache_control_count = sum(
|
|
1 for item in request_body["system"] if isinstance(item, dict) and "cachePoint" in item
|
|
)
|
|
assert cache_control_count == 1, f"Expected exactly 1 cache control point, found {cache_control_count}"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_user_message(monkeypatch: pytest.MonkeyPatch):
|
|
# Use patch.dict to mock environment variables instead of setting them directly
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Here is my analysis of the key terms and conditions...",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 100,
|
|
"outputTokens": 200,
|
|
"totalTokens": 300,
|
|
"cacheReadInputTokens": 100,
|
|
"cacheWriteInputTokens": 200,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
# Mock AsyncHTTPHandler.post method
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
response = await litellm.acompletion(
|
|
model="bedrock/anthropic.claude-3-5-haiku-20241022-v1:0",
|
|
messages=[
|
|
{
|
|
"role": "assistant",
|
|
"content": [
|
|
{
|
|
"type": "text",
|
|
"text": "You are an AI assistant tasked with analyzing legal documents.",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "what are the key terms and conditions in this agreement? <very_long_text>",
|
|
},
|
|
],
|
|
cache_control_injection_points=[
|
|
{
|
|
"location": "message",
|
|
"role": "user",
|
|
},
|
|
],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
print("request_body: ", json.dumps(request_body, indent=4))
|
|
|
|
# Verify the request body
|
|
assert request_body["messages"][1]["content"][1]["cachePoint"] == {"type": "default"}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_negative_indices(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Test the bug fix for handling negative indices in cache control injection points.
|
|
This test verifies that negative indices (-1, -2) are properly converted to positive indices
|
|
and cache control is applied to the correct messages.
|
|
"""
|
|
# Use patch.dict to mock environment variables instead of setting them directly
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Here is my analysis of the key terms and conditions...",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 100,
|
|
"outputTokens": 200,
|
|
"totalTokens": 300,
|
|
"cacheReadInputTokens": 100,
|
|
"cacheWriteInputTokens": 200,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
# Mock AsyncHTTPHandler.post method
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
# Test with multiple messages and negative indices
|
|
response = await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=[
|
|
{
|
|
"role": "system",
|
|
"content": "You are an AI assistant tasked with analyzing legal documents.",
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "Here is the first part of the document.",
|
|
},
|
|
{
|
|
"role": "assistant",
|
|
"content": "I understand. Please provide the document.",
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "Here is the full legal document text that should be cached.",
|
|
},
|
|
],
|
|
cache_control_injection_points=[
|
|
{
|
|
"location": "message",
|
|
"index": -1, # Should target the last message (index 3)
|
|
},
|
|
{
|
|
"location": "message",
|
|
"index": -2, # Should target the second-to-last message (index 2)
|
|
},
|
|
],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
print("request_body: ", json.dumps(request_body, indent=4))
|
|
|
|
# The input `messages` has 4 elements. After removing the system message,
|
|
# the `request_body["messages"]` will have 3 elements (indices 0, 1, 2).
|
|
|
|
# Verify the last message (input index -1 -> request index 2) has cache control
|
|
last_message_content = request_body["messages"][2]["content"]
|
|
assert isinstance(last_message_content, list), "Last message content should be a list"
|
|
assert any("cachePoint" in item for item in last_message_content if isinstance(item, dict)), (
|
|
"CachePoint missing in last message"
|
|
)
|
|
|
|
# Note: Based on debug output, the hook correctly applies cache control to both messages,
|
|
# but the Bedrock API transformation appears to only preserve cache control for user messages,
|
|
# not assistant messages. This is a limitation of the API transformation layer.
|
|
#
|
|
# The second-to-last message (assistant) gets cache_control from the hook but loses it
|
|
# during API transformation. This test documents this behavior.
|
|
second_last_message_content = request_body["messages"][1]["content"]
|
|
assert isinstance(second_last_message_content, list), "Second-to-last message content should be a list"
|
|
|
|
# Check if assistant message cache control is preserved (currently it's not)
|
|
assistant_has_cache_control = any(
|
|
"cachePoint" in item for item in second_last_message_content if isinstance(item, dict)
|
|
)
|
|
print(f"Assistant message has cache control in final request: {assistant_has_cache_control}")
|
|
|
|
# Verify the first user message (request index 0) was NOT modified
|
|
first_user_message_content = request_body["messages"][0]["content"]
|
|
assert isinstance(first_user_message_content, list), "First user message content should be a list"
|
|
assert not any("cachePoint" in item for item in first_user_message_content if isinstance(item, dict)), (
|
|
"CachePoint unexpectedly found in first user message"
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_out_of_bounds_logging(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Test that warning logs are generated when out-of-bounds indices are used.
|
|
This verifies that the verbose_logger.warning is called with the correct message.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 50,
|
|
"outputTokens": 100,
|
|
"totalTokens": 150,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
|
|
# Mock the verbose_logger to capture warning calls
|
|
with patch("litellm.integrations.anthropic_cache_control_hook.verbose_logger") as mock_logger:
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
messages = [
|
|
{"role": "user", "content": "Message 1"},
|
|
{"role": "user", "content": "Message 2"},
|
|
]
|
|
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=messages,
|
|
cache_control_injection_points=[{"location": "message", "index": 10}], # Out of bounds index
|
|
client=client,
|
|
)
|
|
|
|
# Verify that warning was called with the expected message
|
|
mock_logger.warning.assert_called_once()
|
|
warning_call = _rendered_log_message(mock_logger.warning.call_args)
|
|
|
|
# Check that the warning message contains the expected information
|
|
assert "AnthropicCacheControlHook: Provided index 10 is out of bounds" in warning_call
|
|
assert "message list of length 2" in warning_call
|
|
assert "Targeted index was 10" in warning_call
|
|
assert "Skipping cache control injection for this point" in warning_call
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_negative_out_of_bounds_logging(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Test that warning logs are generated for negative indices that are out of bounds.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 50,
|
|
"outputTokens": 100,
|
|
"totalTokens": 150,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
|
|
# Mock the verbose_logger to capture warning calls
|
|
with patch("litellm.integrations.anthropic_cache_control_hook.verbose_logger") as mock_logger:
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
messages = [
|
|
{"role": "user", "content": "Single message"},
|
|
]
|
|
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=messages,
|
|
cache_control_injection_points=[
|
|
{
|
|
"location": "message",
|
|
"index": -5,
|
|
} # Negative out of bounds index
|
|
],
|
|
client=client,
|
|
)
|
|
|
|
# Verify that warning was called with the expected message
|
|
mock_logger.warning.assert_called_once()
|
|
warning_call = _rendered_log_message(mock_logger.warning.call_args)
|
|
|
|
# Check that the warning message contains the original negative index
|
|
assert "AnthropicCacheControlHook: Provided index -5 is out of bounds" in warning_call
|
|
assert "message list of length 1" in warning_call
|
|
assert "Targeted index was -4" in warning_call # -5 + 1 = -4 (converted index)
|
|
assert "Skipping cache control injection for this point" in warning_call
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_multiple_user_messages(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Test cache control injection on multiple user messages specifically.
|
|
Note: Bedrock API combines consecutive user messages into a single message with multiple content blocks.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 100,
|
|
"outputTokens": 200,
|
|
"totalTokens": 300,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
# Test with multiple user messages and negative indices
|
|
response = await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=[
|
|
{
|
|
"role": "user",
|
|
"content": "First user message.",
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "Second user message.",
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "Third user message that should be cached.",
|
|
},
|
|
],
|
|
cache_control_injection_points=[
|
|
{
|
|
"location": "message",
|
|
"index": -1, # Should target the last message (index 2)
|
|
},
|
|
{
|
|
"location": "message",
|
|
"index": -2, # Should target the second-to-last message (index 1)
|
|
},
|
|
],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
print(
|
|
"Multiple user messages request_body: ",
|
|
json.dumps(request_body, indent=4),
|
|
)
|
|
|
|
# Bedrock API combines consecutive user messages into a single message
|
|
assert len(request_body["messages"]) == 1
|
|
|
|
# The combined message should have multiple content blocks with cache control
|
|
combined_message_content = request_body["messages"][0]["content"]
|
|
assert isinstance(combined_message_content, list)
|
|
|
|
# Count cache control points - should have 2 since both injection points were applied
|
|
cache_control_count = sum(
|
|
1 for item in combined_message_content if isinstance(item, dict) and "cachePoint" in item
|
|
)
|
|
assert cache_control_count == 2
|
|
|
|
print(f"Found {cache_control_count} cache control points in the combined message")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize("bad_index", [10, -10])
|
|
async def test_anthropic_cache_control_hook_out_of_bounds(bad_index, monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Verify the hook does not raise an error and makes no changes
|
|
when an out-of-bounds index is provided.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 50,
|
|
"outputTokens": 100,
|
|
"totalTokens": 150,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
messages = [
|
|
{"role": "user", "content": "Message 1"},
|
|
{"role": "user", "content": "Message 2"},
|
|
]
|
|
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=messages,
|
|
cache_control_injection_points=[{"location": "message", "index": bad_index}],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
# Assert that NO cache control was applied to any message
|
|
for msg in request_body["messages"]:
|
|
content = msg.get("content", [])
|
|
if isinstance(content, list):
|
|
assert not any("cachePoint" in item for item in content if isinstance(item, dict))
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize(
|
|
"message_list",
|
|
[[{"role": "user", "content": "Single message"}]], # Single message only - empty list will fail at API level
|
|
)
|
|
async def test_anthropic_cache_control_hook_single_message(message_list, monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Verify the hook runs without error on very short message lists.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 50,
|
|
"outputTokens": 100,
|
|
"totalTokens": 150,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=message_list,
|
|
cache_control_injection_points=[{"location": "message", "index": -1}],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
# For the single message, verify cache control was applied
|
|
content = request_body["messages"][0]["content"]
|
|
assert isinstance(content, list)
|
|
assert any("cachePoint" in item for item in content if isinstance(item, dict))
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_empty_message_list(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Verify that empty message lists are handled appropriately (should fail at API level, not hook level).
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=MagicMock()) as mock_post:
|
|
# This should fail at the API level, not the hook level
|
|
with pytest.raises(
|
|
litellm.BadRequestError,
|
|
match="bedrock requires at least one non-system message",
|
|
):
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=[],
|
|
cache_control_injection_points=[{"location": "message", "index": -1}],
|
|
client=client,
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_no_op(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Verify that if no injection points are specified, messages remain unmodified.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
# Mock response data
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 50,
|
|
"outputTokens": 100,
|
|
"totalTokens": 150,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
messages = [
|
|
{"role": "user", "content": "Message 1"},
|
|
{"role": "user", "content": "Message 2"},
|
|
]
|
|
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=messages,
|
|
# No cache_control_injection_points parameter
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
# Assert that NO cache control was applied
|
|
for msg in request_body["messages"]:
|
|
content = msg.get("content", [])
|
|
if isinstance(content, list):
|
|
assert not any("cachePoint" in item for item in content if isinstance(item, dict))
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_multiple_content_items_last_only(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Test that cache_control is only applied to the last content item in a list, not all items.
|
|
This verifies the fix for https://github.com/BerriAI/litellm/issues/15696
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 100,
|
|
"outputTokens": 200,
|
|
"totalTokens": 300,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
response = await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=[
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "text", "text": "First piece of context"},
|
|
{"type": "text", "text": "Second piece of context"},
|
|
{"type": "text", "text": "Third piece of context"},
|
|
{"type": "text", "text": "Fourth piece of context"},
|
|
{
|
|
"type": "text",
|
|
"text": "Fifth piece of context - should be cached",
|
|
},
|
|
],
|
|
}
|
|
],
|
|
cache_control_injection_points=[{"location": "message", "index": -1}],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
print("Multi-content request_body: ", json.dumps(request_body, indent=4))
|
|
|
|
message_content = request_body["messages"][0]["content"]
|
|
assert isinstance(message_content, list)
|
|
|
|
cache_control_count = sum(1 for item in message_content if isinstance(item, dict) and "cachePoint" in item)
|
|
assert cache_control_count == 1, (
|
|
f"Expected exactly 1 cache control point, found {cache_control_count}. This test verifies the fix for issue 15696 where cache_control was incorrectly applied to ALL content items."
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_document_analysis_multiple_pages(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Test cache_control with multiple document pages to ensure only the last page gets cached.
|
|
This simulates document analysis with 6 content blocks, verifying the fix for issue 15696.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Summary",
|
|
}
|
|
},
|
|
"stopReason": "stop_sequence",
|
|
"usage": {
|
|
"inputTokens": 100,
|
|
"outputTokens": 200,
|
|
"totalTokens": 300,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
response = await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=[
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "text", "text": "Summarize this document"},
|
|
{"type": "text", "text": "Page 1 content"},
|
|
{"type": "text", "text": "Page 2 content"},
|
|
{"type": "text", "text": "Page 3 content"},
|
|
{"type": "text", "text": "Page 4 content"},
|
|
{
|
|
"type": "text",
|
|
"text": "Page 5 content - final page to cache",
|
|
},
|
|
],
|
|
}
|
|
],
|
|
cache_control_injection_points=[{"location": "message", "role": "user"}],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
print("Document analysis request_body: ", json.dumps(request_body, indent=4))
|
|
|
|
message_content = request_body["messages"][0]["content"]
|
|
assert isinstance(message_content, list)
|
|
|
|
cache_control_count = sum(1 for item in message_content if isinstance(item, dict) and "cachePoint" in item)
|
|
assert cache_control_count == 1, (
|
|
f"Expected exactly 1 cache control point (last item only), found {cache_control_count}. Before fix, this would be 6 (one for each content item)."
|
|
)
|
|
|
|
|
|
def test_gemini_cache_control_injection_points_detected():
|
|
"""
|
|
Test that cache_control_injection_points work for Gemini models.
|
|
|
|
Verifies the full flow:
|
|
1. The hook injects cache_control markers on string-content messages
|
|
2. is_cached_message() detects the injected markers (message-level cache_control)
|
|
3. separate_cached_messages() correctly separates the messages
|
|
|
|
Fixes GitHub issue #18519.
|
|
"""
|
|
from litellm.llms.vertex_ai.context_caching.transformation import (
|
|
separate_cached_messages,
|
|
)
|
|
from litellm.utils import is_cached_message
|
|
|
|
hook = AnthropicCacheControlHook()
|
|
|
|
# Simulate messages as they would appear for a Gemini call with string content
|
|
messages: List[AllMessageValues] = [
|
|
{
|
|
"role": "system",
|
|
"content": "You are a helpful assistant that analyzes legal documents.",
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "What are the key terms?",
|
|
},
|
|
]
|
|
|
|
# Simulate what the hook does: inject cache_control on the system message
|
|
injection_points = [{"location": "message", "role": "system"}]
|
|
|
|
# Manually apply the hook's logic for the system message (string content case)
|
|
# The hook sets message["cache_control"] = {"type": "ephemeral"} for string content
|
|
hook._safe_insert_cache_control_in_message(
|
|
message=messages[0],
|
|
control={"type": "ephemeral"},
|
|
)
|
|
|
|
# Verify the hook injected message-level cache_control (string content path)
|
|
assert messages[0].get("cache_control") == {"type": "ephemeral"}
|
|
|
|
# Verify is_cached_message detects message-level cache_control
|
|
assert is_cached_message(messages[0]) is True
|
|
assert is_cached_message(messages[1]) is False
|
|
|
|
# Verify separate_cached_messages correctly separates them
|
|
cached, non_cached = separate_cached_messages(messages)
|
|
assert len(cached) == 1
|
|
assert cached[0]["role"] == "system"
|
|
assert len(non_cached) == 1
|
|
assert non_cached[0]["role"] == "user"
|
|
|
|
|
|
def test_gemini_cache_control_injection_list_content_detected():
|
|
"""
|
|
Test that cache_control_injection_points work for Gemini models
|
|
when the message content is a list (not string).
|
|
"""
|
|
from litellm.llms.vertex_ai.context_caching.transformation import (
|
|
separate_cached_messages,
|
|
)
|
|
from litellm.utils import is_cached_message
|
|
|
|
hook = AnthropicCacheControlHook()
|
|
|
|
messages: List[AllMessageValues] = [
|
|
{
|
|
"role": "system",
|
|
"content": [
|
|
{"type": "text", "text": "You are a helpful assistant."},
|
|
{"type": "text", "text": "Analyze legal documents carefully."},
|
|
],
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "What are the key terms?",
|
|
},
|
|
]
|
|
|
|
# Apply the hook's logic for list content - sets cache_control on last item
|
|
hook._safe_insert_cache_control_in_message(
|
|
message=messages[0],
|
|
control={"type": "ephemeral"},
|
|
)
|
|
|
|
# Verify cache_control was set on the last content item
|
|
assert messages[0]["content"][-1]["cache_control"] == {"type": "ephemeral"}
|
|
|
|
# Verify is_cached_message detects content-item-level cache_control
|
|
assert is_cached_message(messages[0]) is True
|
|
assert is_cached_message(messages[1]) is False
|
|
|
|
# Verify separate_cached_messages correctly separates them
|
|
cached, non_cached = separate_cached_messages(messages)
|
|
assert len(cached) == 1
|
|
assert len(non_cached) == 1
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_anthropic_cache_control_hook_string_negative_index(monkeypatch: pytest.MonkeyPatch):
|
|
"""
|
|
Test that string negative indices like "-1" are handled correctly.
|
|
|
|
When cache_control_injection_points are stored in DB/config as JSON, indices
|
|
like -1 become the string "-1". Previously, str.isdigit() returned False for
|
|
"-1" so the cache control was silently skipped. This tests the fix.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-west-2",
|
|
},
|
|
):
|
|
anthropic_cache_control_hook = AnthropicCacheControlHook()
|
|
monkeypatch.setattr(litellm, "callbacks", [anthropic_cache_control_hook])
|
|
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": "Response",
|
|
}
|
|
},
|
|
"stopReason": "end_turn",
|
|
"usage": {
|
|
"inputTokens": 100,
|
|
"outputTokens": 50,
|
|
"totalTokens": 150,
|
|
},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
messages=[
|
|
{"role": "user", "content": "First message"},
|
|
{"role": "assistant", "content": "First response"},
|
|
{"role": "user", "content": "Second message"},
|
|
],
|
|
# index is a string "-1" (as stored in DB/config JSON)
|
|
cache_control_injection_points=[
|
|
{"location": "message", "index": "-1"},
|
|
],
|
|
client=client,
|
|
)
|
|
|
|
mock_post.assert_called_once()
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
# The last user message should have cache control applied
|
|
last_message = request_body["messages"][-1]
|
|
last_message_content = last_message["content"]
|
|
assert isinstance(last_message_content, list), f"Expected list content, got {type(last_message_content)}"
|
|
has_cache_point = any(isinstance(item, dict) and "cachePoint" in item for item in last_message_content)
|
|
assert has_cache_point, (
|
|
f"Expected cachePoint in last message content, got: {last_message_content}. "
|
|
"String index '-1' was not parsed correctly (str.isdigit() returns False for negative strings)."
|
|
)
|
|
|
|
|
|
def _count_cache_control(messages: List[AllMessageValues]) -> int:
|
|
"""Count cache_control breakpoints across messages (message + content level)."""
|
|
count = 0
|
|
for message in messages:
|
|
if message.get("cache_control") is not None:
|
|
count += 1
|
|
content = message.get("content")
|
|
if isinstance(content, list):
|
|
for block in content:
|
|
if isinstance(block, dict) and block.get("cache_control") is not None:
|
|
count += 1
|
|
return count
|
|
|
|
|
|
def _build_injection_points():
|
|
return [
|
|
{
|
|
"location": "message",
|
|
"role": "system",
|
|
"control": {"type": "ephemeral", "ttl": "1h"},
|
|
},
|
|
{
|
|
"location": "message",
|
|
"index": -1,
|
|
"control": {"type": "ephemeral", "ttl": "5m"},
|
|
},
|
|
]
|
|
|
|
|
|
def test_cache_control_hook_caps_at_four_blocks_with_client_cache_control():
|
|
"""Regression for LIT-3667 / Anthropic 'A maximum of 4 blocks ... Found 5'.
|
|
|
|
A Hermes-style request already carries 4 client cache_control breakpoints on
|
|
its system messages. With both auto-inject points configured the hook must
|
|
NOT add a 5th breakpoint, and must NOT overwrite the client's existing
|
|
breakpoints (TTL must be preserved).
|
|
"""
|
|
hook = AnthropicCacheControlHook()
|
|
|
|
messages: List[AllMessageValues] = [
|
|
{
|
|
"role": "system",
|
|
"content": [
|
|
{
|
|
"type": "text",
|
|
"text": f"System block {i}",
|
|
"cache_control": {"type": "ephemeral", "ttl": "1h"},
|
|
}
|
|
],
|
|
}
|
|
for i in range(4)
|
|
]
|
|
messages.append({"role": "user", "content": "hello"})
|
|
|
|
_, processed, _ = hook.get_chat_completion_prompt(
|
|
model="bedrock/us.anthropic.claude-opus-4-6-v1:0",
|
|
messages=messages,
|
|
non_default_params={"cache_control_injection_points": _build_injection_points()},
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
|
|
assert _count_cache_control(processed) == 4, "Hook must cap cache_control at Anthropic's limit of 4 blocks"
|
|
|
|
# Client TTL on system blocks must be preserved (not overwritten by config).
|
|
for i in range(4):
|
|
assert processed[i]["content"][-1]["cache_control"] == {
|
|
"type": "ephemeral",
|
|
"ttl": "1h",
|
|
}
|
|
|
|
# The last (user) message must not receive a 5th breakpoint.
|
|
user_message = processed[-1]
|
|
assert user_message.get("cache_control") is None
|
|
user_content = user_message.get("content")
|
|
if isinstance(user_content, list):
|
|
assert all(block.get("cache_control") is None for block in user_content if isinstance(block, dict))
|
|
|
|
|
|
def test_cache_control_hook_caps_at_four_blocks_without_client_cache_control():
|
|
"""Four plain system messages + role:system + index:-1 must stay at 4 blocks.
|
|
|
|
role:system fills all four slots, so the index:-1 point is skipped.
|
|
"""
|
|
hook = AnthropicCacheControlHook()
|
|
|
|
messages: List[AllMessageValues] = [{"role": "system", "content": f"System {i}"} for i in range(4)]
|
|
messages.append({"role": "user", "content": "hello"})
|
|
|
|
_, processed, _ = hook.get_chat_completion_prompt(
|
|
model="bedrock/us.anthropic.claude-opus-4-6-v1:0",
|
|
messages=messages,
|
|
non_default_params={"cache_control_injection_points": _build_injection_points()},
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
|
|
assert _count_cache_control(processed) == 4
|
|
# All four system messages cached; user message skipped (limit reached).
|
|
assert all(processed[i].get("cache_control") is not None for i in range(4))
|
|
assert processed[-1].get("cache_control") is None
|
|
|
|
|
|
def test_cache_control_hook_does_not_overwrite_existing_cache_control():
|
|
"""If a targeted message already has client cache_control, do not inject."""
|
|
hook = AnthropicCacheControlHook()
|
|
|
|
messages: List[AllMessageValues] = [
|
|
{
|
|
"role": "system",
|
|
"content": [
|
|
{
|
|
"type": "text",
|
|
"text": "Cached by client",
|
|
"cache_control": {"type": "ephemeral", "ttl": "1h"},
|
|
}
|
|
],
|
|
},
|
|
{"role": "user", "content": "hello"},
|
|
]
|
|
|
|
_, processed, _ = hook.get_chat_completion_prompt(
|
|
model="bedrock/us.anthropic.claude-opus-4-6-v1:0",
|
|
messages=messages,
|
|
# Target the already-cached system message with a different TTL.
|
|
non_default_params={
|
|
"cache_control_injection_points": [
|
|
{
|
|
"location": "message",
|
|
"index": 0,
|
|
"control": {"type": "ephemeral", "ttl": "5m"},
|
|
}
|
|
]
|
|
},
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
|
|
# Client's 1h TTL must be preserved, not replaced by the config's 5m.
|
|
assert processed[0]["content"][-1]["cache_control"] == {
|
|
"type": "ephemeral",
|
|
"ttl": "1h",
|
|
}
|
|
assert _count_cache_control(processed) == 1
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_cache_control_hook_bedrock_payload_caps_cachepoints_at_four(monkeypatch: pytest.MonkeyPatch):
|
|
"""End-to-end: outgoing Bedrock payload must not exceed 4 cachePoint blocks.
|
|
|
|
Reproduces the customer report where 4 client cache_control system blocks
|
|
plus auto-inject produced 5 cachePoint blocks and Bedrock returned 400.
|
|
"""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-east-1",
|
|
},
|
|
):
|
|
monkeypatch.setattr(litellm, "callbacks", [AnthropicCacheControlHook()])
|
|
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {"message": {"role": "assistant", "content": "ok"}},
|
|
"stopReason": "end_turn",
|
|
"usage": {"inputTokens": 100, "outputTokens": 4, "totalTokens": 104},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
messages = [
|
|
{
|
|
"role": "system",
|
|
"content": [
|
|
{
|
|
"type": "text",
|
|
"text": f"System block {i}",
|
|
"cache_control": {"type": "ephemeral", "ttl": "1h"},
|
|
}
|
|
],
|
|
}
|
|
for i in range(4)
|
|
]
|
|
messages.append({"role": "user", "content": "hello"})
|
|
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-opus-4-6-v1:0",
|
|
messages=messages,
|
|
max_tokens=32,
|
|
cache_control_injection_points=_build_injection_points(),
|
|
client=client,
|
|
)
|
|
|
|
request_body = json.loads(mock_post.call_args.kwargs["data"])
|
|
|
|
cache_points = sum(
|
|
1 for block in request_body.get("system", []) if isinstance(block, dict) and "cachePoint" in block
|
|
)
|
|
for msg in request_body.get("messages", []):
|
|
content = msg.get("content", [])
|
|
if isinstance(content, list):
|
|
cache_points += sum(1 for block in content if isinstance(block, dict) and "cachePoint" in block)
|
|
|
|
assert cache_points <= 4, (
|
|
f"Bedrock payload exceeded Anthropic's 4 cache_control block limit: "
|
|
f"found {cache_points} cachePoint blocks"
|
|
)
|
|
|
|
|
|
def test_cache_control_hook_reserves_slot_for_tool_config_point():
|
|
"""A tool_config injection point consumes one of the 4 slots downstream.
|
|
|
|
With role:system targeting 4 system messages plus a tool_config point, the
|
|
hook must inject at most 3 message-level blocks so the tool_config cachePoint
|
|
appended by the Bedrock transform keeps the total at 4, not 5.
|
|
"""
|
|
hook = AnthropicCacheControlHook()
|
|
|
|
messages: List[AllMessageValues] = [{"role": "system", "content": f"System {i}"} for i in range(4)]
|
|
messages.append({"role": "user", "content": "hello"})
|
|
|
|
_, processed, non_default_params = hook.get_chat_completion_prompt(
|
|
model="bedrock/us.anthropic.claude-opus-4-6-v1:0",
|
|
messages=messages,
|
|
non_default_params={
|
|
"cache_control_injection_points": [
|
|
{
|
|
"location": "message",
|
|
"role": "system",
|
|
"control": {"type": "ephemeral", "ttl": "1h"},
|
|
},
|
|
{"location": "tool_config"},
|
|
]
|
|
},
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
|
|
assert _count_cache_control(processed) == 3
|
|
assert non_default_params["cache_control_injection_points"] == [{"location": "tool_config"}]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_cache_control_hook_bedrock_payload_caps_with_tool_config_point(monkeypatch: pytest.MonkeyPatch):
|
|
"""End-to-end: message + tool_config injection must not exceed 4 cachePoints."""
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-east-1",
|
|
},
|
|
):
|
|
monkeypatch.setattr(litellm, "callbacks", [AnthropicCacheControlHook()])
|
|
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {"message": {"role": "assistant", "content": "ok"}},
|
|
"stopReason": "end_turn",
|
|
"usage": {"inputTokens": 100, "outputTokens": 4, "totalTokens": 104},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
messages = [{"role": "system", "content": f"System block {i}"} for i in range(4)]
|
|
messages.append({"role": "user", "content": "What is the weather?"})
|
|
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-opus-4-6-v1:0",
|
|
messages=messages,
|
|
max_tokens=32,
|
|
tools=[
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_weather",
|
|
"description": "Get weather for a location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {"location": {"type": "string"}},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
],
|
|
cache_control_injection_points=[
|
|
{
|
|
"location": "message",
|
|
"role": "system",
|
|
"control": {"type": "ephemeral", "ttl": "1h"},
|
|
},
|
|
{"location": "tool_config"},
|
|
],
|
|
client=client,
|
|
)
|
|
|
|
request_body = _ConverseBody.model_validate_json(mock_post.call_args.kwargs["data"])
|
|
cache_points = _count_converse_cache_points(request_body)
|
|
|
|
assert cache_points <= 4, (
|
|
f"Bedrock payload exceeded Anthropic's 4 cache_control block limit "
|
|
f"when mixing message and tool_config injection: found {cache_points}"
|
|
)
|
|
|
|
|
|
class _ConverseMessage(BaseModel):
|
|
model_config = ConfigDict(frozen=True)
|
|
|
|
content: tuple[dict[str, object], ...] = ()
|
|
|
|
|
|
class _ConverseToolConfig(BaseModel):
|
|
model_config = ConfigDict(frozen=True)
|
|
|
|
tools: tuple[dict[str, object], ...] = ()
|
|
|
|
|
|
class _ConverseBody(BaseModel):
|
|
model_config = ConfigDict(frozen=True)
|
|
|
|
system: tuple[dict[str, object], ...] = ()
|
|
messages: tuple[_ConverseMessage, ...] = ()
|
|
toolConfig: _ConverseToolConfig = _ConverseToolConfig()
|
|
|
|
|
|
def _count_converse_cache_points(request_body: _ConverseBody) -> int:
|
|
blocks: Final = (
|
|
*request_body.system,
|
|
*(block for message in request_body.messages for block in message.content),
|
|
*request_body.toolConfig.tools,
|
|
)
|
|
return sum(1 for block in blocks if "cachePoint" in block)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_cache_control_hook_bedrock_tool_config_point_stands_down_when_client_marks_fill_the_cap(
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
):
|
|
with patch.dict(
|
|
os.environ,
|
|
{
|
|
"AWS_ACCESS_KEY_ID": "fake_access_key_id",
|
|
"AWS_SECRET_ACCESS_KEY": "fake_secret_access_key",
|
|
"AWS_REGION_NAME": "us-east-1",
|
|
},
|
|
):
|
|
monkeypatch.setattr(litellm, "callbacks", [AnthropicCacheControlHook()])
|
|
|
|
mock_response = MagicMock()
|
|
mock_response.json.return_value = {
|
|
"output": {"message": {"role": "assistant", "content": "ok"}},
|
|
"stopReason": "end_turn",
|
|
"usage": {"inputTokens": 100, "outputTokens": 4, "totalTokens": 104},
|
|
}
|
|
mock_response.status_code = 200
|
|
|
|
client = AsyncHTTPHandler()
|
|
with patch.object(client, "post", return_value=mock_response) as mock_post:
|
|
marked = {"type": "ephemeral"}
|
|
messages = [
|
|
{"role": "system", "content": [{"type": "text", "text": "sys", "cache_control": marked}]},
|
|
*(
|
|
{"role": "user", "content": [{"type": "text", "text": f"turn {i}", "cache_control": marked}]}
|
|
for i in range(3)
|
|
),
|
|
{"role": "user", "content": "What is the weather?"},
|
|
]
|
|
|
|
await litellm.acompletion(
|
|
model="bedrock/us.anthropic.claude-opus-4-6-v1:0",
|
|
messages=messages,
|
|
max_tokens=32,
|
|
tools=[
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_weather",
|
|
"description": "Get weather for a location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {"location": {"type": "string"}},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
],
|
|
cache_control_injection_points=[{"location": "tool_config"}],
|
|
client=client,
|
|
)
|
|
|
|
request_body = _ConverseBody.model_validate_json(mock_post.call_args.kwargs["data"])
|
|
|
|
assert _count_converse_cache_points(request_body) == 4
|
|
assert not any("cachePoint" in tool for tool in request_body.toolConfig.tools)
|
|
|
|
|
|
class TestApplyToAnthropicMessagesRequest:
|
|
"""Tests for apply_to_anthropic_messages_request (v1/messages cache control)."""
|
|
|
|
def test_system_string_injection(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "Hello"}]}]
|
|
system = "You are helpful"
|
|
injection_points = [{"location": "message", "role": "system"}]
|
|
|
|
result_msgs, result_sys, remaining = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=system,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert result_sys == [{"type": "text", "text": "You are helpful", "cache_control": {"type": "ephemeral"}}]
|
|
assert result_msgs == messages
|
|
assert remaining == []
|
|
|
|
def test_system_list_injection(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "Hello"}]}]
|
|
system = [
|
|
{"type": "text", "text": "Part 1"},
|
|
{"type": "text", "text": "Part 2"},
|
|
]
|
|
injection_points = [{"location": "message", "role": "system"}]
|
|
|
|
_, result_sys, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=system,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert result_sys[0] == {"type": "text", "text": "Part 1"}
|
|
assert result_sys[1] == {"type": "text", "text": "Part 2", "cache_control": {"type": "ephemeral"}}
|
|
|
|
def test_user_message_injection_by_role(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "First"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "Response"}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "Second"}]},
|
|
]
|
|
injection_points = [{"location": "message", "role": "user"}]
|
|
|
|
result_msgs, _, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=None,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert result_msgs[0]["content"][-1].get("cache_control") == {"type": "ephemeral"}
|
|
assert result_msgs[2]["content"][-1].get("cache_control") == {"type": "ephemeral"}
|
|
assert result_msgs[1]["content"][-1].get("cache_control") is None
|
|
|
|
def test_message_injection_by_index(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "First"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "Response"}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "Second"}]},
|
|
]
|
|
injection_points = [{"location": "message", "index": -1}]
|
|
|
|
result_msgs, _, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=None,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert result_msgs[2]["content"][-1].get("cache_control") == {"type": "ephemeral"}
|
|
assert result_msgs[0]["content"][-1].get("cache_control") is None
|
|
assert result_msgs[1]["content"][-1].get("cache_control") is None
|
|
|
|
def test_mixed_system_and_message_injection(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "Hello"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "Hi"}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "Question"}]},
|
|
]
|
|
system = "System prompt"
|
|
injection_points = [
|
|
{"location": "message", "role": "system"},
|
|
{"location": "message", "index": -1},
|
|
]
|
|
|
|
result_msgs, result_sys, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=system,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert result_sys[0]["cache_control"] == {"type": "ephemeral"}
|
|
assert result_msgs[2]["content"][-1].get("cache_control") == {"type": "ephemeral"}
|
|
|
|
def test_respects_max_4_blocks(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": f"Msg {i}"}]} for i in range(6)]
|
|
system = "System"
|
|
injection_points = [
|
|
{"location": "message", "role": "system"},
|
|
{"location": "message", "role": "user"},
|
|
]
|
|
|
|
result_msgs, result_sys, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=system,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
sys_blocks = sum(1 for b in (result_sys or []) if isinstance(b, dict) and b.get("cache_control") is not None)
|
|
total_blocks = sys_blocks + sum(AnthropicCacheControlHook._count_cache_control_blocks(m) for m in result_msgs)
|
|
assert total_blocks <= 4
|
|
|
|
def test_tool_config_points_forwarded_as_remaining(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "Hello"}]}]
|
|
injection_points = [
|
|
{"location": "message", "role": "user"},
|
|
{"location": "tool_config"},
|
|
]
|
|
|
|
_, _, remaining = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=None,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert remaining == [{"location": "tool_config"}]
|
|
|
|
def test_no_injection_points_returns_unchanged(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "Hello"}]}]
|
|
system = "System"
|
|
|
|
result_msgs, result_sys, remaining = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=system,
|
|
injection_points=[],
|
|
)
|
|
|
|
assert result_msgs == messages
|
|
assert result_sys == system
|
|
assert remaining == []
|
|
|
|
def test_does_not_mutate_input(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "Hello"}]}]
|
|
system = [{"type": "text", "text": "System"}]
|
|
injection_points = [{"location": "message", "role": "system"}]
|
|
|
|
original_system = copy.deepcopy(system)
|
|
original_messages = copy.deepcopy(messages)
|
|
|
|
AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=system,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert messages == original_messages
|
|
assert system == original_system
|
|
|
|
def test_system_none_with_system_point_skipped(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "Hello"}]}]
|
|
injection_points = [{"location": "message", "role": "system"}]
|
|
|
|
result_msgs, result_sys, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=None,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
assert result_sys is None
|
|
|
|
def test_existing_cache_control_counted_toward_limit(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "A", "cache_control": {"type": "ephemeral"}}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "B", "cache_control": {"type": "ephemeral"}}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "C", "cache_control": {"type": "ephemeral"}}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "D"}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "E"}]},
|
|
]
|
|
system = "System"
|
|
injection_points = [
|
|
{"location": "message", "role": "system"},
|
|
{"location": "message", "index": 3},
|
|
{"location": "message", "index": 4},
|
|
]
|
|
|
|
result_msgs, result_sys, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system=system,
|
|
injection_points=injection_points,
|
|
)
|
|
|
|
sys_blocks = sum(1 for b in (result_sys or []) if isinstance(b, dict) and b.get("cache_control") is not None)
|
|
total_blocks = sys_blocks + sum(AnthropicCacheControlHook._count_cache_control_blocks(m) for m in result_msgs)
|
|
assert total_blocks <= 4
|
|
|
|
|
|
class TestEnableAnthropicPromptCaching:
|
|
"""Auto-injected default breakpoints via litellm.enable_anthropic_prompt_caching."""
|
|
|
|
MESSAGES: List[AllMessageValues] = [
|
|
{"role": "system", "content": "a long system prompt"},
|
|
{"role": "user", "content": "first turn"},
|
|
{"role": "assistant", "content": "a reply"},
|
|
{"role": "user", "content": "latest turn"},
|
|
]
|
|
|
|
def _points(self, model="claude-sonnet-4-5", provider="anthropic", messages=None, system=None, tools=None):
|
|
return AnthropicCacheControlHook.get_default_injection_points(
|
|
messages=copy.deepcopy(self.MESSAGES) if messages is None else messages,
|
|
system=system,
|
|
model=model,
|
|
custom_llm_provider=provider,
|
|
tools=tools,
|
|
)
|
|
|
|
def test_disabled_by_default(self):
|
|
assert litellm.enable_anthropic_prompt_caching is False
|
|
assert self._points() == []
|
|
|
|
def test_injects_system_and_trailing_turn(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert self._points() == [
|
|
{"location": "message", "role": "system", "index": None, "control": {"type": "ephemeral"}},
|
|
{"location": "message", "role": None, "index": -1, "control": {"type": "ephemeral"}},
|
|
]
|
|
|
|
def test_bedrock_claude_is_injected(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
points = self._points(model="us.anthropic.claude-sonnet-4-5-20250929-v1:0", provider="bedrock")
|
|
assert [p["index"] for p in points] == [None, -1]
|
|
|
|
@pytest.mark.parametrize("model, provider", [("gpt-4o", "openai")])
|
|
def test_non_anthropic_providers_never_injected(self, monkeypatch, model, provider):
|
|
"""These report supports_prompt_caching=True but never consume cache_control markers."""
|
|
from litellm.utils import supports_prompt_caching
|
|
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert supports_prompt_caching(model=model, custom_llm_provider=provider) is True
|
|
assert self._points(model=model, provider=provider) == []
|
|
|
|
@pytest.mark.parametrize("family", ["haiku-4-5", "sonnet-5", "opus-5", "fable-5", "fable-5-1"])
|
|
@pytest.mark.parametrize(
|
|
"provider, template",
|
|
[("anthropic", "{}"), ("vertex_ai", "{}"), ("azure_ai", "{}"), ("bedrock", "us.anthropic.{}-v1:0")],
|
|
)
|
|
@pytest.mark.parametrize("infer_provider", [False, True])
|
|
@pytest.mark.parametrize("supported", [False, True])
|
|
def test_claude_transport_defaults(self, monkeypatch, local_model_cost_map, family, provider, template, infer_provider, supported):
|
|
from litellm.utils import supports_prompt_caching
|
|
|
|
model = template.format(f"claude-{family}")
|
|
qualified = f"{provider}/{model}"
|
|
entry = {"litellm_provider": provider, "mode": "chat", "supports_prompt_caching": supported}
|
|
monkeypatch.setitem(litellm.model_cost, model, entry)
|
|
monkeypatch.setitem(litellm.model_cost, qualified, entry)
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", False)
|
|
target = qualified if infer_provider else model
|
|
resolved_provider = None if infer_provider else provider
|
|
assert supports_prompt_caching(model=target, custom_llm_provider=resolved_provider) is supported
|
|
points = AnthropicCacheControlHook.get_default_injection_points(
|
|
messages=copy.deepcopy(self.MESSAGES), system=None, model=target,
|
|
custom_llm_provider=resolved_provider, enable_prompt_caching=True,
|
|
)
|
|
assert [point["index"] for point in points] == ([None, -1] if supported else [])
|
|
affinity_messages = AnthropicCacheControlHook.messages_with_default_injections(
|
|
copy.deepcopy(self.MESSAGES), models=[qualified], enable_prompt_caching=True,
|
|
)
|
|
assert sum(AnthropicCacheControlHook._count_cache_control_blocks(m) for m in affinity_messages) == (2 if supported else 0)
|
|
|
|
@pytest.mark.parametrize(
|
|
"provider, model",
|
|
[
|
|
("bedrock", "us.openai.gpt-6-astra"),
|
|
("bedrock", "amazon.nova-pro-v1:0"),
|
|
("bedrock", "us.xai.grok-4.6"),
|
|
("bedrock", "arn:aws:bedrock:us-east-1:123456789012:application-inference-profile/opaque"),
|
|
("vertex_ai", "gemini-3.8-flash"),
|
|
("azure_ai", "gpt-6-astra"),
|
|
("anthropic", "unknown-model"),
|
|
],
|
|
)
|
|
def test_non_claude_caching_capability_does_not_enable_defaults(self, monkeypatch, local_model_cost_map, provider, model):
|
|
from litellm.utils import supports_prompt_caching
|
|
|
|
qualified = f"{provider}/{model}"
|
|
entry = {"litellm_provider": provider, "mode": "chat", "supports_prompt_caching": True}
|
|
monkeypatch.setitem(litellm.model_cost, model, entry)
|
|
monkeypatch.setitem(litellm.model_cost, qualified, entry)
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert supports_prompt_caching(model=model, custom_llm_provider=provider)
|
|
assert self._points(model=model, provider=provider) == []
|
|
assert self._points(model=qualified, provider=None) == []
|
|
assert AnthropicCacheControlHook.messages_with_default_injections(self.MESSAGES, [qualified]) == self.MESSAGES
|
|
|
|
@pytest.mark.parametrize("provider", ["vertex_ai", "azure_ai"])
|
|
@pytest.mark.parametrize("client_control", ["none", "message", "system", "tool", "function", "top_level"])
|
|
@pytest.mark.parametrize("envelope", ["request", "extra_body"])
|
|
@pytest.mark.parametrize("configured", [False, True])
|
|
def test_new_transports_preserve_client_controls(self, monkeypatch, local_model_cost_map, provider, client_control, envelope, configured):
|
|
from litellm.llms.vertex_ai.vertex_ai_partner_models.anthropic.transformation import VertexAIAnthropicConfig
|
|
|
|
model = "claude-sonnet-5"
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
monkeypatch.setitem(litellm.model_cost, f"{provider}/{model}", {
|
|
**litellm.model_cost[f"{provider}/{model}"], "supports_prompt_caching": True,
|
|
})
|
|
control = {"type": "ephemeral"}
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "question", **({"cache_control": control} if client_control == "message" else {})}]}]
|
|
system = [{"type": "text", "text": "stable context", **({"cache_control": control} if client_control == "system" else {})}]
|
|
tools = [{"name": "lookup", "description": "Lookup", "input_schema": {"type": "object", "properties": {}}, **({"cache_control": control} if client_control == "tool" else {})}]
|
|
if client_control == "function":
|
|
tools = [{"type": "function", "function": {"name": "lookup", "parameters": {}, "cache_control": control}}]
|
|
kwargs = {"metadata": {}, "model_info": {"id": "selected-deployment"}, **({"cache_control": control} if client_control == "top_level" else {})}
|
|
if envelope == "extra_body":
|
|
kwargs["extra_body"] = {"messages": messages, "system": system, "tools": tools}
|
|
if "cache_control" in kwargs:
|
|
kwargs["extra_body"]["cache_control"] = kwargs.pop("cache_control")
|
|
messages, system, tools = [{"role": "user", "content": "question"}], "stable context", []
|
|
if configured:
|
|
kwargs["cache_control_injection_points"] = [
|
|
{"location": "message", "role": "system", "index": None, "control": control},
|
|
{"location": "message", "role": None, "index": -1, "control": control},
|
|
]
|
|
seeded = copy.deepcopy(kwargs)
|
|
original = copy.deepcopy((messages, system, tools))
|
|
result_messages, result_system = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
messages, system, kwargs, model, provider, tools=tools,
|
|
)
|
|
if client_control != "none" and not configured:
|
|
assert (result_messages, result_system, tools) == original
|
|
assert kwargs["metadata"] == {}
|
|
else:
|
|
assert kwargs["metadata"]["litellm_gateway_injected_cache"] == "selected-deployment"
|
|
assert sum(AnthropicCacheControlHook._count_cache_control_blocks(m) for m in result_messages) == 1
|
|
assert result_system[0]["cache_control"] == control
|
|
assert result_messages[-1]["content"][-1]["cache_control"] == control
|
|
assert tools == original[2]
|
|
assert (result_messages == original[0]) == (envelope == "request" and client_control == "message")
|
|
assert (result_system == original[1]) == (envelope == "request" and client_control == "system")
|
|
if provider == "vertex_ai":
|
|
wire = VertexAIAnthropicConfig().transform_request(
|
|
model=model, messages=[{"role": "system", "content": result_system}, *result_messages],
|
|
optional_params={"max_tokens": 8}, litellm_params={}, headers={},
|
|
)
|
|
assert wire["system"][0]["cache_control"] == control
|
|
assert wire["messages"][-1]["content"][-1]["cache_control"] == control
|
|
affinity = AnthropicCacheControlHook.messages_with_default_injections(
|
|
[{"role": "system", "content": original[1]}, *original[0]], [f"{provider}/{model}"],
|
|
tools=tools, request_kwargs=seeded,
|
|
)
|
|
if client_control != "none":
|
|
assert affinity == [{"role": "system", "content": original[1]}, *original[0]]
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
seeded, [{"role": "system", "content": original[1]}, *original[0]], model, provider, tools=tools,
|
|
)
|
|
assert bool(seeded.get("cache_control_injection_points")) == (client_control == "none" or configured)
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize("asynchronous", [False, True])
|
|
@pytest.mark.parametrize("model, target, client_control, expected", [
|
|
("vertex_ai/claude-sonnet-5", "bedrock/amazon.nova-pro-v1:0", False, 0),
|
|
("azure_ai/gpt-6-astra", "azure_ai/claude-sonnet-5", False, 2),
|
|
("azure_ai/claude-sonnet-5", None, False, 2),
|
|
("azure_ai/claude-sonnet-5", None, True, 1),
|
|
("azure_ai/model_router/claude-replacement", None, False, 2),
|
|
])
|
|
async def test_public_completion_cache_ownership(self, monkeypatch, local_model_cost_map, asynchronous, model, target, client_control, expected):
|
|
import httpx
|
|
from litellm.llms.custom_httpx.http_handler import HTTPHandler
|
|
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
monkeypatch.setattr(litellm, "model_alias_map", {model: target} if target else {})
|
|
for qualified in (model, target):
|
|
if qualified:
|
|
provider = qualified.split("/")[0]
|
|
entry = {"litellm_provider": provider, "mode": "chat", "supports_prompt_caching": True}
|
|
monkeypatch.setitem(litellm.model_cost, qualified, entry)
|
|
monkeypatch.setitem(litellm.model_cost, qualified.split("/", 1)[-1], entry)
|
|
sent = []
|
|
def respond(request):
|
|
sent.append(json.loads(request.content))
|
|
return httpx.Response(200, request=request, json={
|
|
"id": "msg-test", "type": "message", "role": "assistant", "model": "claude-sonnet-5",
|
|
"content": [{"type": "text", "text": "ok"}], "stop_reason": "end_turn", "stop_sequence": None,
|
|
"output": {"message": {"role": "assistant", "content": [{"text": "ok"}]}}, "stopReason": "end_turn",
|
|
"usage": {"input_tokens": 10, "output_tokens": 1, "inputTokens": 10, "outputTokens": 1, "totalTokens": 11},
|
|
})
|
|
control = {"type": "ephemeral", "ttl": "1h"}
|
|
messages = [{"role": "system", "content": "stable context"}, {"role": "user", "content": "question"}]
|
|
metadata = {}
|
|
kwargs = {
|
|
"model": model, "messages": copy.deepcopy(messages), "max_tokens": 32, "num_retries": 0,
|
|
"litellm_metadata": metadata,
|
|
"api_base": "https://rig.services.ai.azure.com/anthropic", "api_key": "synthetic-test-key",
|
|
"aws_access_key_id": "synthetic", "aws_secret_access_key": "synthetic", "aws_region_name": "us-east-1",
|
|
**({"extra_body": {"cache_control": control}} if client_control else {}),
|
|
}
|
|
if asynchronous:
|
|
handler = AsyncHTTPHandler()
|
|
await handler.client.aclose()
|
|
async with httpx.AsyncClient(transport=httpx.MockTransport(respond)) as client:
|
|
handler.client = client
|
|
response = await litellm.acompletion(**kwargs, client=handler)
|
|
else:
|
|
with httpx.Client(transport=httpx.MockTransport(respond)) as client:
|
|
response = litellm.completion(**kwargs, client=HTTPHandler(client=client))
|
|
assert response.choices[0].message.content == "ok"
|
|
assert len(sent) == 1
|
|
assert ("litellm_gateway_injected_cache" in metadata) == (expected == 2)
|
|
serialized = json.dumps(sent[0])
|
|
assert serialized.count('"cache_control"') + serialized.count('"cachePoint"') == expected
|
|
if client_control:
|
|
assert sent[0]["cache_control"] == control
|
|
affinity = AnthropicCacheControlHook.messages_with_default_injections(messages, [model], request_kwargs=kwargs)
|
|
assert AnthropicCacheControlHook.count_request_cache_breakpoints(affinity) == (2 if expected == 2 else 0)
|
|
|
|
def test_databricks_claude_not_injected_despite_caching_support(self, monkeypatch, local_model_cost_map):
|
|
from litellm.utils import supports_prompt_caching
|
|
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
model = "databricks/databricks-claude-sonnet-4-5"
|
|
assert supports_prompt_caching(model=model, custom_llm_provider="databricks") is True
|
|
assert self._points(model=model, provider="databricks") == []
|
|
|
|
def test_model_without_caching_support_not_injected(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert self._points(model="anthropic.claude-3-5-sonnet-20240620-v1:0", provider="bedrock") == []
|
|
|
|
@pytest.mark.parametrize("model", ["us.xai.grok-4.6", "global.xai.grok-4.6"])
|
|
def test_bedrock_grok_not_injected(self, monkeypatch, local_model_cost_map, model):
|
|
"""Bedrock supports only implicit prompt caching for Grok: explicit cachePoint
|
|
breakpoints make it reject the whole request ("You invoked an unsupported model
|
|
or your request did not allow prompt caching"), so supports_prompt_caching stays
|
|
false, while implicit cache hits still bill at the cache-read rate."""
|
|
from litellm.utils import supports_prompt_caching
|
|
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert supports_prompt_caching(model=model, custom_llm_provider="bedrock") is False
|
|
assert self._points(model=model, provider="bedrock") == []
|
|
entry = litellm.model_cost[model]
|
|
assert 0 < entry["cache_read_input_token_cost"] < entry["input_cost_per_token"]
|
|
|
|
def test_stands_down_when_client_sent_cache_control(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
messages = [
|
|
{"role": "system", "content": [{"type": "text", "text": "s", "cache_control": {"type": "ephemeral"}}]},
|
|
{"role": "user", "content": "latest turn"},
|
|
]
|
|
assert self._points(messages=messages) == []
|
|
|
|
def test_stands_down_when_system_block_has_cache_control(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
system = [{"type": "text", "text": "s", "cache_control": {"type": "ephemeral"}}]
|
|
assert self._points(messages=[{"role": "user", "content": "hi"}], system=system) == []
|
|
|
|
@staticmethod
|
|
def _tools(count: int, cached: bool) -> List[dict]:
|
|
tool: dict = {"type": "function", "function": {"name": "t", "description": "d", "parameters": {}}}
|
|
if cached:
|
|
tool["cache_control"] = {"type": "ephemeral"}
|
|
return [{**tool, "function": {**tool["function"], "name": f"t{i}"}} for i in range(count)]
|
|
|
|
def test_stands_down_when_only_tools_carry_cache_control(self, monkeypatch):
|
|
"""Caching just the tool definitions is a normal client pattern, and those
|
|
breakpoints count toward the provider's four-block limit. Three of them plus
|
|
our two would be five, which Anthropic rejects outright."""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert self._points(tools=self._tools(3, cached=True)) == []
|
|
|
|
def test_injects_when_tools_carry_no_cache_control(self, monkeypatch):
|
|
"""Tools alone must not suppress injection; only client-marked ones do."""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert [p["index"] for p in self._points(tools=self._tools(3, cached=False))] == [None, -1]
|
|
|
|
@pytest.mark.parametrize("tools", [None, []])
|
|
def test_absent_tools_do_not_suppress_injection(self, monkeypatch, tools):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert [p["index"] for p in self._points(tools=tools)] == [None, -1]
|
|
|
|
def test_stands_down_when_tool_function_carries_cache_control(self, monkeypatch):
|
|
"""OpenAI-shaped tools nest cache_control under ``function``; the Anthropic
|
|
chat transform honors that location, so the stand-down must see it too."""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
tools = [{"type": "function", "function": {"name": "t", "parameters": {}, "cache_control": {"type": "ephemeral"}}}]
|
|
assert self._points(tools=tools) == []
|
|
|
|
def test_seed_stands_down_when_only_tools_carry_cache_control(self, monkeypatch):
|
|
"""Same guard on the /chat/completions seeding path."""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
params: dict = {}
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
tools=self._tools(3, cached=True),
|
|
)
|
|
assert "cache_control_injection_points" not in params
|
|
|
|
def test_v1_messages_stands_down_when_only_tools_carry_cache_control(self, monkeypatch):
|
|
"""Same guard on the /v1/messages path, where tools reach the hook directly."""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "hi"}]}]
|
|
result_msgs, result_sys = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(messages),
|
|
"sys",
|
|
{},
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
tools=self._tools(3, cached=True),
|
|
)
|
|
assert result_sys == "sys"
|
|
assert result_msgs == messages
|
|
|
|
def test_default_ttl_is_anthropics_five_minute_cache(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert all(p["control"] == {"type": "ephemeral"} for p in self._points())
|
|
|
|
@pytest.mark.parametrize("ttl", ["5m", "1h"])
|
|
def test_ttl_override_applied(self, monkeypatch, ttl):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
monkeypatch.setattr(litellm, "anthropic_prompt_caching_ttl", ttl)
|
|
assert all(p["control"] == {"type": "ephemeral", "ttl": ttl} for p in self._points())
|
|
|
|
def test_seed_does_not_override_configured_points(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
configured = [{"location": "message", "role": "user", "index": 0}]
|
|
params = {"cache_control_injection_points": configured}
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert params["cache_control_injection_points"] is configured
|
|
|
|
def test_seed_adds_defaults_when_enabled(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
params: dict = {}
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert [p["index"] for p in params["cache_control_injection_points"]] == [None, -1]
|
|
|
|
def test_seed_is_noop_when_disabled(self):
|
|
params: dict = {}
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert params == {}
|
|
|
|
def test_v1_messages_applies_defaults_end_to_end(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "first"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "reply"}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "latest"}]},
|
|
]
|
|
result_msgs, result_sys = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
messages,
|
|
"a system prompt",
|
|
{},
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
|
|
assert result_sys == [{"type": "text", "text": "a system prompt", "cache_control": {"type": "ephemeral"}}]
|
|
assert result_msgs[-1]["content"][-1]["cache_control"] == {"type": "ephemeral"}
|
|
assert "cache_control" not in result_msgs[0]["content"][-1]
|
|
|
|
def test_messages_with_default_injections_leaves_the_caller_list_untouched(self, monkeypatch):
|
|
"""
|
|
Routing calls this on the live request's own message list to derive the affinity key, before
|
|
the request is sent. Marking in place would leak litellm's breakpoints into the caller's
|
|
messages, where the real injection pass later reads them back as client-supplied ones.
|
|
"""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
messages = copy.deepcopy(self.MESSAGES)
|
|
before = copy.deepcopy(messages)
|
|
|
|
injected = AnthropicCacheControlHook.messages_with_default_injections(
|
|
messages=messages, models=("claude-sonnet-4-5",)
|
|
)
|
|
|
|
assert injected != messages
|
|
assert messages == before
|
|
|
|
|
|
class TestClaudeCodeOneShotAutoCaching:
|
|
BILLING_TEXT = "x-anthropic-billing-header: cc_version=2.1.263; cc_entrypoint=cli; cc_is_subagent=true;"
|
|
BILLING_SYSTEM = [{"type": "text", "text": BILLING_TEXT}]
|
|
MESSAGES = [{"role": "user", "content": [{"type": "text", "text": "unique fetched document"}]}]
|
|
|
|
@staticmethod
|
|
def _kwargs(configured=None):
|
|
kwargs = {
|
|
"litellm_metadata": {},
|
|
"proxy_server_request": {
|
|
"headers": {
|
|
"user-agent": "claude-cli/2.1.263 (external, cli)",
|
|
"x-app": "cli-bg",
|
|
}
|
|
},
|
|
}
|
|
if configured is not None:
|
|
kwargs["cache_control_injection_points"] = configured
|
|
return kwargs
|
|
|
|
@pytest.mark.parametrize(
|
|
"system",
|
|
[
|
|
BILLING_TEXT,
|
|
BILLING_SYSTEM,
|
|
[*BILLING_SYSTEM, {"type": "text", "text": " "}],
|
|
[
|
|
*BILLING_SYSTEM,
|
|
{"type": "text", "text": "x-anthropic-billing-header: cc_version=2.1.263; cc_entrypoint=cli;"},
|
|
],
|
|
],
|
|
ids=["string", "text_block", "whitespace_block", "multiple_billing_blocks"],
|
|
)
|
|
@pytest.mark.parametrize("tools", [None, []], ids=["absent_tools", "empty_tools"])
|
|
def test_skips_defaults_and_attribution_for_one_shot_subagent(self, monkeypatch, system, tools):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
messages = copy.deepcopy(self.MESSAGES)
|
|
kwargs = self._kwargs()
|
|
|
|
result_messages, result_system = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
messages,
|
|
copy.deepcopy(system),
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
tools=tools,
|
|
)
|
|
|
|
assert result_messages == self.MESSAGES
|
|
assert result_system == system
|
|
assert "litellm_gateway_injected_cache" not in kwargs["litellm_metadata"]
|
|
|
|
def test_user_agent_header_lookup_is_case_insensitive(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
kwargs = self._kwargs()
|
|
user_agent = kwargs["proxy_server_request"]["headers"].pop("user-agent")
|
|
kwargs["proxy_server_request"]["headers"]["User-Agent"] = user_agent
|
|
|
|
result_messages, result_system = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(self.MESSAGES),
|
|
copy.deepcopy(self.BILLING_SYSTEM),
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
|
|
assert result_messages == self.MESSAGES
|
|
assert result_system == self.BILLING_SYSTEM
|
|
|
|
def test_router_affinity_skips_string_billing_system(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
messages = copy.deepcopy(self.MESSAGES)
|
|
kwargs = self._kwargs()
|
|
kwargs["system"] = self.BILLING_TEXT
|
|
|
|
result = AnthropicCacheControlHook.messages_with_default_injections(
|
|
messages=messages,
|
|
models=("claude-sonnet-4-5",),
|
|
request_kwargs=kwargs,
|
|
)
|
|
|
|
assert result == messages
|
|
|
|
@pytest.mark.parametrize(
|
|
"headers,system",
|
|
[
|
|
("not-a-mapping", BILLING_SYSTEM),
|
|
(
|
|
{"user-agent": "claude-cli/2.1.263 (external, cli)"},
|
|
[{"type": "text", "text": "x-anthropic-billing-header: malformed"}],
|
|
),
|
|
({"user-agent": "claude-cli/2.1.263 (external, cli)"}, None),
|
|
({"user-agent": "claude-cli/2.1.263 (external, cli)"}, ["not-a-mapping"]),
|
|
(
|
|
{"user-agent": "claude-cli/2.1.263 (external, cli)"},
|
|
[{"type": "image", "text": BILLING_TEXT}],
|
|
),
|
|
],
|
|
ids=["malformed_headers", "malformed_billing", "missing_system", "malformed_block", "non_text_block"],
|
|
)
|
|
def test_malformed_untrusted_context_keeps_defaults(self, monkeypatch, headers, system):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
|
|
points = AnthropicCacheControlHook.get_default_injection_points(
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
system=copy.deepcopy(system),
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
request_kwargs={"proxy_server_request": {"headers": headers}},
|
|
)
|
|
|
|
assert len(points) == 2
|
|
|
|
def test_message_without_role_keeps_defaults(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
|
|
points = AnthropicCacheControlHook.get_default_injection_points(
|
|
messages=[{"content": "missing role"}],
|
|
system=copy.deepcopy(self.BILLING_SYSTEM),
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
request_kwargs=self._kwargs(),
|
|
)
|
|
|
|
assert len(points) == 2
|
|
|
|
@pytest.mark.parametrize(
|
|
"messages,system,tools",
|
|
[
|
|
(
|
|
MESSAGES,
|
|
BILLING_SYSTEM,
|
|
[{"name": "WebFetch", "description": "fetch", "input_schema": {"type": "object"}}],
|
|
),
|
|
(MESSAGES, [*BILLING_SYSTEM, {"type": "text", "text": "Explore the repository"}], None),
|
|
(
|
|
[
|
|
{"role": "user", "content": "first turn"},
|
|
{"role": "assistant", "content": "reply"},
|
|
*MESSAGES,
|
|
],
|
|
BILLING_SYSTEM,
|
|
None,
|
|
),
|
|
],
|
|
ids=["tools", "real_system", "history"],
|
|
)
|
|
def test_keeps_defaults_for_reusable_subagents(self, monkeypatch, messages, system, tools):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
kwargs = self._kwargs()
|
|
|
|
result_messages, result_system = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(messages),
|
|
copy.deepcopy(system),
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
tools=copy.deepcopy(tools),
|
|
)
|
|
|
|
assert AnthropicCacheControlHook.count_request_cache_breakpoints(result_messages, result_system) == 2
|
|
assert kwargs["litellm_metadata"]["litellm_gateway_injected_cache"] == ""
|
|
|
|
@pytest.mark.parametrize(
|
|
"user_agent,system",
|
|
[
|
|
("anthropic-sdk-python/0.75.0", BILLING_SYSTEM),
|
|
(
|
|
"claude-cli/2.1.263 (external, cli)",
|
|
[
|
|
{
|
|
"type": "text",
|
|
"text": f"{BILLING_TEXT}\nadditional system instructions",
|
|
}
|
|
],
|
|
),
|
|
(
|
|
"claude-cli/2.1.263 (external, cli)",
|
|
[
|
|
{
|
|
"type": "text",
|
|
"text": "x-anthropic-billing-header: cc_version=2.1.263; cc_is_subagent=false;",
|
|
}
|
|
],
|
|
),
|
|
],
|
|
ids=["different_client", "appended_instructions", "not_a_subagent"],
|
|
)
|
|
def test_ambiguous_or_unmatched_signals_fail_open(self, monkeypatch, user_agent, system):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
kwargs = self._kwargs()
|
|
kwargs["proxy_server_request"]["headers"]["user-agent"] = user_agent
|
|
|
|
result_messages, result_system = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(self.MESSAGES),
|
|
copy.deepcopy(system),
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
|
|
assert AnthropicCacheControlHook.count_request_cache_breakpoints(result_messages, result_system) == 2
|
|
|
|
def test_explicit_injection_points_remain_authoritative(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
kwargs = self._kwargs([{"location": "message", "role": "user"}])
|
|
|
|
result_messages, _ = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(self.MESSAGES),
|
|
copy.deepcopy(self.BILLING_SYSTEM),
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
|
|
assert result_messages[0]["content"][-1]["cache_control"] == {"type": "ephemeral"}
|
|
|
|
|
|
class TestPerKeyEnablePromptCaching:
|
|
"""Per-request enable_prompt_caching override (stamped from key metadata) with the global flag off."""
|
|
|
|
MESSAGES: List[AllMessageValues] = [
|
|
{"role": "system", "content": "a long system prompt"},
|
|
{"role": "user", "content": "latest turn"},
|
|
]
|
|
|
|
def _points(self, enable_prompt_caching, model="claude-sonnet-4-5", provider="anthropic", messages=None):
|
|
return AnthropicCacheControlHook.get_default_injection_points(
|
|
messages=copy.deepcopy(self.MESSAGES) if messages is None else messages,
|
|
system=None,
|
|
model=model,
|
|
custom_llm_provider=provider,
|
|
enable_prompt_caching=enable_prompt_caching,
|
|
)
|
|
|
|
def test_true_injects_with_global_flag_off(self):
|
|
assert litellm.enable_anthropic_prompt_caching is False
|
|
assert self._points(True) == [
|
|
{"location": "message", "role": "system", "index": None, "control": {"type": "ephemeral"}},
|
|
{"location": "message", "role": None, "index": -1, "control": {"type": "ephemeral"}},
|
|
]
|
|
|
|
@pytest.mark.parametrize("enable_prompt_caching", [False, None])
|
|
def test_false_and_none_fall_back_to_global_flag(self, enable_prompt_caching):
|
|
assert self._points(enable_prompt_caching) == []
|
|
|
|
def test_false_does_not_suppress_global_flag(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
assert [p["index"] for p in self._points(False)] == [None, -1]
|
|
|
|
def test_provider_gate_still_applies(self):
|
|
assert self._points(True, model="gpt-4o", provider="openai") == []
|
|
|
|
def test_unsupported_model_gate_still_applies(self):
|
|
assert self._points(True, model="anthropic.claude-3-5-sonnet-20240620-v1:0", provider="bedrock") == []
|
|
|
|
def test_client_markers_still_win(self):
|
|
messages = [
|
|
{"role": "system", "content": [{"type": "text", "text": "s", "cache_control": {"type": "ephemeral"}}]},
|
|
{"role": "user", "content": "latest turn"},
|
|
]
|
|
assert self._points(True, messages=messages) == []
|
|
|
|
def test_seed_injects_with_global_flag_off(self):
|
|
params: dict = {}
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
enable_prompt_caching=True,
|
|
)
|
|
assert [p["index"] for p in params["cache_control_injection_points"]] == [None, -1]
|
|
|
|
def test_v1_messages_injects_and_pops_flag_from_kwargs(self):
|
|
kwargs: dict = {"enable_prompt_caching": True}
|
|
result_msgs, result_sys = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
[{"role": "user", "content": [{"type": "text", "text": "latest"}]}],
|
|
"a system prompt",
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert result_sys == [{"type": "text", "text": "a system prompt", "cache_control": {"type": "ephemeral"}}]
|
|
assert result_msgs[-1]["content"][-1]["cache_control"] == {"type": "ephemeral"}
|
|
assert "enable_prompt_caching" not in kwargs
|
|
|
|
def test_v1_messages_pops_flag_even_when_noop(self):
|
|
kwargs: dict = {"enable_prompt_caching": True}
|
|
AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
[{"role": "user", "content": [{"type": "text", "text": "hi"}]}],
|
|
None,
|
|
kwargs,
|
|
model="gpt-4o",
|
|
custom_llm_provider="openai",
|
|
)
|
|
assert "enable_prompt_caching" not in kwargs
|
|
|
|
def test_v1_messages_is_noop_when_disabled(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "hi"}]}]
|
|
result_msgs, result_sys = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
messages,
|
|
"sys",
|
|
{},
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
|
|
assert result_sys == "sys"
|
|
assert result_msgs == messages
|
|
|
|
|
|
class TestConfiguredInjectionPointsSurviveClientMarks:
|
|
CONFIGURED = [{"location": "message", "role": "system"}]
|
|
TAIL_POINT = [{"location": "message", "index": -1}]
|
|
TOOL_CONFIG_POINT = [{"location": "tool_config"}]
|
|
EPHEMERAL = {"type": "ephemeral"}
|
|
|
|
CLEAN_MESSAGES: List[AllMessageValues] = [
|
|
{"role": "system", "content": "sys"},
|
|
{"role": "user", "content": "hi"},
|
|
]
|
|
|
|
MARKED_MESSAGES: List[AllMessageValues] = [
|
|
{"role": "system", "content": "sys"},
|
|
{"role": "user", "content": [{"type": "text", "text": "hi", "cache_control": {"type": "ephemeral"}}]},
|
|
]
|
|
|
|
V1_MESSAGES = [{"role": "user", "content": [{"type": "text", "text": "hi"}]}]
|
|
|
|
MARKED_TOOL_TOP_LEVEL = {
|
|
"type": "function",
|
|
"function": {"name": "t", "parameters": {}},
|
|
"cache_control": {"type": "ephemeral"},
|
|
}
|
|
MARKED_TOOL_NESTED = {
|
|
"type": "function",
|
|
"function": {"name": "t", "parameters": {}, "cache_control": {"type": "ephemeral"}},
|
|
}
|
|
UNMARKED_TOOL = {"type": "function", "function": {"name": "t", "parameters": {}}}
|
|
MARKED_V1_TOOL = {"name": "t", "input_schema": {}, "cache_control": {"type": "ephemeral"}}
|
|
UNMARKED_V1_TOOL = {"name": "t", "input_schema": {}}
|
|
MARKED_SYSTEM = [{"type": "text", "text": "sys", "cache_control": EPHEMERAL}]
|
|
MARKED_TOOL_SEARCH_REGEX = {
|
|
"type": "tool_search_tool_regex_20251119",
|
|
"name": "tool_search",
|
|
"cache_control": {"type": "ephemeral"},
|
|
}
|
|
MARKED_TOOL_SEARCH_BM25 = {
|
|
"type": "tool_search_tool_bm25_20251119",
|
|
"name": "tool_search",
|
|
"cache_control": {"type": "ephemeral"},
|
|
}
|
|
|
|
@staticmethod
|
|
def _marked_user_turns(count: int) -> List[AllMessageValues]:
|
|
return [
|
|
{"role": "user", "content": [{"type": "text", "text": f"turn {i}", "cache_control": {"type": "ephemeral"}}]}
|
|
for i in range(count)
|
|
]
|
|
|
|
def _seed(self, params, messages, tools=None):
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=messages,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
tools=tools,
|
|
)
|
|
|
|
def _chat(self, params: dict[str, object], messages: List[AllMessageValues]) -> List[AllMessageValues]:
|
|
_, processed, _ = AnthropicCacheControlHook().get_chat_completion_prompt(
|
|
model="claude-sonnet-4-5",
|
|
messages=messages,
|
|
non_default_params=params,
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
return processed
|
|
|
|
def _inject(self, messages, kwargs, system="sys", tools=None):
|
|
return AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
messages,
|
|
system,
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
tools=tools,
|
|
)
|
|
|
|
def test_chat_tail_point_applies_when_client_marked_the_system_block(self):
|
|
messages: List[AllMessageValues] = [
|
|
{"role": "system", "content": [{"type": "text", "text": "sys", "cache_control": {"type": "ephemeral"}}]},
|
|
{"role": "user", "content": "history"},
|
|
{"role": "assistant", "content": "reply"},
|
|
{"role": "user", "content": "question"},
|
|
]
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.TAIL_POINT)}
|
|
self._seed(params, messages)
|
|
processed = self._chat(params, messages)
|
|
assert processed[0] == messages[0]
|
|
assert processed[-1] == {"role": "user", "content": "question", "cache_control": self.EPHEMERAL}
|
|
assert _count_cache_control(processed) == 2
|
|
|
|
def test_chat_configured_points_apply_when_messages_carry_cache_control(self):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
self._seed(params, copy.deepcopy(self.MARKED_MESSAGES))
|
|
processed = self._chat(params, copy.deepcopy(self.MARKED_MESSAGES))
|
|
assert processed[0] == {"role": "system", "content": "sys", "cache_control": self.EPHEMERAL}
|
|
assert processed[1] == self.MARKED_MESSAGES[1]
|
|
|
|
@pytest.mark.parametrize(
|
|
"tool", [MARKED_TOOL_TOP_LEVEL, MARKED_TOOL_NESTED], ids=["top_level", "nested_in_function"]
|
|
)
|
|
def test_chat_configured_points_apply_when_tools_carry_cache_control(self, tool):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
self._seed(params, copy.deepcopy(self.CLEAN_MESSAGES), tools=[tool])
|
|
processed = self._chat(params, copy.deepcopy(self.CLEAN_MESSAGES))
|
|
assert processed[0] == {"role": "system", "content": "sys", "cache_control": self.EPHEMERAL}
|
|
|
|
@pytest.mark.parametrize(
|
|
"tool,injected",
|
|
[(MARKED_TOOL_TOP_LEVEL, 0), (MARKED_TOOL_NESTED, 0), (UNMARKED_TOOL, 1)],
|
|
ids=["marked_top_level", "marked_nested_in_function", "unmarked"],
|
|
)
|
|
def test_chat_cap_counts_client_marked_tools(self, tool, injected):
|
|
messages = [{"role": "system", "content": "sys"}, *self._marked_user_turns(3)]
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
self._seed(params, copy.deepcopy(messages), tools=[tool])
|
|
processed = self._chat(params, copy.deepcopy(messages))
|
|
assert _count_cache_control(processed) == 3 + injected
|
|
|
|
@pytest.mark.parametrize("tool", [MARKED_TOOL_SEARCH_REGEX, MARKED_TOOL_SEARCH_BM25], ids=["regex", "bm25"])
|
|
def test_chat_cap_ignores_marked_tool_search_tools(self, tool):
|
|
messages = [{"role": "system", "content": "sys"}, *self._marked_user_turns(3)]
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
self._seed(params, copy.deepcopy(messages), tools=[tool])
|
|
processed = self._chat(params, copy.deepcopy(messages))
|
|
assert _count_cache_control(processed) == 4
|
|
|
|
@pytest.mark.parametrize("marked_turns,forwarded", [(3, ["tool_config"]), (4, [])], ids=["slot_left", "cap_full"])
|
|
def test_chat_forwards_tool_config_point_only_while_a_slot_is_left(self, marked_turns, forwarded):
|
|
messages = [{"role": "system", "content": "sys"}, *self._marked_user_turns(marked_turns)]
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.TOOL_CONFIG_POINT)}
|
|
self._seed(params, copy.deepcopy(messages), tools=[self.UNMARKED_TOOL])
|
|
self._chat(params, copy.deepcopy(messages))
|
|
assert [p["location"] for p in params.get("cache_control_injection_points", [])] == forwarded
|
|
|
|
@pytest.mark.parametrize("marked_turns,forwarded", [(3, ["tool_config"]), (4, [])], ids=["slot_left", "cap_full"])
|
|
def test_v1_messages_forwards_tool_config_point_only_while_a_slot_is_left(self, marked_turns, forwarded):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.TOOL_CONFIG_POINT)}
|
|
self._inject(self._marked_user_turns(marked_turns), kwargs, tools=[self.UNMARKED_V1_TOOL])
|
|
assert [p["location"] for p in kwargs.get("cache_control_injection_points", [])] == forwarded
|
|
|
|
@pytest.mark.parametrize("marked_turns,injected", [(2, 1), (3, 0)])
|
|
def test_chat_root_cache_control_reserves_a_slot(self, marked_turns, injected):
|
|
messages = [{"role": "system", "content": "sys"}, *self._marked_user_turns(marked_turns)]
|
|
root_cache_control = {"type": "ephemeral"}
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED), "cache_control": root_cache_control}
|
|
self._seed(params, copy.deepcopy(messages))
|
|
processed = self._chat(params, copy.deepcopy(messages))
|
|
assert _count_cache_control(processed) == marked_turns + injected
|
|
assert params["cache_control"] is root_cache_control
|
|
|
|
def test_configured_points_kept_when_request_is_unmarked(self):
|
|
configured = copy.deepcopy(self.CONFIGURED)
|
|
params = {"cache_control_injection_points": configured}
|
|
self._seed(params, copy.deepcopy(self.CLEAN_MESSAGES))
|
|
assert params["cache_control_injection_points"] is configured
|
|
|
|
def test_chat_reentry_over_injected_messages_adds_no_duplicate_marks(self):
|
|
points = [{"location": "message", "role": "system"}, {"location": "tool_config"}]
|
|
first_params = {"cache_control_injection_points": copy.deepcopy(points)}
|
|
self._seed(first_params, copy.deepcopy(self.MARKED_MESSAGES))
|
|
first = self._chat(first_params, copy.deepcopy(self.MARKED_MESSAGES))
|
|
assert _count_cache_control(first) == 2
|
|
assert first_params["cache_control_injection_points"] == [{"location": "tool_config"}]
|
|
|
|
second_params = {"cache_control_injection_points": copy.deepcopy(points)}
|
|
self._seed(second_params, copy.deepcopy(first))
|
|
second = self._chat(second_params, copy.deepcopy(first))
|
|
assert second == first
|
|
assert second_params["cache_control_injection_points"] == [{"location": "tool_config"}]
|
|
|
|
def test_v1_messages_configured_point_applies_when_content_block_marked(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "hi", "cache_control": {"type": "ephemeral"}}]}
|
|
]
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
result_msgs, result_sys = self._inject(copy.deepcopy(messages), kwargs)
|
|
assert result_msgs == messages
|
|
assert result_sys == [{"type": "text", "text": "sys", "cache_control": self.EPHEMERAL}]
|
|
assert "cache_control_injection_points" not in kwargs
|
|
|
|
def test_v1_messages_tail_point_applies_when_system_block_marked(self):
|
|
system = [{"type": "text", "text": "s", "cache_control": {"type": "ephemeral"}}]
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.TAIL_POINT)}
|
|
result_msgs, result_sys = self._inject(copy.deepcopy(self.V1_MESSAGES), kwargs, system=system)
|
|
assert result_msgs == [
|
|
{"role": "user", "content": [{"type": "text", "text": "hi", "cache_control": self.EPHEMERAL}]}
|
|
]
|
|
assert result_sys == system
|
|
|
|
def test_v1_messages_configured_point_applies_when_tools_marked(self):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
result_msgs, result_sys = self._inject(copy.deepcopy(self.V1_MESSAGES), kwargs, tools=[self.MARKED_V1_TOOL])
|
|
assert result_msgs == self.V1_MESSAGES
|
|
assert result_sys == [{"type": "text", "text": "sys", "cache_control": self.EPHEMERAL}]
|
|
|
|
@pytest.mark.parametrize(
|
|
"tool,expected_system",
|
|
[
|
|
(MARKED_V1_TOOL, "sys"),
|
|
(MARKED_TOOL_SEARCH_REGEX, "sys"),
|
|
(MARKED_TOOL_SEARCH_BM25, "sys"),
|
|
(UNMARKED_V1_TOOL, [{"type": "text", "text": "sys", "cache_control": {"type": "ephemeral"}}]),
|
|
],
|
|
ids=["marked", "marked_tool_search_regex", "marked_tool_search_bm25", "unmarked"],
|
|
)
|
|
def test_v1_messages_cap_counts_client_marked_tools(self, tool, expected_system):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
_, result_sys = self._inject(self._marked_user_turns(3), kwargs, tools=[tool])
|
|
assert result_sys == expected_system
|
|
|
|
def test_v1_messages_configured_points_apply_when_unmarked(self):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED)}
|
|
_, result_sys = self._inject(copy.deepcopy(self.V1_MESSAGES), kwargs)
|
|
assert result_sys == [{"type": "text", "text": "sys", "cache_control": {"type": "ephemeral"}}]
|
|
|
|
@pytest.mark.parametrize(
|
|
"extra_body,injected",
|
|
[
|
|
({"tools": [MARKED_TOOL_TOP_LEVEL]}, 0),
|
|
({"cache_control": {"type": "ephemeral"}}, 0),
|
|
({"tools": [UNMARKED_TOOL]}, 1),
|
|
],
|
|
ids=["marked_tool", "root_cache_control", "unmarked_tool"],
|
|
)
|
|
def test_chat_cap_counts_client_marks_sent_through_extra_body(self, extra_body, injected):
|
|
messages = [{"role": "system", "content": "sys"}, *self._marked_user_turns(3)]
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED), "extra_body": extra_body}
|
|
self._seed(params, copy.deepcopy(messages))
|
|
processed = self._chat(params, copy.deepcopy(messages))
|
|
assert _count_cache_control(processed) == 3 + injected
|
|
|
|
@pytest.mark.parametrize(
|
|
"extra_body,expected_system",
|
|
[
|
|
({"cache_control": {"type": "ephemeral"}}, "sys"),
|
|
({"tools": [MARKED_V1_TOOL]}, "sys"),
|
|
({"tools": [UNMARKED_V1_TOOL]}, [{"type": "text", "text": "sys", "cache_control": {"type": "ephemeral"}}]),
|
|
],
|
|
ids=["root_cache_control", "marked_tool", "unmarked_tool"],
|
|
)
|
|
def test_v1_messages_cap_counts_client_marks_sent_through_extra_body(self, extra_body, expected_system):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED), "extra_body": extra_body}
|
|
_, result_sys = self._inject(self._marked_user_turns(3), kwargs)
|
|
assert result_sys == expected_system
|
|
|
|
@pytest.mark.parametrize(
|
|
"params,tools,marked_turns,injected",
|
|
[
|
|
({"extra_body": {"tools": [MARKED_TOOL_TOP_LEVEL]}}, [MARKED_TOOL_TOP_LEVEL], 2, 1),
|
|
({"extra_body": {"tools": [UNMARKED_TOOL]}}, [MARKED_TOOL_TOP_LEVEL], 3, 1),
|
|
({"extra_body": {"tools": [MARKED_TOOL_TOP_LEVEL]}}, [UNMARKED_TOOL], 3, 0),
|
|
({"extra_body": {"cache_control": EPHEMERAL}, "cache_control": EPHEMERAL}, None, 2, 1),
|
|
],
|
|
ids=["same_marked_tool_both_ways", "extra_body_unmarks", "extra_body_marks", "root_cache_control_both_ways"],
|
|
)
|
|
def test_chat_cap_counts_extra_body_fields_in_place_of_the_direct_ones(self, params, tools, marked_turns, injected):
|
|
messages = [{"role": "system", "content": "sys"}, *self._marked_user_turns(marked_turns)]
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED), **copy.deepcopy(params)}
|
|
self._seed(params, copy.deepcopy(messages), tools=tools)
|
|
processed = self._chat(params, copy.deepcopy(messages))
|
|
assert _count_cache_control(processed) == marked_turns + injected
|
|
|
|
@pytest.mark.parametrize(
|
|
"kwargs,tools,marked_turns,expected_system",
|
|
[
|
|
({"extra_body": {"tools": [MARKED_V1_TOOL]}}, [MARKED_V1_TOOL], 2, MARKED_SYSTEM),
|
|
({"extra_body": {"tools": [UNMARKED_V1_TOOL]}}, [MARKED_V1_TOOL], 3, "sys"),
|
|
({"extra_body": {"tools": [MARKED_V1_TOOL]}}, [UNMARKED_V1_TOOL], 3, "sys"),
|
|
({"extra_body": {"cache_control": EPHEMERAL}, "cache_control": EPHEMERAL}, None, 2, MARKED_SYSTEM),
|
|
],
|
|
ids=["same_marked_tool_both_ways", "extra_body_unmarks", "extra_body_marks", "root_cache_control_both_ways"],
|
|
)
|
|
def test_v1_messages_cap_reserves_for_the_larger_of_direct_and_extra_body_marks(
|
|
self, kwargs, tools, marked_turns, expected_system
|
|
):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.CONFIGURED), **copy.deepcopy(kwargs)}
|
|
_, result_sys = self._inject(self._marked_user_turns(marked_turns), kwargs, tools=tools)
|
|
assert result_sys == expected_system
|
|
|
|
def test_v1_messages_automatic_defaults_stand_down_for_root_cache_control(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
root_cache_control = {"type": "ephemeral"}
|
|
kwargs = {"cache_control": root_cache_control, "litellm_metadata": {}}
|
|
|
|
result_messages, result_system = self._inject(copy.deepcopy(self.V1_MESSAGES), kwargs)
|
|
|
|
assert result_messages == self.V1_MESSAGES
|
|
assert result_system == "sys"
|
|
assert kwargs["cache_control"] is root_cache_control
|
|
assert "litellm_gateway_injected_cache" not in kwargs["litellm_metadata"]
|
|
|
|
@pytest.mark.parametrize(
|
|
"marked_turns,expected_system",
|
|
[(2, [{"type": "text", "text": "sys", "cache_control": {"type": "ephemeral"}}]), (3, "sys")],
|
|
)
|
|
def test_v1_messages_configured_points_apply_with_root_cache_control_reserving_a_slot(
|
|
self, marked_turns, expected_system
|
|
):
|
|
root_cache_control = {"type": "ephemeral"}
|
|
kwargs = {
|
|
"cache_control": root_cache_control,
|
|
"cache_control_injection_points": copy.deepcopy(self.CONFIGURED),
|
|
}
|
|
_, result_system = self._inject(self._marked_user_turns(marked_turns), kwargs)
|
|
assert result_system == expected_system
|
|
assert kwargs["cache_control"] is root_cache_control
|
|
|
|
def test_v1_messages_reentry_flow_preserves_tool_config_remainder(self):
|
|
points = [{"location": "message", "role": "system"}, {"location": "tool_config"}]
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(points)}
|
|
msgs1, sys1 = self._inject(copy.deepcopy(self.V1_MESSAGES), kwargs)
|
|
assert sys1[0]["cache_control"] == {"type": "ephemeral"}
|
|
expected_remainder = [{"location": "tool_config"}]
|
|
assert kwargs["cache_control_injection_points"] == expected_remainder
|
|
|
|
msgs2, sys2 = self._inject(msgs1, kwargs, system=sys1)
|
|
assert kwargs["cache_control_injection_points"] == expected_remainder
|
|
assert msgs2 == msgs1
|
|
assert sys2 == sys1
|
|
|
|
|
|
class TestAnthropicPromptCachingEnvVars:
|
|
"""Both settings are read from the environment at import, so an admin can enable
|
|
auto-caching without a config file. Each case re-imports litellm in a subprocess
|
|
so the env is read fresh without contaminating this process's module graph.
|
|
"""
|
|
|
|
@staticmethod
|
|
def _import_litellm_with_env(env_override: dict) -> Tuple[bool, Optional[str]]:
|
|
env = os.environ.copy()
|
|
env.pop("LITELLM_ENABLE_ANTHROPIC_PROMPT_CACHING", None)
|
|
env.pop("LITELLM_ANTHROPIC_PROMPT_CACHING_TTL", None)
|
|
env.update(env_override)
|
|
script = textwrap.dedent(
|
|
"""
|
|
import json, litellm
|
|
print(json.dumps([litellm.enable_anthropic_prompt_caching, litellm.anthropic_prompt_caching_ttl]))
|
|
"""
|
|
)
|
|
result = subprocess.run(
|
|
[sys.executable, "-c", script], capture_output=True, text=True, env=env, timeout=300
|
|
)
|
|
assert result.returncode == 0, result.stderr
|
|
enabled, ttl = json.loads(result.stdout.strip().splitlines()[-1])
|
|
return enabled, ttl
|
|
|
|
def test_unset_env_leaves_auto_caching_off(self):
|
|
assert self._import_litellm_with_env({}) == (False, None)
|
|
|
|
@pytest.mark.parametrize("value", ["true", "True", "TRUE"])
|
|
def test_env_enables_auto_caching_case_insensitively(self, value):
|
|
enabled, _ = self._import_litellm_with_env({"LITELLM_ENABLE_ANTHROPIC_PROMPT_CACHING": value})
|
|
assert enabled is True
|
|
|
|
@pytest.mark.parametrize("value", ["false", "0", "yes", ""])
|
|
def test_env_only_enables_on_true(self, value):
|
|
enabled, _ = self._import_litellm_with_env({"LITELLM_ENABLE_ANTHROPIC_PROMPT_CACHING": value})
|
|
assert enabled is False
|
|
|
|
@pytest.mark.parametrize("value", ["5m", "1h"])
|
|
def test_ttl_env_is_applied(self, value):
|
|
_, ttl = self._import_litellm_with_env({"LITELLM_ANTHROPIC_PROMPT_CACHING_TTL": value})
|
|
assert ttl == value
|
|
|
|
@pytest.mark.parametrize("value", ["10m", "1H", "3600", "ephemeral"])
|
|
def test_unsupported_ttl_env_falls_back_to_provider_default(self, value):
|
|
"""An unparseable TTL must fall back to Anthropic's 5m default, never reach the provider verbatim."""
|
|
_, ttl = self._import_litellm_with_env({"LITELLM_ANTHROPIC_PROMPT_CACHING_TTL": value})
|
|
assert ttl is None
|
|
|
|
|
|
def _contains_key(value, key) -> bool:
|
|
if isinstance(value, dict):
|
|
return key in value or any(_contains_key(v, key) for v in value.values())
|
|
if isinstance(value, list):
|
|
return any(_contains_key(v, key) for v in value)
|
|
return False
|
|
|
|
|
|
class TestOpenAIPromptCacheBreakpoint:
|
|
"""OpenAI GPT-5.6+ targets get content-block `prompt_cache_breakpoint` markers and a
|
|
request-level `prompt_cache_options` instead of Anthropic `cache_control` (#37509)."""
|
|
|
|
EXPLICIT = {"mode": "explicit"}
|
|
SYSTEM_POINT = [{"location": "message", "role": "system"}]
|
|
|
|
@staticmethod
|
|
def _inject(messages, system, kwargs, model="openai/gpt-5.6", custom_llm_provider=None):
|
|
return AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(messages),
|
|
copy.deepcopy(system),
|
|
kwargs,
|
|
model=model,
|
|
custom_llm_provider=custom_llm_provider,
|
|
)
|
|
|
|
@staticmethod
|
|
def _chat(messages, params, model="openai/gpt-5.6"):
|
|
return AnthropicCacheControlHook().get_chat_completion_prompt(
|
|
model=model,
|
|
messages=copy.deepcopy(messages),
|
|
non_default_params=params,
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
|
|
@pytest.mark.parametrize(
|
|
"model,expected",
|
|
[
|
|
("gpt-5.6", True),
|
|
("openai/gpt-5.6", True),
|
|
("gpt-5.6-sol", True),
|
|
("gpt-5.6-luna", True),
|
|
("gpt-5.7", True),
|
|
("gpt-6", True),
|
|
("GPT-5.6", True),
|
|
("gpt-5.5", False),
|
|
("gpt-5", False),
|
|
("gpt-5-chat-latest", False),
|
|
("gpt-4.1", False),
|
|
("o3", False),
|
|
("claude-sonnet-4-5", False),
|
|
],
|
|
)
|
|
def test_model_support_truth_table(self, model, expected):
|
|
assert supports_openai_prompt_cache_breakpoint(model) is expected
|
|
|
|
@pytest.mark.parametrize(
|
|
"model,provider,expected",
|
|
[
|
|
("openai/gpt-5.6", None, True),
|
|
("gpt-5.6", None, True),
|
|
("gpt-5.6", "openai", True),
|
|
("gpt-5.6", "azure", False),
|
|
("azure/gpt-5.6", None, False),
|
|
("openai/gpt-4.1", None, False),
|
|
("anthropic/claude-sonnet-4-5", None, False),
|
|
("no-provider-can-route-this-model", None, False),
|
|
(None, "openai", False),
|
|
],
|
|
)
|
|
def test_dialect_resolution(self, model, provider, expected):
|
|
assert AnthropicCacheControlHook._targets_openai_prompt_cache_breakpoint(model, provider) is expected
|
|
|
|
def test_count_covers_both_marker_kinds(self):
|
|
message = {
|
|
"role": "user",
|
|
"cache_control": {"type": "ephemeral"},
|
|
"content": [
|
|
{"type": "text", "text": "a", "prompt_cache_breakpoint": self.EXPLICIT},
|
|
{"type": "text", "text": "b", "cache_control": {"type": "ephemeral"}},
|
|
{"type": "text", "text": "c"},
|
|
],
|
|
}
|
|
assert AnthropicCacheControlHook._count_cache_control_blocks(message) == 3
|
|
|
|
def test_v1_messages_string_system_gets_block_breakpoint(self):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
messages, system = self._inject([{"role": "user", "content": "hi"}], "sys", kwargs)
|
|
assert system == [{"type": "text", "text": "sys", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
assert messages == [{"role": "user", "content": [{"type": "text", "text": "hi"}]}]
|
|
assert kwargs == {"prompt_cache_options": self.EXPLICIT}
|
|
assert not _contains_key(system, "cache_control")
|
|
|
|
def test_v1_messages_list_system_marks_last_block_only(self):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
system = [{"type": "text", "text": "a"}, {"type": "text", "text": "b"}]
|
|
_, result_system = self._inject([{"role": "user", "content": "hi"}], system, kwargs)
|
|
assert result_system == [
|
|
{"type": "text", "text": "a"},
|
|
{"type": "text", "text": "b", "prompt_cache_breakpoint": self.EXPLICIT},
|
|
]
|
|
assert kwargs["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_v1_messages_targets_by_role(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "first"}, {"type": "text", "text": "second"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "reply"}]},
|
|
{"role": "user", "content": "last"},
|
|
]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "role": "user"}]}
|
|
result, _ = self._inject(messages, None, kwargs)
|
|
assert result[0]["content"] == [
|
|
{"type": "text", "text": "first"},
|
|
{"type": "text", "text": "second", "prompt_cache_breakpoint": self.EXPLICIT},
|
|
]
|
|
assert result[1] == messages[1]
|
|
assert result[2]["content"] == [{"type": "text", "text": "last", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
assert kwargs["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_v1_messages_targets_by_index(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "first"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "reply"}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "last"}]},
|
|
]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "index": -1}]}
|
|
result, _ = self._inject(messages, None, kwargs)
|
|
assert result[:2] == messages[:2]
|
|
assert result[2]["content"] == [{"type": "text", "text": "last", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
|
|
def test_v1_messages_control_field_is_ignored(self):
|
|
ttl_control = {"type": "ephemeral", "ttl": "1h"}
|
|
kwargs = {
|
|
"cache_control_injection_points": [
|
|
{"location": "message", "role": "system", "control": ttl_control},
|
|
{"location": "message", "index": -1, "control": ttl_control},
|
|
]
|
|
}
|
|
messages, system = self._inject([{"role": "user", "content": "hi"}], "sys", kwargs)
|
|
assert system[0]["prompt_cache_breakpoint"] == self.EXPLICIT
|
|
assert messages[0]["content"][-1]["prompt_cache_breakpoint"] == self.EXPLICIT
|
|
assert not _contains_key(system, "cache_control")
|
|
assert not _contains_key(messages, "cache_control")
|
|
|
|
def test_v1_messages_keeps_caller_prompt_cache_options(self):
|
|
caller_options = {"mode": "explicit", "ttl": "30m"}
|
|
kwargs = {
|
|
"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT),
|
|
"prompt_cache_options": dict(caller_options),
|
|
}
|
|
_, system = self._inject([{"role": "user", "content": "hi"}], "sys", kwargs)
|
|
assert system[0]["prompt_cache_breakpoint"] == self.EXPLICIT
|
|
assert kwargs["prompt_cache_options"] == caller_options
|
|
|
|
def test_v1_messages_no_prompt_cache_options_when_nothing_injected(self):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
messages, system = self._inject([{"role": "user", "content": "hi"}], None, kwargs)
|
|
assert system is None
|
|
assert "prompt_cache_options" not in kwargs
|
|
assert not _contains_key(messages, "prompt_cache_breakpoint")
|
|
|
|
def test_v1_messages_anthropic_target_unchanged(self):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
_, system = self._inject(
|
|
[{"role": "user", "content": "hi"}],
|
|
"sys",
|
|
kwargs,
|
|
model="anthropic/claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert system == [{"type": "text", "text": "sys", "cache_control": {"type": "ephemeral"}}]
|
|
assert kwargs == {}
|
|
|
|
def test_v1_messages_older_openai_model_keeps_cache_control(self):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
_, system = self._inject([{"role": "user", "content": "hi"}], "sys", kwargs, model="openai/gpt-4.1")
|
|
assert system == [{"type": "text", "text": "sys", "cache_control": {"type": "ephemeral"}}]
|
|
assert kwargs == {}
|
|
|
|
def test_v1_messages_configured_points_apply_beside_client_content_breakpoint(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "hi", "prompt_cache_breakpoint": self.EXPLICIT}]}
|
|
]
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
result, system = self._inject(messages, "sys", kwargs)
|
|
assert result == messages
|
|
assert system == [{"type": "text", "text": "sys", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
assert kwargs == {"prompt_cache_options": self.EXPLICIT}
|
|
|
|
def test_v1_messages_tail_point_applies_beside_client_system_breakpoint(self):
|
|
system = [{"type": "text", "text": "sys", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "hi"}]}]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "index": -1}]}
|
|
result, result_system = self._inject(messages, system, kwargs)
|
|
assert result == [
|
|
{"role": "user", "content": [{"type": "text", "text": "hi", "prompt_cache_breakpoint": self.EXPLICIT}]}
|
|
]
|
|
assert result_system == system
|
|
assert kwargs == {"prompt_cache_options": self.EXPLICIT}
|
|
|
|
def test_chat_system_string_wrapped_with_block_breakpoint(self):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
messages = [{"role": "system", "content": "sys"}, {"role": "user", "content": "hi"}]
|
|
_, processed, returned = self._chat(messages, params)
|
|
assert processed[0] == {
|
|
"role": "system",
|
|
"content": [{"type": "text", "text": "sys", "prompt_cache_breakpoint": self.EXPLICIT}],
|
|
}
|
|
assert processed[1] == {"role": "user", "content": "hi"}
|
|
assert returned is params
|
|
assert returned == {"prompt_cache_options": self.EXPLICIT}
|
|
|
|
def test_chat_list_content_marks_last_block(self):
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "text", "text": "look"},
|
|
{"type": "image_url", "image_url": {"url": "https://example.com/a.png"}},
|
|
],
|
|
}
|
|
]
|
|
params = {"cache_control_injection_points": [{"location": "message", "index": -1}]}
|
|
_, processed, _ = self._chat(messages, params)
|
|
assert processed[0]["content"] == [
|
|
{"type": "text", "text": "look"},
|
|
{
|
|
"type": "image_url",
|
|
"image_url": {"url": "https://example.com/a.png"},
|
|
"prompt_cache_breakpoint": self.EXPLICIT,
|
|
},
|
|
]
|
|
assert params["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_chat_unprefixed_model_resolves_to_openai(self):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
_, processed, _ = self._chat([{"role": "system", "content": "sys"}], params, model="gpt-5.6")
|
|
assert processed[0]["content"] == [{"type": "text", "text": "sys", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
assert params["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_chat_keeps_caller_prompt_cache_options(self):
|
|
params = {
|
|
"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT),
|
|
"prompt_cache_options": {"mode": "implicit"},
|
|
}
|
|
self._chat([{"role": "system", "content": "sys"}], params)
|
|
assert params["prompt_cache_options"] == {"mode": "implicit"}
|
|
|
|
def test_chat_no_prompt_cache_options_when_nothing_injected(self):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
messages = [{"role": "user", "content": "hi"}]
|
|
_, processed, _ = self._chat(messages, params)
|
|
assert processed == messages
|
|
assert params == {}
|
|
|
|
@pytest.mark.parametrize("model", ["openai/gpt-4.1", "anthropic/claude-sonnet-4-5"])
|
|
def test_chat_other_targets_keep_message_level_cache_control(self, model):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
_, processed, _ = self._chat([{"role": "system", "content": "sys"}], params, model=model)
|
|
assert processed[0] == {"role": "system", "content": "sys", "cache_control": {"type": "ephemeral"}}
|
|
assert params == {}
|
|
|
|
def test_chat_seeded_points_apply_beside_client_breakpoint(self):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.SYSTEM_POINT)}
|
|
messages = [
|
|
{"role": "system", "content": "sys"},
|
|
{"role": "user", "content": [{"type": "text", "text": "hi", "prompt_cache_breakpoint": self.EXPLICIT}]},
|
|
]
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=messages,
|
|
model="openai/gpt-5.6",
|
|
custom_llm_provider="openai",
|
|
)
|
|
assert params["cache_control_injection_points"] == [
|
|
{"location": "message", "role": "system", "_litellm_openai_dialect": True}
|
|
]
|
|
_, processed, _ = self._chat(messages, params)
|
|
assert processed[0]["content"] == [{"type": "text", "text": "sys", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
assert processed[1] == messages[1]
|
|
assert params["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_cap_counts_client_breakpoints_of_both_kinds(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "a", "prompt_cache_breakpoint": self.EXPLICIT}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "b", "cache_control": {"type": "ephemeral"}}]},
|
|
{"role": "user", "content": [{"type": "text", "text": "c", "prompt_cache_breakpoint": self.EXPLICIT}]},
|
|
{"role": "user", "content": "d"},
|
|
{"role": "user", "content": "e"},
|
|
]
|
|
result = AnthropicCacheControlHook._apply_message_injections(
|
|
points=[{"location": "message", "role": "user"}],
|
|
messages=copy.deepcopy(messages),
|
|
max_blocks=4,
|
|
openai_dialect=True,
|
|
)
|
|
assert result[:3] == messages[:3]
|
|
assert result[3]["content"] == [{"type": "text", "text": "d", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
assert result[4] == {"role": "user", "content": "e"}
|
|
|
|
|
|
class TestOpenAIPromptCacheBreakpointPlacementRules:
|
|
"""OpenAI dialect only marks blocks OpenAI (and the /v1/messages bridges) can carry (#37509)."""
|
|
|
|
EXPLICIT = {"mode": "explicit"}
|
|
|
|
def _chat(self, messages, points, model="openai/gpt-5.6"):
|
|
params = {"cache_control_injection_points": copy.deepcopy(points)}
|
|
_, out, params = AnthropicCacheControlHook().get_chat_completion_prompt(
|
|
model=model,
|
|
messages=copy.deepcopy(messages),
|
|
non_default_params=params,
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
return out, params
|
|
|
|
def test_assistant_message_is_never_marked_on_chat_path(self):
|
|
messages = [{"role": "user", "content": "q"}, {"role": "assistant", "content": "a"}]
|
|
out, params = self._chat(messages, [{"location": "message", "role": "assistant"}])
|
|
assert out == messages
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_tool_message_text_is_marked_on_chat_path(self):
|
|
messages = [
|
|
{"role": "user", "content": "weather?"},
|
|
{"role": "assistant", "content": None, "tool_calls": [{"id": "c1", "type": "function", "function": {"name": "w", "arguments": "{}"}}]},
|
|
{"role": "tool", "tool_call_id": "c1", "content": "sunny"},
|
|
]
|
|
out, params = self._chat(messages, [{"location": "message", "index": -1}])
|
|
assert out[2]["content"] == [{"type": "text", "text": "sunny", "prompt_cache_breakpoint": self.EXPLICIT}]
|
|
assert params["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_tool_result_only_turn_is_skipped_on_v1_messages(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "q"}]},
|
|
{"role": "assistant", "content": [{"type": "tool_use", "id": "t1", "name": "w", "input": {}}]},
|
|
{"role": "user", "content": [{"type": "tool_result", "tool_use_id": "t1", "content": "sunny"}]},
|
|
]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "index": -1}]}
|
|
out, system = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(messages), None, kwargs, model="openai/gpt-5.6"
|
|
)
|
|
assert out == messages
|
|
assert system is None
|
|
assert "prompt_cache_options" not in kwargs
|
|
|
|
def test_assistant_turn_is_skipped_on_v1_messages(self):
|
|
messages = [
|
|
{"role": "user", "content": [{"type": "text", "text": "q"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "a"}]},
|
|
]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "role": "assistant"}]}
|
|
out, _ = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(messages), None, kwargs, model="openai/gpt-5.6"
|
|
)
|
|
assert out == messages
|
|
assert "prompt_cache_options" not in kwargs
|
|
|
|
def test_text_after_tool_result_is_marked(self):
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "tool_result", "tool_use_id": "t1", "content": "sunny"},
|
|
{"type": "text", "text": "thanks"},
|
|
],
|
|
}
|
|
]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "index": -1}]}
|
|
out, _ = AnthropicCacheControlHook.maybe_inject_cache_control(messages, None, kwargs, model="openai/gpt-5.6")
|
|
assert out[0]["content"] == [
|
|
{"type": "tool_result", "tool_use_id": "t1", "content": "sunny"},
|
|
{"type": "text", "text": "thanks", "prompt_cache_breakpoint": self.EXPLICIT},
|
|
]
|
|
assert kwargs["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_marker_walks_back_to_last_eligible_block(self):
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "text", "text": "read this"},
|
|
{"type": "document", "source": {"type": "text", "media_type": "text/plain", "data": "doc"}},
|
|
],
|
|
}
|
|
]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "index": -1}]}
|
|
out, _ = AnthropicCacheControlHook.maybe_inject_cache_control(messages, None, kwargs, model="openai/gpt-5.6")
|
|
assert out[0]["content"][0] == {"type": "text", "text": "read this", "prompt_cache_breakpoint": self.EXPLICIT}
|
|
assert "prompt_cache_breakpoint" not in out[0]["content"][1]
|
|
|
|
def test_skipped_block_does_not_consume_a_slot(self):
|
|
messages = [{"role": "user", "content": [{"type": "tool_result", "tool_use_id": "t0", "content": "r"}]}] + [
|
|
{"role": "user", "content": [{"type": "text", "text": f"m{i}"}]} for i in range(4)
|
|
]
|
|
kwargs = {"cache_control_injection_points": [{"location": "message", "role": "user"}]}
|
|
out, _ = AnthropicCacheControlHook.maybe_inject_cache_control(messages, None, kwargs, model="openai/gpt-5.6")
|
|
assert "prompt_cache_breakpoint" not in out[0]["content"][0]
|
|
assert all(msg["content"][0]["prompt_cache_breakpoint"] == self.EXPLICIT for msg in out[1:])
|
|
|
|
|
|
class TestChatPathProviderStamp:
|
|
"""The chat path learns the dialect decision (provider, api_base, opt-in) through the seeded points (#37509)."""
|
|
|
|
POINTS = [{"location": "message", "role": "system"}]
|
|
MESSAGES = [{"role": "system", "content": "sys"}, {"role": "user", "content": "hi"}]
|
|
ANTHROPIC_STYLE = {"role": "system", "content": "sys", "cache_control": {"type": "ephemeral"}}
|
|
OPENAI_STYLE = [{"type": "text", "text": "sys", "prompt_cache_breakpoint": {"mode": "explicit"}}]
|
|
CUSTOM_API_BASE = "http://127.0.0.1:9/v1"
|
|
|
|
def _seed_and_run(self, model, custom_llm_provider, api_base=None, prompt_cache_options=None):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.POINTS)}
|
|
if prompt_cache_options is not None:
|
|
params["prompt_cache_options"] = prompt_cache_options
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model=model,
|
|
custom_llm_provider=custom_llm_provider,
|
|
api_base=api_base,
|
|
)
|
|
return self._run(params, model)
|
|
|
|
def _run(self, params, model):
|
|
_, out, params = AnthropicCacheControlHook().get_chat_completion_prompt(
|
|
model=model,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
non_default_params=params,
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
return out, params
|
|
|
|
def test_openai_compatible_provider_keeps_anthropic_style_markers(self):
|
|
out, params = self._seed_and_run("gpt-5.6", "hosted_vllm")
|
|
assert out[0] == {"role": "system", "content": "sys", "cache_control": {"type": "ephemeral"}}
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_explicit_openai_provider_uses_openai_dialect(self):
|
|
out, params = self._seed_and_run("gpt-5.6", "openai")
|
|
assert out[0]["content"] == [{"type": "text", "text": "sys", "prompt_cache_breakpoint": {"mode": "explicit"}}]
|
|
assert params["prompt_cache_options"] == {"mode": "explicit"}
|
|
|
|
def test_bare_gpt_model_without_provider_resolves_to_openai(self):
|
|
out, params = self._seed_and_run("gpt-5.6", None)
|
|
assert out[0]["content"] == [{"type": "text", "text": "sys", "prompt_cache_breakpoint": {"mode": "explicit"}}]
|
|
assert params["prompt_cache_options"] == {"mode": "explicit"}
|
|
|
|
def test_points_keep_identity_for_models_below_gpt_5_6(self):
|
|
points = copy.deepcopy(self.POINTS)
|
|
params = {"cache_control_injection_points": points}
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model="anthropic/claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert params["cache_control_injection_points"] is points
|
|
|
|
def test_provider_lookup_skipped_for_models_below_gpt_5_6(self):
|
|
from unittest.mock import patch
|
|
|
|
with patch.object(AnthropicCacheControlHook, "_resolve_provider") as resolve:
|
|
assert AnthropicCacheControlHook._targets_openai_prompt_cache_breakpoint("gpt-4.1", None) is False
|
|
assert AnthropicCacheControlHook._targets_openai_prompt_cache_breakpoint("my-custom-model", None) is False
|
|
resolve.assert_not_called()
|
|
|
|
def test_litellm_proxy_target_keeps_anthropic_style_markers(self):
|
|
out, params = self._seed_and_run("litellm_proxy/gpt-5.6", None)
|
|
assert out[0] == self.ANTHROPIC_STYLE
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_custom_api_base_keeps_anthropic_style_markers(self):
|
|
out, params = self._seed_and_run("gpt-5.6", None, api_base=self.CUSTOM_API_BASE)
|
|
assert out[0] == self.ANTHROPIC_STYLE
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_custom_api_base_opts_in_through_prompt_cache_options(self):
|
|
out, params = self._seed_and_run(
|
|
"gpt-5.6", None, api_base=self.CUSTOM_API_BASE, prompt_cache_options={"mode": "explicit"}
|
|
)
|
|
assert out[0]["content"] == self.OPENAI_STYLE
|
|
assert params["prompt_cache_options"] == {"mode": "explicit"}
|
|
|
|
def test_regional_openai_api_base_uses_openai_dialect(self):
|
|
out, params = self._seed_and_run("gpt-5.6", None, api_base="https://eu.api.openai.com/v1")
|
|
assert out[0]["content"] == self.OPENAI_STYLE
|
|
assert params["prompt_cache_options"] == {"mode": "explicit"}
|
|
|
|
@pytest.mark.parametrize("env_var", ["OPENAI_BASE_URL", "OPENAI_API_BASE"])
|
|
def test_env_api_base_override_keeps_anthropic_style_markers(self, monkeypatch, env_var):
|
|
monkeypatch.setenv(env_var, self.CUSTOM_API_BASE)
|
|
out, params = self._seed_and_run("gpt-5.6", None)
|
|
assert out[0] == self.ANTHROPIC_STYLE
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_global_litellm_api_base_keeps_anthropic_style_markers(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "api_base", self.CUSTOM_API_BASE)
|
|
out, params = self._seed_and_run("gpt-5.6", None)
|
|
assert out[0] == self.ANTHROPIC_STYLE
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_request_api_base_wins_over_env_override(self, monkeypatch):
|
|
monkeypatch.setenv("OPENAI_BASE_URL", self.CUSTOM_API_BASE)
|
|
out, params = self._seed_and_run("gpt-5.6", None, api_base="https://api.openai.com/v1")
|
|
assert out[0]["content"] == self.OPENAI_STYLE
|
|
assert params["prompt_cache_options"] == {"mode": "explicit"}
|
|
|
|
@pytest.mark.parametrize(
|
|
"api_base,expected",
|
|
[(None, True), ("http://127.0.0.1:9/v1", False), ("https://eu.api.openai.com/v1", True)],
|
|
)
|
|
def test_seed_stamps_the_dialect_decision(self, api_base, expected):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.POINTS)}
|
|
AnthropicCacheControlHook.maybe_seed_default_injection_points(
|
|
non_default_params=params,
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
model="gpt-5.6",
|
|
custom_llm_provider=None,
|
|
api_base=api_base,
|
|
)
|
|
assert params["cache_control_injection_points"][0]["_litellm_openai_dialect"] is expected
|
|
|
|
def test_stamp_is_authoritative_over_request_params(self):
|
|
points = [{**self.POINTS[0], "_litellm_openai_dialect": False}]
|
|
out, params = self._run({"cache_control_injection_points": points, "custom_llm_provider": "openai"}, "gpt-5.6")
|
|
assert out[0] == self.ANTHROPIC_STYLE
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_unstamped_points_read_api_base_from_request_params(self):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.POINTS), "api_base": self.CUSTOM_API_BASE}
|
|
out, params = self._run(params, "gpt-5.6")
|
|
assert out[0] == self.ANTHROPIC_STYLE
|
|
assert "prompt_cache_options" not in params
|
|
|
|
def test_unstamped_points_read_prompt_cache_options_from_request_params(self):
|
|
params = {
|
|
"cache_control_injection_points": copy.deepcopy(self.POINTS),
|
|
"api_base": self.CUSTOM_API_BASE,
|
|
"prompt_cache_options": {"mode": "explicit"},
|
|
}
|
|
out, params = self._run(params, "gpt-5.6")
|
|
assert out[0]["content"] == self.OPENAI_STYLE
|
|
assert params["prompt_cache_options"] == {"mode": "explicit"}
|
|
|
|
|
|
class TestClientBreakpointsCountedOnce:
|
|
def test_client_message_breakpoints_are_not_double_counted(self):
|
|
messages = [{"role": "user", "content": [{"type": "text", "text": "m0", "cache_control": {"type": "ephemeral"}}]}] + [
|
|
{"role": "user", "content": [{"type": "text", "text": f"m{i}"}]} for i in range(1, 4)
|
|
]
|
|
out, system, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
messages=messages,
|
|
system="sys",
|
|
injection_points=[
|
|
{"location": "message", "role": "system"},
|
|
{"location": "message", "index": -1},
|
|
{"location": "message", "index": -2},
|
|
{"location": "message", "index": -3},
|
|
],
|
|
)
|
|
marked = [msg["content"][0].get("cache_control") is not None for msg in out]
|
|
assert marked == [True, False, True, True]
|
|
assert system[0]["cache_control"] == {"type": "ephemeral"}
|
|
|
|
|
|
class TestResponsesInputPartsEligible:
|
|
"""Responses API input parts can carry prompt_cache_breakpoint on GPT-5.6+ (#37509)."""
|
|
|
|
EXPLICIT = {"mode": "explicit"}
|
|
|
|
def _chat(self, messages, points, model="openai/gpt-5.6"):
|
|
params = {"cache_control_injection_points": copy.deepcopy(points)}
|
|
_, out, params = AnthropicCacheControlHook().get_chat_completion_prompt(
|
|
model=model,
|
|
messages=copy.deepcopy(messages),
|
|
non_default_params=params,
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
return out, params
|
|
|
|
def test_marker_lands_on_last_input_text_part(self):
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": [{"type": "input_text", "text": "first"}, {"type": "input_text", "text": "second"}],
|
|
}
|
|
]
|
|
out, params = self._chat(messages, [{"location": "message", "index": -1}])
|
|
assert out[0]["content"][0] == {"type": "input_text", "text": "first"}
|
|
assert out[0]["content"][1] == {
|
|
"type": "input_text",
|
|
"text": "second",
|
|
"prompt_cache_breakpoint": self.EXPLICIT,
|
|
}
|
|
assert params["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
@pytest.mark.parametrize(
|
|
"part",
|
|
[
|
|
{"type": "input_image", "image_url": "https://example.com/a.png"},
|
|
{"type": "input_file", "file_id": "file_1"},
|
|
],
|
|
)
|
|
def test_input_image_and_input_file_parts_are_eligible(self, part):
|
|
out, params = self._chat([{"role": "user", "content": [part]}], [{"location": "message", "index": -1}])
|
|
assert out[0]["content"][0] == {**part, "prompt_cache_breakpoint": self.EXPLICIT}
|
|
assert params["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
|
|
class TestMessagesPathApiBaseGate:
|
|
"""/v1/messages only speaks the OpenAI dialect when the request really targets api.openai.com (#37509)."""
|
|
|
|
EXPLICIT = {"mode": "explicit"}
|
|
USER_POINT = [{"location": "message", "role": "user"}]
|
|
MESSAGES = [{"role": "user", "content": [{"type": "text", "text": "hi"}]}]
|
|
CUSTOM_API_BASE = "http://127.0.0.1:9/v1"
|
|
CACHE_CONTROL_BLOCK = {"type": "text", "text": "hi", "cache_control": {"type": "ephemeral"}}
|
|
BREAKPOINT_BLOCK = {"type": "text", "text": "hi", "prompt_cache_breakpoint": {"mode": "explicit"}}
|
|
|
|
def _inject(self, model, api_base=None, prompt_cache_options=None, custom_llm_provider=None):
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(self.USER_POINT)}
|
|
if prompt_cache_options is not None:
|
|
kwargs["prompt_cache_options"] = prompt_cache_options
|
|
out, _ = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
copy.deepcopy(self.MESSAGES),
|
|
None,
|
|
kwargs,
|
|
model=model,
|
|
custom_llm_provider=custom_llm_provider,
|
|
api_base=api_base,
|
|
)
|
|
return out[0]["content"][0], kwargs
|
|
|
|
def test_litellm_proxy_target_keeps_cache_control(self):
|
|
block, kwargs = self._inject("gpt-5.6", api_base=self.CUSTOM_API_BASE, custom_llm_provider="litellm_proxy")
|
|
assert block == self.CACHE_CONTROL_BLOCK
|
|
assert "prompt_cache_options" not in kwargs
|
|
|
|
def test_custom_api_base_keeps_cache_control(self):
|
|
block, kwargs = self._inject("gpt-5.6", api_base=self.CUSTOM_API_BASE)
|
|
assert block == self.CACHE_CONTROL_BLOCK
|
|
assert "prompt_cache_options" not in kwargs
|
|
|
|
def test_custom_api_base_opts_in_through_prompt_cache_options(self):
|
|
block, kwargs = self._inject("gpt-5.6", api_base=self.CUSTOM_API_BASE, prompt_cache_options=self.EXPLICIT)
|
|
assert block == self.BREAKPOINT_BLOCK
|
|
assert kwargs["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_regional_openai_api_base_uses_openai_dialect(self):
|
|
block, kwargs = self._inject("gpt-5.6", api_base="https://eu.api.openai.com/v1")
|
|
assert block == self.BREAKPOINT_BLOCK
|
|
assert kwargs["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_default_api_base_uses_openai_dialect(self):
|
|
block, kwargs = self._inject("openai/gpt-5.6")
|
|
assert block == self.BREAKPOINT_BLOCK
|
|
assert kwargs["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
|
|
class TestToolConfigSlotInOpenAIDialect:
|
|
"""OpenAI has no tool_config cache block, so the dialect does not hold a slot for one (#37509)."""
|
|
|
|
EXPLICIT = {"mode": "explicit"}
|
|
MESSAGES = [{"role": "user", "content": [{"type": "text", "text": f"m{i}"}]} for i in range(4)]
|
|
POINTS = [{"location": "message", "index": i} for i in range(4)] + [{"location": "tool_config"}]
|
|
|
|
def test_chat_path_marks_all_four_messages(self):
|
|
params = {"cache_control_injection_points": copy.deepcopy(self.POINTS)}
|
|
_, out, params = AnthropicCacheControlHook().get_chat_completion_prompt(
|
|
model="openai/gpt-5.6",
|
|
messages=copy.deepcopy(self.MESSAGES),
|
|
non_default_params=params,
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
assert [msg["content"][0].get("prompt_cache_breakpoint") for msg in out] == [self.EXPLICIT] * 4
|
|
assert params["prompt_cache_options"] == self.EXPLICIT
|
|
|
|
def test_messages_path_marks_all_four_messages(self):
|
|
out, _, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
copy.deepcopy(self.MESSAGES), None, copy.deepcopy(self.POINTS), openai_dialect=True
|
|
)
|
|
assert [msg["content"][0].get("prompt_cache_breakpoint") for msg in out] == [self.EXPLICIT] * 4
|
|
|
|
def test_anthropic_dialect_still_reserves_the_tool_config_slot(self):
|
|
out, _, _ = AnthropicCacheControlHook.apply_to_anthropic_messages_request(
|
|
copy.deepcopy(self.MESSAGES), None, copy.deepcopy(self.POINTS)
|
|
)
|
|
assert sum(msg["content"][0].get("cache_control") is not None for msg in out) == 3
|
|
|
|
|
|
class TestPromptCacheBreakpointCapability:
|
|
"""Eligibility comes from the model map's supports_prompt_cache_breakpoint flag when the entry carries one,
|
|
with the GPT version rule for unlisted models and for entries the published map has not flagged yet (#37509)."""
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _bundled_model_map(self, monkeypatch):
|
|
bundled = os.path.join(os.path.dirname(litellm.__file__), "model_prices_and_context_window_backup.json")
|
|
with open(bundled) as handle:
|
|
monkeypatch.setattr(litellm, "model_cost", json.load(handle))
|
|
litellm.utils._cached_get_model_info_helper.cache_clear()
|
|
yield
|
|
litellm.utils._cached_get_model_info_helper.cache_clear()
|
|
|
|
|
|
def test_listed_model_uses_the_model_map_flag(self, monkeypatch):
|
|
flagged = {**litellm.model_cost["gpt-4.1"], "supports_prompt_cache_breakpoint": True}
|
|
monkeypatch.setitem(litellm.model_cost, "gpt-4.1", flagged)
|
|
assert supports_openai_prompt_cache_breakpoint("gpt-4.1") is True
|
|
|
|
def test_listed_gpt_5_6_without_the_flag_falls_back_to_the_version_rule(self, monkeypatch):
|
|
unflagged = {k: v for k, v in litellm.model_cost["gpt-5.6"].items() if k != "supports_prompt_cache_breakpoint"}
|
|
monkeypatch.setitem(litellm.model_cost, "gpt-5.6", unflagged)
|
|
assert supports_openai_prompt_cache_breakpoint("gpt-5.6") is True
|
|
assert supports_openai_prompt_cache_breakpoint("openai/gpt-5.6") is True
|
|
|
|
def test_listed_model_flagged_false_is_not_eligible(self, monkeypatch):
|
|
monkeypatch.setitem(
|
|
litellm.model_cost, "gpt-5.6", {**litellm.model_cost["gpt-5.6"], "supports_prompt_cache_breakpoint": False}
|
|
)
|
|
assert supports_openai_prompt_cache_breakpoint("gpt-5.6") is False
|
|
|
|
|
|
def test_published_map_without_the_flag_still_injects_on_gpt_5_6(self, monkeypatch):
|
|
unflagged = {k: v for k, v in litellm.model_cost["gpt-5.6"].items() if k != "supports_prompt_cache_breakpoint"}
|
|
monkeypatch.setitem(litellm.model_cost, "gpt-5.6", unflagged)
|
|
points = [{"location": "message", "role": "system"}]
|
|
|
|
_, chat_messages, chat_params = AnthropicCacheControlHook().get_chat_completion_prompt(
|
|
model="openai/gpt-5.6",
|
|
messages=[{"role": "system", "content": "sys"}, {"role": "user", "content": "hi"}],
|
|
non_default_params={"cache_control_injection_points": copy.deepcopy(points)},
|
|
prompt_id=None,
|
|
prompt_variables=None,
|
|
dynamic_callback_params={},
|
|
)
|
|
assert chat_messages[0]["content"] == [
|
|
{"type": "text", "text": "sys", "prompt_cache_breakpoint": {"mode": "explicit"}}
|
|
]
|
|
assert chat_params["prompt_cache_options"] == {"mode": "explicit"}
|
|
|
|
kwargs = {"cache_control_injection_points": copy.deepcopy(points)}
|
|
_, system = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
[{"role": "user", "content": "hi"}], "sys", kwargs, model="gpt-5.6", custom_llm_provider="openai"
|
|
)
|
|
assert system == [{"type": "text", "text": "sys", "prompt_cache_breakpoint": {"mode": "explicit"}}]
|
|
assert kwargs == {"prompt_cache_options": {"mode": "explicit"}}
|
|
|
|
@pytest.mark.parametrize("model,expected", [("gpt-5.6-2026-01-01", True), ("gpt-5.5-preview-unlisted", False)])
|
|
def test_unlisted_model_falls_back_to_the_version_rule(self, model, expected):
|
|
assert model not in litellm.model_cost
|
|
assert supports_openai_prompt_cache_breakpoint(model) is expected
|
|
|
|
|
|
class TestRecordGatewayInjection:
|
|
"""The injection marker spend accounting gates prompt-caching savings on."""
|
|
|
|
KEY = "litellm_gateway_injected_cache"
|
|
DEPLOYMENT = "dep-abc"
|
|
|
|
def test_records_only_an_actual_injection(self):
|
|
"""A zero delta is hook re-entry and a negative one is a prompt manager replacing
|
|
the messages; neither is litellm adding a breakpoint."""
|
|
kwargs: dict = {"metadata": {}, "model_info": {"id": self.DEPLOYMENT}}
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 0)
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, -3)
|
|
assert kwargs["metadata"] == {}
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 2)
|
|
assert kwargs["metadata"][self.KEY] == self.DEPLOYMENT
|
|
|
|
def test_a_point_this_pass_did_not_place_is_not_claimed(self):
|
|
"""A tool_config point is placed by the Bedrock converse transform, and only when
|
|
the request carries tools, so its presence here says nothing about whether a
|
|
breakpoint reaches the wire. Claiming it credited litellm on request shapes that
|
|
inject nothing, and under-crediting Bedrock tool caching is the fail-closed half.
|
|
"""
|
|
kwargs: dict = {"metadata": {}, "model_info": {"id": self.DEPLOYMENT}}
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 0)
|
|
assert kwargs["metadata"] == {}
|
|
|
|
@pytest.mark.parametrize("kwargs", [{}, {"metadata": None}, {"metadata": "not-a-dict"}])
|
|
def test_never_introduces_a_metadata_key(self, kwargs):
|
|
"""Stamping must not add a key to a dict the caller splats as ``**kwargs``.
|
|
|
|
``aresponses`` takes ``metadata`` as an explicit parameter and forwards the rest
|
|
of the request as ``**kwargs``, so a bucket created here arrives twice and the
|
|
call dies with "got multiple values for keyword argument 'metadata'". Only the
|
|
proxy reads this marker and it always seeds the bucket first, so a request
|
|
without one has nothing to record.
|
|
"""
|
|
before = dict(kwargs)
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 3)
|
|
assert kwargs == before
|
|
|
|
def test_a_later_pass_cannot_unset_an_earlier_injection(self):
|
|
kwargs: dict = {"litellm_metadata": {"user_api_key": "k"}, "model_info": {"id": self.DEPLOYMENT}}
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 2)
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 0)
|
|
assert kwargs["litellm_metadata"][self.KEY] == self.DEPLOYMENT
|
|
|
|
def test_an_every_deployment_mark_survives_a_later_per_deployment_stamp(self):
|
|
"""A per-leg stamp like the Bedrock converse tool_config one describes one leg of
|
|
a payload every leg sends, so narrowing an every-deployment mark to that leg's
|
|
deployment would uncredit whichever leg gets billed after a failover."""
|
|
kwargs: dict = {"litellm_metadata": {self.KEY: ""}, "model_info": {"id": self.DEPLOYMENT}}
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 1)
|
|
assert kwargs["litellm_metadata"][self.KEY] == ""
|
|
|
|
def test_a_pre_choice_pass_stamps_the_sentinel_over_a_provisional_deployment(self):
|
|
"""The router's prompt-management factory stamps a provisional deployment's
|
|
model_info into kwargs before the prompt pass runs, and any other deployment can
|
|
end up billed, so the pass declares every-deployment scope explicitly."""
|
|
kwargs: dict = {"litellm_metadata": {}, "model_info": {"id": self.DEPLOYMENT}}
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 1, injected_for_every_deployment=True)
|
|
assert kwargs["litellm_metadata"][self.KEY] == ""
|
|
|
|
def test_a_per_deployment_mark_still_follows_the_latest_leg(self):
|
|
kwargs: dict = {"litellm_metadata": {self.KEY: "dep-old"}, "model_info": {"id": self.DEPLOYMENT}}
|
|
AnthropicCacheControlHook.record_gateway_injection(kwargs, 1)
|
|
assert kwargs["litellm_metadata"][self.KEY] == self.DEPLOYMENT
|
|
|
|
def test_v1_messages_auto_injection_stamps_the_marker(self, monkeypatch):
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
kwargs: dict = {"litellm_metadata": {}, "model_info": {"id": self.DEPLOYMENT}}
|
|
result_msgs, result_sys = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
[{"role": "user", "content": "latest turn"}],
|
|
"a long system prompt",
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert kwargs["litellm_metadata"][self.KEY] == self.DEPLOYMENT
|
|
|
|
def test_v1_messages_stand_down_leaves_no_marker(self, monkeypatch):
|
|
"""Client-supplied cache_control means the gateway did nothing to credit."""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
kwargs: dict = {"litellm_metadata": {}}
|
|
AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
[
|
|
{
|
|
"role": "system",
|
|
"content": [{"type": "text", "text": "s", "cache_control": {"type": "ephemeral"}}],
|
|
},
|
|
{"role": "user", "content": "latest turn"},
|
|
],
|
|
None,
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert self.KEY not in kwargs["litellm_metadata"]
|
|
|
|
def test_v1_messages_reentry_keeps_the_marker(self, monkeypatch):
|
|
"""A second pass over already-injected messages computes a zero delta, which must
|
|
leave the first pass's mark standing rather than reading as no injection."""
|
|
monkeypatch.setattr(litellm, "enable_anthropic_prompt_caching", True)
|
|
kwargs: dict = {"litellm_metadata": {}, "model_info": {"id": self.DEPLOYMENT}}
|
|
messages = [{"role": "user", "content": "latest turn"}]
|
|
first_msgs, first_sys = AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
messages, "a long system prompt", kwargs, model="claude-sonnet-4-5", custom_llm_provider="anthropic"
|
|
)
|
|
AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
first_msgs, first_sys, kwargs, model="claude-sonnet-4-5", custom_llm_provider="anthropic"
|
|
)
|
|
assert kwargs["litellm_metadata"][self.KEY] == self.DEPLOYMENT
|
|
|
|
def test_configured_points_skipping_a_marked_target_record_nothing(self):
|
|
kwargs: dict = {
|
|
"litellm_metadata": {},
|
|
"cache_control_injection_points": [{"location": "message", "role": "system", "index": None}],
|
|
}
|
|
AnthropicCacheControlHook.maybe_inject_cache_control(
|
|
[
|
|
{
|
|
"role": "system",
|
|
"content": [{"type": "text", "text": "s", "cache_control": {"type": "ephemeral"}}],
|
|
},
|
|
{"role": "user", "content": "hi"},
|
|
],
|
|
None,
|
|
kwargs,
|
|
model="claude-sonnet-4-5",
|
|
custom_llm_provider="anthropic",
|
|
)
|
|
assert self.KEY not in kwargs["litellm_metadata"]
|