修复缓存问题

This commit is contained in:
h88782481 2026-03-15 13:25:23 +08:00
parent 049f91e549
commit 98f3ae24a0
4 changed files with 79 additions and 5 deletions

View file

@ -42,6 +42,7 @@ from routes.common import (
build_responses_target,
build_route_context,
chat_error_chunk,
ensure_responses_cache_control,
inject_instructions_anthropic,
inject_instructions_cc,
inject_instructions_responses,
@ -311,6 +312,7 @@ def _handle_responses_backend(ctx: RouteContext, payload: dict[str, Any], turn:
responses_payload = cc_to_responses_request(payload)
responses_payload['model'] = ctx.upstream_model
responses_payload = inject_instructions_responses(responses_payload, ctx.custom_instructions, ctx.instructions_position)
responses_payload = ensure_responses_cache_control(responses_payload)
_dbg(
'已转换为 Responses 请求:字段=' + str(list(responses_payload.keys()))
+ f' 输入项数={len(responses_payload.get("input", []))}'