File size: 19,594 Bytes
1a9e2c2 | 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 | """Grok API 响应处理器 - 处理流式和非流式响应"""
import orjson
import uuid
import time
import asyncio
from typing import AsyncGenerator, Tuple, Any
from app.core.config import setting
from app.core.exception import GrokApiException
from app.core.logger import logger
from app.models.openai_schema import (
OpenAIChatCompletionResponse,
OpenAIChatCompletionChoice,
OpenAIChatCompletionMessage,
OpenAIChatCompletionChunkResponse,
OpenAIChatCompletionChunkChoice,
OpenAIChatCompletionChunkMessage
)
from app.services.grok.cache import image_cache_service, video_cache_service
class StreamTimeoutManager:
"""流式响应超时管理"""
def __init__(self, chunk_timeout: int = 120, first_timeout: int = 30, total_timeout: int = 600):
self.chunk_timeout = chunk_timeout
self.first_timeout = first_timeout
self.total_timeout = total_timeout
self.start_time = asyncio.get_event_loop().time()
self.last_chunk_time = self.start_time
self.first_received = False
def check_timeout(self) -> Tuple[bool, str]:
"""检查超时"""
now = asyncio.get_event_loop().time()
if not self.first_received and now - self.start_time > self.first_timeout:
return True, f"首次响应超时({self.first_timeout}秒)"
if self.total_timeout > 0 and now - self.start_time > self.total_timeout:
return True, f"总超时({self.total_timeout}秒)"
if self.first_received and now - self.last_chunk_time > self.chunk_timeout:
return True, f"数据块超时({self.chunk_timeout}秒)"
return False, ""
def mark_received(self):
"""标记收到数据"""
self.last_chunk_time = asyncio.get_event_loop().time()
self.first_received = True
def duration(self) -> float:
"""获取总耗时"""
return asyncio.get_event_loop().time() - self.start_time
class GrokResponseProcessor:
"""Grok响应处理器"""
@staticmethod
async def process_normal(response, auth_token: str, model: str = None) -> OpenAIChatCompletionResponse:
"""处理非流式响应"""
response_closed = False
try:
async for chunk in response.aiter_lines():
if not chunk:
continue
data = orjson.loads(chunk)
# 错误检查
if error := data.get("error"):
raise GrokApiException(
f"API错误: {error.get('message', '未知错误')}",
"API_ERROR",
{"code": error.get("code")}
)
grok_resp = data.get("result", {}).get("response", {})
# 视频响应
if video_resp := grok_resp.get("streamingVideoGenerationResponse"):
if video_url := video_resp.get("videoUrl"):
content = await GrokResponseProcessor._build_video_content(video_url, auth_token)
result = GrokResponseProcessor._build_response(content, model or "grok-imagine-0.9")
response_closed = True
response.close()
return result
# 模型响应
model_response = grok_resp.get("modelResponse")
if not model_response:
continue
if error_msg := model_response.get("error"):
raise GrokApiException(f"模型错误: {error_msg}", "MODEL_ERROR")
# 构建内容
content = model_response.get("message", "")
model_name = model_response.get("model")
# 处理图片
if images := model_response.get("generatedImageUrls"):
content = await GrokResponseProcessor._append_images(content, images, auth_token)
result = GrokResponseProcessor._build_response(content, model_name)
response_closed = True
response.close()
return result
raise GrokApiException("无响应数据", "NO_RESPONSE")
except orjson.JSONDecodeError as e:
logger.error(f"[Processor] JSON解析失败: {e}")
raise GrokApiException(f"JSON解析失败: {e}", "JSON_ERROR") from e
except Exception as e:
logger.error(f"[Processor] 处理错误: {type(e).__name__}: {e}")
raise GrokApiException(f"响应处理错误: {e}", "PROCESS_ERROR") from e
finally:
if not response_closed and hasattr(response, 'close'):
try:
response.close()
except Exception as e:
logger.warning(f"[Processor] 关闭响应失败: {e}")
@staticmethod
async def process_stream(response, auth_token: str, session: Any = None) -> AsyncGenerator[str, None]:
"""处理流式响应"""
# 状态变量
is_image = False
is_thinking = False
thinking_finished = False
model = None
filtered_tags = setting.grok_config.get("filtered_tags", "").split(",")
video_progress_started = False
last_video_progress = -1
response_closed = False
show_thinking = setting.grok_config.get("show_thinking", True)
# 超时管理
timeout_mgr = StreamTimeoutManager(
chunk_timeout=setting.grok_config.get("stream_chunk_timeout", 120),
first_timeout=setting.grok_config.get("stream_first_response_timeout", 30),
total_timeout=setting.grok_config.get("stream_total_timeout", 600)
)
def make_chunk(content: str, finish: str = None):
"""生成响应块"""
chunk_data = OpenAIChatCompletionChunkResponse(
id=f"chatcmpl-{uuid.uuid4()}",
created=int(time.time()),
model=model or "grok-4-mini-thinking-tahoe",
choices=[OpenAIChatCompletionChunkChoice(
index=0,
delta=OpenAIChatCompletionChunkMessage(
role="assistant",
content=content
) if content else {},
finish_reason=finish
)]
)
return f"data: {chunk_data.model_dump_json()}\n\n"
try:
async for chunk in response.aiter_lines():
# 超时检查
is_timeout, timeout_msg = timeout_mgr.check_timeout()
if is_timeout:
logger.warning(f"[Processor] {timeout_msg}")
yield make_chunk("", "stop")
yield "data: [DONE]\n\n"
return
logger.debug(f"[Processor] 收到数据块: {len(chunk)} bytes")
if not chunk:
continue
try:
data = orjson.loads(chunk)
# 错误检查
if error := data.get("error"):
error_msg = error.get('message', '未知错误')
logger.error(f"[Processor] API错误: {error_msg}")
yield make_chunk(f"Error: {error_msg}", "stop")
yield "data: [DONE]\n\n"
return
grok_resp = data.get("result", {}).get("response", {})
logger.debug(f"[Processor] 解析响应: {len(grok_resp)} bytes")
if not grok_resp:
continue
timeout_mgr.mark_received()
# 更新模型
if user_resp := grok_resp.get("userResponse"):
if m := user_resp.get("model"):
model = m
# 视频处理
if video_resp := grok_resp.get("streamingVideoGenerationResponse"):
progress = video_resp.get("progress", 0)
v_url = video_resp.get("videoUrl")
# 进度更新
if progress > last_video_progress:
last_video_progress = progress
if show_thinking:
if not video_progress_started:
content = f"<think>视频已生成{progress}%\n"
video_progress_started = True
elif progress < 100:
content = f"视频已生成{progress}%\n"
else:
content = f"视频已生成{progress}%</think>\n"
yield make_chunk(content)
# 视频URL
if v_url:
logger.debug("[Processor] 视频生成完成")
video_content = await GrokResponseProcessor._build_video_content(v_url, auth_token)
yield make_chunk(video_content)
continue
# 图片模式
if grok_resp.get("imageAttachmentInfo"):
is_image = True
token = grok_resp.get("token", "")
# 图片处理
if is_image:
if model_resp := grok_resp.get("modelResponse"):
image_mode = setting.global_config.get("image_mode", "url")
content = ""
for img in model_resp.get("generatedImageUrls", []):
try:
if image_mode == "base64":
# Base64模式 - 分块发送
base64_str = await image_cache_service.download_base64(f"/{img}", auth_token)
if base64_str:
# 分块发送大数据
if not base64_str.startswith("data:"):
parts = base64_str.split(",", 1)
if len(parts) == 2:
yield make_chunk(f"
# 8KB分块
for i in range(0, len(parts[1]), 8192):
yield make_chunk(parts[1][i:i+8192])
yield make_chunk(")\n")
else:
yield make_chunk(f"\n")
else:
yield make_chunk(f"\n")
else:
yield make_chunk(f"\n")
else:
# URL模式
await image_cache_service.download_image(f"/{img}", auth_token)
img_path = img.replace('/', '-')
base_url = setting.global_config.get("base_url", "")
img_url = f"{base_url}/images/{img_path}" if base_url else f"/images/{img_path}"
content += f"\n"
except Exception as e:
logger.warning(f"[Processor] 处理图片失败: {e}")
content += f"\n"
yield make_chunk(content.strip(), "stop")
return
elif token:
yield make_chunk(token)
# 对话处理
else:
if isinstance(token, list):
continue
if any(tag in token for tag in filtered_tags if token):
continue
current_is_thinking = grok_resp.get("isThinking", False)
message_tag = grok_resp.get("messageTag")
if thinking_finished and current_is_thinking:
continue
# 搜索结果处理
if grok_resp.get("toolUsageCardId"):
if web_search := grok_resp.get("webSearchResults"):
if current_is_thinking:
if show_thinking:
for result in web_search.get("results", []):
title = result.get("title", "")
url = result.get("url", "")
preview = result.get("preview", "")
preview_clean = preview.replace("\n", "") if isinstance(preview, str) else ""
token += f'\n- [{title}]({url} "{preview_clean}")'
token += "\n"
else:
continue
else:
continue
else:
continue
if token:
content = token
if message_tag == "header":
content = f"\n\n{token}\n\n"
# Thinking状态切换
should_skip = False
if not is_thinking and current_is_thinking:
if show_thinking:
content = f"<think>\n{content}"
else:
should_skip = True
elif is_thinking and not current_is_thinking:
if show_thinking:
content = f"\n</think>\n{content}"
thinking_finished = True
elif current_is_thinking:
if not show_thinking:
should_skip = True
if not should_skip:
yield make_chunk(content)
is_thinking = current_is_thinking
except (orjson.JSONDecodeError, UnicodeDecodeError) as e:
logger.warning(f"[Processor] 解析失败: {e}")
continue
except Exception as e:
logger.warning(f"[Processor] 处理出错: {e}")
continue
yield make_chunk("", "stop")
yield "data: [DONE]\n\n"
logger.info(f"[Processor] 流式完成,耗时: {timeout_mgr.duration():.2f}秒")
except Exception as e:
logger.error(f"[Processor] 严重错误: {e}")
yield make_chunk(f"处理错误: {e}", "error")
yield "data: [DONE]\n\n"
finally:
if not response_closed and hasattr(response, 'close'):
try:
response.close()
logger.debug("[Processor] 响应已关闭")
except Exception as e:
logger.warning(f"[Processor] 关闭失败: {e}")
if session:
try:
await session.close()
logger.debug("[Processor] 会话已关闭")
except Exception as e:
logger.warning(f"[Processor] 关闭会话失败: {e}")
@staticmethod
async def _build_video_content(video_url: str, auth_token: str) -> str:
"""构建视频内容"""
logger.debug(f"[Processor] 检测到视频: {video_url}")
full_url = f"https://assets.grok.com/{video_url}"
try:
cache_path = await video_cache_service.download_video(f"/{video_url}", auth_token)
if cache_path:
video_path = video_url.replace('/', '-')
base_url = setting.global_config.get("base_url", "")
local_url = f"{base_url}/images/{video_path}" if base_url else f"/images/{video_path}"
return f'<video src="{local_url}" controls="controls" width="500" height="300"></video>\n'
except Exception as e:
logger.warning(f"[Processor] 缓存视频失败: {e}")
return f'<video src="{full_url}" controls="controls" width="500" height="300"></video>\n'
@staticmethod
async def _append_images(content: str, images: list, auth_token: str) -> str:
"""追加图片到内容"""
image_mode = setting.global_config.get("image_mode", "url")
for img in images:
try:
if image_mode == "base64":
base64_str = await image_cache_service.download_base64(f"/{img}", auth_token)
if base64_str:
content += f"\n"
else:
content += f"\n"
else:
cache_path = await image_cache_service.download_image(f"/{img}", auth_token)
if cache_path:
img_path = img.replace('/', '-')
base_url = setting.global_config.get("base_url", "")
img_url = f"{base_url}/images/{img_path}" if base_url else f"/images/{img_path}"
content += f"\n"
else:
content += f"\n"
except Exception as e:
logger.warning(f"[Processor] 处理图片失败: {e}")
content += f"\n"
return content
@staticmethod
def _build_response(content: str, model: str) -> OpenAIChatCompletionResponse:
"""构建响应对象"""
return OpenAIChatCompletionResponse(
id=f"chatcmpl-{uuid.uuid4()}",
object="chat.completion",
created=int(time.time()),
model=model,
choices=[OpenAIChatCompletionChoice(
index=0,
message=OpenAIChatCompletionMessage(
role="assistant",
content=content
),
finish_reason="stop"
)],
usage=None
)
|