File size: 19,053 Bytes
69fec20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 | from typing import Any, Dict, List, Tuple
import json
from src.converter.utils import extract_content_and_reasoning
from log import log
from src.converter.openai2gemini import _convert_usage_metadata
def safe_get_nested(obj: Any, *keys: str, default: Any = None) -> Any:
"""安全获取嵌套字典值
Args:
obj: 字典对象
*keys: 嵌套键路径
default: 默认值
Returns:
获取到的值或默认值
"""
for key in keys:
if not isinstance(obj, dict):
return default
obj = obj.get(key, default)
if obj is default:
return default
return obj
def parse_response_for_fake_stream(response_data: Dict[str, Any]) -> tuple:
"""从完整响应中提取内容和推理内容(用于假流式)
Args:
response_data: Gemini API 响应数据
Returns:
(content, reasoning_content, finish_reason, images): 内容、推理内容、结束原因和图片数据的元组
"""
import json
# 处理GeminiCLI的response包装格式
if "response" in response_data and "candidates" not in response_data:
log.debug(f"[FAKE_STREAM] Unwrapping response field")
response_data = response_data["response"]
candidates = response_data.get("candidates", [])
log.debug(f"[FAKE_STREAM] Found {len(candidates)} candidates")
if not candidates:
return "", "", "STOP", []
candidate = candidates[0]
finish_reason = candidate.get("finishReason", "STOP")
parts = safe_get_nested(candidate, "content", "parts", default=[])
log.debug(f"[FAKE_STREAM] Extracted {len(parts)} parts: {json.dumps(parts, ensure_ascii=False)}")
content, reasoning_content, images = extract_content_and_reasoning(parts)
log.debug(f"[FAKE_STREAM] Content length: {len(content)}, Reasoning length: {len(reasoning_content)}, Images count: {len(images)}")
return content, reasoning_content, finish_reason, images
def extract_fake_stream_content(response: Any) -> Tuple[str, str, Dict[str, int]]:
"""
从 Gemini 非流式响应中提取内容,用于假流式处理
Args:
response: Gemini API 响应对象
Returns:
(content, reasoning_content, usage) 元组
"""
from src.converter.utils import extract_content_and_reasoning
# 解析响应体
if hasattr(response, "body"):
body_str = (
response.body.decode()
if isinstance(response.body, bytes)
else str(response.body)
)
elif hasattr(response, "content"):
body_str = (
response.content.decode()
if isinstance(response.content, bytes)
else str(response.content)
)
else:
body_str = str(response)
try:
response_data = json.loads(body_str)
# GeminiCLI 返回的格式是 {"response": {...}, "traceId": "..."}
# 需要先提取 response 字段
if "response" in response_data:
gemini_response = response_data["response"]
else:
gemini_response = response_data
# 从Gemini响应中提取内容,使用思维链分离逻辑
content = ""
reasoning_content = ""
images = []
if "candidates" in gemini_response and gemini_response["candidates"]:
# Gemini格式响应 - 使用思维链分离
candidate = gemini_response["candidates"][0]
if "content" in candidate and "parts" in candidate["content"]:
parts = candidate["content"]["parts"]
content, reasoning_content, images = extract_content_and_reasoning(parts)
elif "choices" in gemini_response and gemini_response["choices"]:
# OpenAI格式响应
content = gemini_response["choices"][0].get("message", {}).get("content", "")
# 如果没有正常内容但有思维内容,给出警告
if not content and reasoning_content:
log.warning("Fake stream response contains only thinking content")
content = "[模型正在思考中,请稍后再试或重新提问]"
# 如果完全没有内容,提供默认回复
if not content:
log.warning(f"No content found in response: {gemini_response}")
content = "[响应为空,请重新尝试]"
# 转换usageMetadata为OpenAI格式
usage = _convert_usage_metadata(gemini_response.get("usageMetadata"))
return content, reasoning_content, usage
except json.JSONDecodeError:
# 如果不是JSON,直接返回原始文本
return body_str, "", None
def _build_candidate(parts: List[Dict[str, Any]], finish_reason: str = "STOP") -> Dict[str, Any]:
"""构建标准候选响应结构
Args:
parts: parts 列表
finish_reason: 结束原因
Returns:
候选响应字典
"""
return {
"candidates": [{
"content": {"parts": parts, "role": "model"},
"finishReason": finish_reason,
"index": 0,
}]
}
def create_openai_heartbeat_chunk() -> Dict[str, Any]:
"""
创建 OpenAI 格式的心跳块(用于假流式)
Returns:
心跳响应块字典
"""
return {
"choices": [
{
"index": 0,
"delta": {"role": "assistant", "content": ""},
"finish_reason": None,
}
]
}
def build_gemini_fake_stream_chunks(content: str, reasoning_content: str, finish_reason: str, images: List[Dict[str, Any]] = None, chunk_size: int = 50) -> List[Dict[str, Any]]:
"""构建假流式响应的数据块
Args:
content: 主要内容
reasoning_content: 推理内容
finish_reason: 结束原因
images: 图片数据列表(可选)
chunk_size: 每个chunk的字符数(默认50)
Returns:
响应数据块列表
"""
if images is None:
images = []
log.debug(f"[build_gemini_fake_stream_chunks] Input - content: {repr(content)}, reasoning: {repr(reasoning_content)}, finish_reason: {finish_reason}, images count: {len(images)}")
chunks = []
# 如果没有正常内容但有思维内容,提供默认回复
if not content:
default_text = "[模型正在思考中,请稍后再试或重新提问]" if reasoning_content else "[响应为空,请重新尝试]"
return [_build_candidate([{"text": default_text}], finish_reason)]
# 分块发送主要内容
first_chunk = True
for i in range(0, len(content), chunk_size):
chunk_text = content[i:i + chunk_size]
is_last_chunk = (i + chunk_size >= len(content)) and not reasoning_content
chunk_finish_reason = finish_reason if is_last_chunk else None
# 如果是第一个chunk且有图片,将图片包含在parts中
parts = []
if first_chunk and images:
# 在Gemini格式中,需要将image_url格式转换为inlineData格式
for img in images:
if img.get("type") == "image_url":
url = img.get("image_url", {}).get("url", "")
# 解析 data URL: data:{mime_type};base64,{data}
if url.startswith("data:"):
parts_of_url = url.split(";base64,")
if len(parts_of_url) == 2:
mime_type = parts_of_url[0].replace("data:", "")
base64_data = parts_of_url[1]
parts.append({
"inlineData": {
"mimeType": mime_type,
"data": base64_data
}
})
first_chunk = False
parts.append({"text": chunk_text})
chunk_data = _build_candidate(parts, chunk_finish_reason)
log.debug(f"[build_gemini_fake_stream_chunks] Generated chunk: {chunk_data}")
chunks.append(chunk_data)
# 如果有推理内容,分块发送
if reasoning_content:
for i in range(0, len(reasoning_content), chunk_size):
chunk_text = reasoning_content[i:i + chunk_size]
is_last_chunk = i + chunk_size >= len(reasoning_content)
chunk_finish_reason = finish_reason if is_last_chunk else None
chunks.append(_build_candidate([{"text": chunk_text, "thought": True}], chunk_finish_reason))
log.debug(f"[build_gemini_fake_stream_chunks] Total chunks generated: {len(chunks)}")
return chunks
def create_gemini_heartbeat_chunk() -> Dict[str, Any]:
"""创建 Gemini 格式的心跳数据块
Returns:
心跳数据块
"""
chunk = _build_candidate([{"text": ""}])
chunk["candidates"][0]["finishReason"] = None
return chunk
def build_openai_fake_stream_chunks(content: str, reasoning_content: str, finish_reason: str, model: str, images: List[Dict[str, Any]] = None, chunk_size: int = 50) -> List[Dict[str, Any]]:
"""构建 OpenAI 格式的假流式响应数据块
Args:
content: 主要内容
reasoning_content: 推理内容
finish_reason: 结束原因(如 "STOP", "MAX_TOKENS")
model: 模型名称
images: 图片数据列表(可选)
chunk_size: 每个chunk的字符数(默认50)
Returns:
OpenAI 格式的响应数据块列表
"""
import time
import uuid
if images is None:
images = []
log.debug(f"[build_openai_fake_stream_chunks] Input - content: {repr(content)}, reasoning: {repr(reasoning_content)}, finish_reason: {finish_reason}, images count: {len(images)}")
chunks = []
response_id = f"chatcmpl-{uuid.uuid4().hex[:24]}"
created = int(time.time())
# 映射 Gemini finish_reason 到 OpenAI 格式
openai_finish_reason = None
if finish_reason == "STOP":
openai_finish_reason = "stop"
elif finish_reason == "MAX_TOKENS":
openai_finish_reason = "length"
elif finish_reason in ["SAFETY", "RECITATION"]:
openai_finish_reason = "content_filter"
# 如果没有正常内容但有思维内容,提供默认回复
if not content:
default_text = "[模型正在思考中,请稍后再试或重新提问]" if reasoning_content else "[响应为空,请重新尝试]"
return [{
"id": response_id,
"object": "chat.completion.chunk",
"created": created,
"model": model,
"choices": [{
"index": 0,
"delta": {"content": default_text},
"finish_reason": openai_finish_reason,
}]
}]
# 分块发送主要内容
first_chunk = True
for i in range(0, len(content), chunk_size):
chunk_text = content[i:i + chunk_size]
is_last_chunk = (i + chunk_size >= len(content)) and not reasoning_content
chunk_finish = openai_finish_reason if is_last_chunk else None
delta_content = {}
# 如果是第一个chunk且有图片,构建包含图片的content数组
if first_chunk and images:
delta_content["content"] = images + [{"type": "text", "text": chunk_text}]
first_chunk = False
else:
delta_content["content"] = chunk_text
chunk_data = {
"id": response_id,
"object": "chat.completion.chunk",
"created": created,
"model": model,
"choices": [{
"index": 0,
"delta": delta_content,
"finish_reason": chunk_finish,
}]
}
log.debug(f"[build_openai_fake_stream_chunks] Generated chunk: {chunk_data}")
chunks.append(chunk_data)
# 如果有推理内容,分块发送(使用 reasoning_content 字段)
if reasoning_content:
for i in range(0, len(reasoning_content), chunk_size):
chunk_text = reasoning_content[i:i + chunk_size]
is_last_chunk = i + chunk_size >= len(reasoning_content)
chunk_finish = openai_finish_reason if is_last_chunk else None
chunks.append({
"id": response_id,
"object": "chat.completion.chunk",
"created": created,
"model": model,
"choices": [{
"index": 0,
"delta": {"reasoning_content": chunk_text},
"finish_reason": chunk_finish,
}]
})
log.debug(f"[build_openai_fake_stream_chunks] Total chunks generated: {len(chunks)}")
return chunks
def create_anthropic_heartbeat_chunk() -> Dict[str, Any]:
"""
创建 Anthropic 格式的心跳块(用于假流式)
Returns:
心跳响应块字典
"""
return {
"type": "ping"
}
def build_anthropic_fake_stream_chunks(content: str, reasoning_content: str, finish_reason: str, model: str, images: List[Dict[str, Any]] = None, chunk_size: int = 50) -> List[Dict[str, Any]]:
"""构建 Anthropic 格式的假流式响应数据块
Args:
content: 主要内容
reasoning_content: 推理内容(thinking content)
finish_reason: 结束原因(如 "STOP", "MAX_TOKENS")
model: 模型名称
images: 图片数据列表(可选)
chunk_size: 每个chunk的字符数(默认50)
Returns:
Anthropic SSE 格式的响应数据块列表
"""
import uuid
if images is None:
images = []
log.debug(f"[build_anthropic_fake_stream_chunks] Input - content: {repr(content)}, reasoning: {repr(reasoning_content)}, finish_reason: {finish_reason}, images count: {len(images)}")
chunks = []
message_id = f"msg_{uuid.uuid4().hex}"
# 映射 Gemini finish_reason 到 Anthropic 格式
anthropic_stop_reason = "end_turn"
if finish_reason == "MAX_TOKENS":
anthropic_stop_reason = "max_tokens"
elif finish_reason in ["SAFETY", "RECITATION"]:
anthropic_stop_reason = "end_turn"
# 1. 发送 message_start 事件
chunks.append({
"type": "message_start",
"message": {
"id": message_id,
"type": "message",
"role": "assistant",
"model": model,
"content": [],
"stop_reason": None,
"stop_sequence": None,
"usage": {"input_tokens": 0, "output_tokens": 0}
}
})
# 如果没有正常内容但有思维内容,提供默认回复
if not content:
default_text = "[模型正在思考中,请稍后再试或重新提问]" if reasoning_content else "[响应为空,请重新尝试]"
# content_block_start
chunks.append({
"type": "content_block_start",
"index": 0,
"content_block": {"type": "text", "text": ""}
})
# content_block_delta
chunks.append({
"type": "content_block_delta",
"index": 0,
"delta": {"type": "text_delta", "text": default_text}
})
# content_block_stop
chunks.append({
"type": "content_block_stop",
"index": 0
})
# message_delta
chunks.append({
"type": "message_delta",
"delta": {"stop_reason": anthropic_stop_reason, "stop_sequence": None},
"usage": {"output_tokens": 0}
})
# message_stop
chunks.append({
"type": "message_stop"
})
return chunks
block_index = 0
# 2. 如果有推理内容,先发送 thinking 块
if reasoning_content:
# thinking content_block_start
chunks.append({
"type": "content_block_start",
"index": block_index,
"content_block": {"type": "thinking", "thinking": ""}
})
# 分块发送推理内容
for i in range(0, len(reasoning_content), chunk_size):
chunk_text = reasoning_content[i:i + chunk_size]
chunks.append({
"type": "content_block_delta",
"index": block_index,
"delta": {"type": "thinking_delta", "thinking": chunk_text}
})
# thinking content_block_stop
chunks.append({
"type": "content_block_stop",
"index": block_index
})
block_index += 1
# 3. 如果有图片,发送图片块
if images:
for img in images:
if img.get("type") == "image_url":
url = img.get("image_url", {}).get("url", "")
# 解析 data URL: data:{mime_type};base64,{data}
if url.startswith("data:"):
parts_of_url = url.split(";base64,")
if len(parts_of_url) == 2:
mime_type = parts_of_url[0].replace("data:", "")
base64_data = parts_of_url[1]
# image content_block_start
chunks.append({
"type": "content_block_start",
"index": block_index,
"content_block": {
"type": "image",
"source": {
"type": "base64",
"media_type": mime_type,
"data": base64_data
}
}
})
# image content_block_stop
chunks.append({
"type": "content_block_stop",
"index": block_index
})
block_index += 1
# 4. 发送主要内容(text 块)
# text content_block_start
chunks.append({
"type": "content_block_start",
"index": block_index,
"content_block": {"type": "text", "text": ""}
})
# 分块发送主要内容
for i in range(0, len(content), chunk_size):
chunk_text = content[i:i + chunk_size]
chunks.append({
"type": "content_block_delta",
"index": block_index,
"delta": {"type": "text_delta", "text": chunk_text}
})
# text content_block_stop
chunks.append({
"type": "content_block_stop",
"index": block_index
})
# 5. 发送 message_delta
chunks.append({
"type": "message_delta",
"delta": {"stop_reason": anthropic_stop_reason, "stop_sequence": None},
"usage": {"output_tokens": len(content) + len(reasoning_content)}
})
# 6. 发送 message_stop
chunks.append({
"type": "message_stop"
})
log.debug(f"[build_anthropic_fake_stream_chunks] Total chunks generated: {len(chunks)}")
return chunks |