Spaces:
Running
Running
File size: 67,516 Bytes
c47ec10 | 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 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 | from __future__ import annotations
import base64
import json
import re
import threading
import time
from concurrent.futures import ThreadPoolExecutor, as_completed
from dataclasses import dataclass, field
from typing import Any, Iterable, Iterator
import tiktoken
from services.account_service import account_service
from services.config import config
from services.image_storage_service import image_storage_service
from services.openai_backend_api import ImageContentPolicyError, ImagePollTimeoutError, OpenAIBackendAPI
from utils.helper import (
IMAGE_MODELS,
extract_image_from_message_content,
is_codex_image_model,
is_supported_image_model,
split_image_model,
)
from utils.image_tokens import count_image_content_tokens
from utils.log import logger
class ImageGenerationError(Exception):
def __init__(
self,
message: str,
status_code: int = 502,
error_type: str = "server_error",
code: str | None = "upstream_error",
param: str | None = None,
account_email: str = "",
conversation_id: str = "",
) -> None:
super().__init__(message)
self.status_code = status_code
self.error_type = error_type
self.code = code
self.param = param
self.account_email = account_email
self.conversation_id = conversation_id
def to_openai_error(self) -> dict[str, Any]:
error_dict = {
"error": {
"message": public_image_error_message(str(self)),
"type": self.error_type,
"param": self.param,
"code": self.code,
}
}
if self.account_email:
error_dict["error"]["account_email"] = self.account_email
return error_dict
def public_image_error_message(message: str) -> str:
text = str(message or "").strip()
lower = text.lower()
if any(item in lower for item in ("backend-api/", "status=", "body=", "chatgpt.com", "upstreamhttperror")):
return "The image generation request failed. Please try again later."
return text or "The image generation request failed. Please try again later."
def is_token_invalid_error(message: str) -> bool:
text = str(message or "").lower()
return (
"token_invalidated" in text
or "token_revoked" in text
or "authentication token has been invalidated" in text
or "invalidated oauth token" in text
)
def is_tls_connection_error(message: str) -> bool:
"""检测 TLS/SSL 连接错误,这类错误通常可以通过重试解决。"""
text = str(message or "").lower()
return (
"curl: (35)" in text
or "tls connect error" in text
or "openssl_internal" in text
or "ssl: wrong_version_number" in text
or "ssl: certificate_verify_failed" in text
or "connection aborted" in text
or "remote disconnected" in text
or "connection reset by peer" in text
)
def is_connection_timeout_error(message: str) -> bool:
"""检测连接超时错误(如 curl 28),这类错误可通过同账号短等待重试解决。"""
text = str(message or "").lower()
return (
"curl: (28)" in text
or "operation timed out" in text
or "connection timed out" in text
or "read timed out" in text
or "connect timeout" in text
)
def image_stream_error_message(message: str) -> str:
text = str(message or "")
if is_token_invalid_error(text):
return "image generation failed"
if is_tls_connection_error(text):
return "upstream image connection failed, please retry later"
if is_connection_timeout_error(text):
return "upstream connection timed out, please retry later"
return text or "image generation failed"
REFERENCED_IMAGE_IDS_RE = re.compile(r'"referenced_image_ids"\s*:\s*\[([^\]]+)\]')
# 检测模型返回的部分工具调用 JSON(如 {"size":"1920x1088","n":1})
# 这些 JSON 包含图片生成工具的参数,但没有实际生成图片
TOOL_PARAMS_JSON_RE = re.compile(
r'\{\s*"size"\s*:\s*"\d+x\d+"\s*,\s*"n"\s*:\s*\d+\s*\}'
)
def is_model_text_reply_instead_of_image(message: str) -> bool:
"""检测模型是否返回了文本回复(包含工具调用 JSON)而非实际生成图片。
当上游 ChatGPT 未能触发图片生成工具时,会返回一段描述性文本,
其中可能包含 JSON 参数(如 prompt、referenced_image_ids、size/n 等)。
这种情况应被视为「上游未生成图片」而非「内容策略违规」。
检测两种模式:
1. 完整的工具调用 JSON(含 referenced_image_ids)
2. 部分的工具参数 JSON(如 {"size":"1920x1088","n":1})
"""
if not message:
return False
if REFERENCED_IMAGE_IDS_RE.search(message):
return True
# 检测部分工具参数 JSON(模型返回了工具参数但未触发工具)
if TOOL_PARAMS_JSON_RE.search(message):
return True
return False
def encode_images(images: Iterable[tuple[bytes, str, str]]) -> list[str]:
return [base64.b64encode(data).decode("ascii") for data, _, _ in images if data]
def save_image_bytes(image_data: bytes, base_url: str | None = None) -> str:
return image_storage_service.save(image_data, base_url).url
def message_text(content: Any) -> str:
if isinstance(content, str):
return content
if isinstance(content, list):
parts = []
for item in content:
if isinstance(item, str):
parts.append(item)
elif isinstance(item, dict) and str(item.get("type") or "") in {"text", "input_text", "output_text"}:
parts.append(str(item.get("text") or ""))
return "".join(parts)
return ""
def normalize_messages(messages: object, system: Any = None) -> list[dict[str, Any]]:
normalized = []
if config.global_system_prompt:
normalized.append({"role": "system", "content": config.global_system_prompt})
system_text = message_text(system)
if system_text:
normalized.append({"role": "system", "content": system_text})
if isinstance(messages, list):
for message in messages:
if not isinstance(message, dict):
continue
role = message.get("role", "user")
content = message.get("content", "")
text = message_text(content)
images: list[tuple[bytes, str]] = []
if role == "user":
images.extend(extract_image_from_message_content(content))
if isinstance(content, list):
for part in content:
if not isinstance(part, dict) or part.get("type") != "image":
continue
data = part.get("data")
if isinstance(data, (bytes, bytearray)) and all(existing[0] != bytes(data) for existing in images):
images.append((bytes(data), str(part.get("mime") or "image/png")))
if images:
parts: list[Any] = []
if text:
parts.append({"type": "text", "text": text})
for data, mime in images:
parts.append({"type": "image", "data": data, "mime": mime})
normalized.append({"role": role, "content": parts})
else:
normalized.append({"role": role, "content": text})
return normalized
def prompt_with_global_system(prompt: str) -> str:
return f"{config.global_system_prompt}\n\n{prompt}" if config.global_system_prompt else prompt
def assistant_history_text(messages: list[dict[str, Any]]) -> str:
return "".join(str(item.get("content") or "") for item in messages if item.get("role") == "assistant")
def assistant_history_messages(messages: list[dict[str, Any]]) -> list[str]:
return [str(item.get("content") or "") for item in messages if item.get("role") == "assistant" and item.get("content")]
def build_image_prompt(prompt: str, size: str | None, quality: str = "auto") -> str:
hints = []
if size:
hints.append(f"输出图片尺寸为 {size}。")
if quality:
hints.append(f"输出图片质量为 {quality}。")
return f"{prompt.strip()}\n\n{''.join(hints)}" if hints else prompt
def encoding_for_model(model: str):
try:
return tiktoken.encoding_for_model(model)
except KeyError:
try:
return tiktoken.get_encoding("o200k_base")
except KeyError:
return tiktoken.get_encoding("cl100k_base")
def count_message_image_tokens(messages: list[dict[str, Any]], model: str) -> int:
return sum(count_image_content_tokens(message.get("content"), model) for message in messages)
def count_message_text_tokens(messages: list[dict[str, Any]], model: str) -> int:
encoding = encoding_for_model(model)
total = 0
for message in messages:
total += 3
for key, value in message.items():
if key == "content" and isinstance(value, list):
total += len(encoding.encode(message_text(value)))
elif isinstance(value, str):
total += len(encoding.encode(value))
else:
continue
if key == "name":
total += 1
return total + 3
def count_message_tokens(messages: list[dict[str, Any]], model: str) -> int:
return count_message_text_tokens(messages, model) + count_message_image_tokens(messages, model)
def count_text_tokens(text: str, model: str) -> int:
return len(encoding_for_model(model).encode(text))
def format_image_result(
items: list[dict[str, Any]],
prompt: str,
response_format: str,
base_url: str | None = None,
created: int | None = None,
message: str = "",
) -> dict[str, Any]:
data: list[dict[str, Any]] = []
for item in items:
b64_json = str(item.get("b64_json") or "").strip()
if not b64_json:
continue
revised_prompt = str(item.get("revised_prompt") or prompt).strip() or prompt
if response_format == "b64_json":
data.append({
"b64_json": b64_json,
"url": save_image_bytes(base64.b64decode(b64_json), base_url),
"revised_prompt": revised_prompt,
})
else:
data.append({
"url": save_image_bytes(base64.b64decode(b64_json), base_url),
"revised_prompt": revised_prompt,
})
result: dict[str, Any] = {"created": created or int(time.time()), "data": data}
if message and not data:
result["message"] = message
return result
@dataclass
class ConversationRequest:
model: str = "auto"
prompt: str = ""
messages: list[dict[str, Any]] | None = None
thinking_effort: str = ""
images: list[str] | None = None
n: int = 1
size: str | None = None
quality: str = "auto"
response_format: str = "b64_json"
base_url: str | None = None
message_as_error: bool = False
progress_callback: Any = None # Callable[[str], None] | None
@dataclass
class ConversationState:
text: str = ""
raw_text: str = ""
conversation_id: str = ""
file_ids: list[str] = field(default_factory=list)
sediment_ids: list[str] = field(default_factory=list)
blocked: bool = False
tool_invoked: bool | None = None
turn_use_case: str = ""
@dataclass
class ImageOutput:
kind: str
model: str
index: int
total: int
created: int = field(default_factory=lambda: int(time.time()))
text: str = ""
upstream_event_type: str = ""
data: list[dict[str, Any]] = field(default_factory=list)
account_email: str = ""
conversation_id: str = ""
def to_chunk(self) -> dict[str, Any]:
chunk: dict[str, Any] = {
"object": "image.generation.chunk",
"created": self.created,
"model": self.model,
"index": self.index,
"total": self.total,
"progress_text": self.text,
"upstream_event_type": self.upstream_event_type,
"data": [],
}
if self.account_email:
chunk["_account_email"] = self.account_email
if self.conversation_id:
chunk["_conversation_id"] = self.conversation_id
if self.kind == "message":
chunk.update({
"object": "image.generation.message",
"message": self.text,
})
chunk.pop("progress_text", None)
chunk.pop("upstream_event_type", None)
elif self.kind == "result":
chunk.update({
"object": "image.generation.result",
"data": self.data,
})
chunk.pop("progress_text", None)
chunk.pop("upstream_event_type", None)
return chunk
def assistant_message_text(message: dict[str, Any]) -> str:
content = message.get("content") or {}
parts = content.get("parts") or []
if isinstance(parts, list) and parts:
text = "".join(part for part in parts if isinstance(part, str))
if text:
return text
# Fallback: content_type "code" stores text in the "text" field instead of "parts"
text_field = str(content.get("text") or "")
if text_field:
return text_field
return ""
def strip_history(text: str, history_text: str = "") -> str:
text = str(text or "")
history_text = str(history_text or "")
while history_text and text.startswith(history_text):
text = text[len(history_text):]
return text
def sanitize_output_text(text: str) -> str:
text = str(text or "")
def is_internal_annotation_part(part: str) -> bool:
value = part.strip()
if not value:
return True
lower = value.lower()
return bool(
re.fullmatch(r"turn\d+[a-z]*\d*", lower)
or re.fullmatch(r"turn\d+\w*", lower)
or lower.startswith(("turn", "source", "sources"))
)
def readable_annotation_part(parts: list[str]) -> str:
for part in parts:
value = part.strip()
if value and not is_internal_annotation_part(value):
return value
return ""
def replace_annotation(match: re.Match[str]) -> str:
payload = match.group(1)
parts = [part.strip() for part in payload.split("\ue202")]
kind = (parts[0] if parts else "").lower()
data = parts[1:]
if kind == "url":
label = data[0] if data else ""
url = data[1] if len(data) > 1 else ""
if label and url.startswith(("http://", "https://")):
return f"{label} ({url})"
return label or url
if kind == "cite":
return readable_annotation_part(data)
return readable_annotation_part(data)
# ChatGPT web sometimes returns rich annotation markers using private-use
# characters. API clients cannot render those. Preserve readable labels
# from entity/link annotations, while removing internal citation pointers.
text = re.sub(r"\ue200([^\ue201]*)\ue201", replace_annotation, text)
text = re.sub(r"\ue200[^\ue201]*$", "", text)
text = re.sub(r"\s+([.,;:!?])", r"\1", text)
return text
def assistant_raw_text(event: dict[str, Any], current_text: str = "", history_text: str = "") -> str:
for candidate in (event, event.get("v")):
if not isinstance(candidate, dict):
continue
message = candidate.get("message")
if not isinstance(message, dict):
continue
role = str((message.get("author") or {}).get("role") or "").strip().lower()
if role != "assistant":
continue
text = assistant_message_text(message)
if text:
return strip_history(text, history_text)
return apply_text_patch(event, current_text, history_text)
def assistant_text(event: dict[str, Any], current_text: str = "", history_text: str = "") -> str:
return sanitize_output_text(assistant_raw_text(event, current_text, history_text))
def event_assistant_text(event: dict[str, Any], history_text: str = "") -> str:
for candidate in (event, event.get("v")):
if not isinstance(candidate, dict):
continue
message = candidate.get("message")
if isinstance(message, dict) and (message.get("author") or {}).get("role") == "assistant":
return strip_history(assistant_message_text(message), history_text)
return ""
def apply_text_patch(event: dict[str, Any], current_text: str = "", history_text: str = "") -> str:
if event.get("p") == "/message/content/parts/0":
return apply_patch_op(event, current_text, history_text)
operations = event.get("v")
if isinstance(operations, str) and current_text and not event.get("p") and not event.get("o"):
return current_text + operations
if event.get("o") == "patch" and isinstance(operations, list):
text = current_text
for item in operations:
if isinstance(item, dict):
text = apply_text_patch(item, text, history_text)
return text
if not isinstance(operations, list):
return current_text
text = current_text
for item in operations:
if isinstance(item, dict):
text = apply_text_patch(item, text, history_text)
return text
def apply_patch_op(operation: dict[str, Any], current_text: str, history_text: str = "") -> str:
op = operation.get("o")
value = str(operation.get("v") or "")
if op == "append":
return current_text + value
if op == "replace":
return strip_history(value, history_text)
return current_text
def add_unique(values: list[str], candidates: list[str]) -> None:
for candidate in candidates:
if candidate and candidate not in values:
values.append(candidate)
FILE_SERVICE_ID_RE = re.compile(r"file-service://([A-Za-z0-9_-]+)")
FILE_ID_RE = re.compile(r"\b(file[-_](?!service\b)[A-Za-z0-9_-]+)\b")
# 真正的图片文件 ID 格式:file_00000000 + 24位十六进制字符(共32字符)
# 用于过滤非图片文件 ID(如 file_upload_business_upsell)
REAL_IMAGE_FILE_ID_RE = re.compile(r"\bfile_00000000[a-f0-9]{24}\b")
SEDIMENT_ID_RE = re.compile(r"sediment://([A-Za-z0-9_-]+)")
def extract_conversation_ids(payload: str) -> tuple[str, list[str], list[str]]:
conversation_match = re.search(r'"conversation_id"\s*:\s*"([^"]+)"', payload)
conversation_id = conversation_match.group(1) if conversation_match else ""
file_ids: list[str] = []
# Negative lookahead excludes "file-service" (URI prefix, not a real id).
add_unique(file_ids, FILE_SERVICE_ID_RE.findall(payload))
# 只提取真正的图片文件 ID(file_00000000... 格式),过滤非图片文件 ID(如 file_upload_business_upsell)
add_unique(file_ids, REAL_IMAGE_FILE_ID_RE.findall(payload))
sediment_ids = SEDIMENT_ID_RE.findall(payload)
return conversation_id, file_ids, sediment_ids
def is_image_tool_event(event: dict[str, Any]) -> bool:
value = event.get("v")
message = event.get("message") or (value.get("message") if isinstance(value, dict) else None)
if not isinstance(message, dict):
return False
metadata = message.get("metadata") or {}
author = message.get("author") or {}
content = message.get("content") or {}
if author.get("role") != "tool":
return False
if metadata.get("async_task_type") == "image_gen":
return True
if content.get("content_type") != "multimodal_text":
return False
return any(
isinstance(part, dict) and (
part.get("content_type") == "image_asset_pointer"
or str(part.get("asset_pointer") or "").startswith(("file-service://", "sediment://"))
)
for part in content.get("parts") or []
)
def _is_user_message_event(event: dict[str, Any]) -> bool:
"""检查事件是否来自 user 角色消息。"""
value = event.get("v")
message = event.get("message") or (value.get("message") if isinstance(value, dict) else None)
if isinstance(message, dict):
author = message.get("author") or {}
if str(author.get("role") or "").strip().lower() == "user":
return True
return False
def update_conversation_state(state: ConversationState, payload: str, event: dict[str, Any] | None = None) -> None:
conversation_id, file_ids, sediment_ids = extract_conversation_ids(payload)
if conversation_id and not state.conversation_id:
state.conversation_id = conversation_id
# Accept file_id / sediment_id when any of:
# 1) event is a complete image_gen tool message
# 2) prior server_ste_metadata already flipped tool_invoked True (in an image_gen turn),
# BUT only for non-user messages — user messages contain the uploaded input image
# which must NOT be treated as a generated output.
# 3) patch event whose payload references asset_pointer / file-service://,
# BUT only when the event is not a user message.
is_patch_event = isinstance(event, dict) and event.get("o") == "patch"
is_user_msg = isinstance(event, dict) and _is_user_message_event(event)
image_context = (
(isinstance(event, dict) and is_image_tool_event(event))
or (state.tool_invoked is True and not is_user_msg)
or (is_patch_event and not is_user_msg and ("asset_pointer" in payload or "file-service://" in payload))
)
if image_context:
add_unique(state.file_ids, file_ids)
add_unique(state.sediment_ids, sediment_ids)
if not isinstance(event, dict):
return
state.conversation_id = str(event.get("conversation_id") or state.conversation_id)
value = event.get("v")
if isinstance(value, dict):
state.conversation_id = str(value.get("conversation_id") or state.conversation_id)
if event.get("type") == "moderation":
moderation = event.get("moderation_response")
if isinstance(moderation, dict) and moderation.get("blocked") is True:
state.blocked = True
if event.get("type") == "server_ste_metadata":
metadata = event.get("metadata")
if isinstance(metadata, dict):
if isinstance(metadata.get("tool_invoked"), bool):
state.tool_invoked = metadata["tool_invoked"]
state.turn_use_case = str(metadata.get("turn_use_case") or state.turn_use_case)
def conversation_base_event(event_type: str, state: ConversationState, **extra: Any) -> dict[str, Any]:
return {
"type": event_type,
"text": state.text,
"conversation_id": state.conversation_id,
"file_ids": list(state.file_ids),
"sediment_ids": list(state.sediment_ids),
"blocked": state.blocked,
"tool_invoked": state.tool_invoked,
"turn_use_case": state.turn_use_case,
**extra,
}
def iter_conversation_payloads(payloads: Iterator[str], history_text: str = "",
history_messages: list[str] | None = None) -> Iterator[dict[str, Any]]:
state = ConversationState()
history_messages = history_messages or []
history_index = 0
for payload in payloads:
# print(f"[upstream_sse] {payload}", flush=True)
if not payload:
continue
if payload == "[DONE]":
yield conversation_base_event("conversation.done", state, done=True)
break
try:
event = json.loads(payload)
except json.JSONDecodeError:
update_conversation_state(state, payload)
yield conversation_base_event("conversation.raw", state, payload=payload)
continue
if not isinstance(event, dict):
yield conversation_base_event("conversation.event", state, raw=event)
continue
update_conversation_state(state, payload, event)
if history_index < len(history_messages) and event_assistant_text(event, history_text) == history_messages[history_index]:
history_index += 1
state.raw_text = ""
state.text = ""
continue
next_raw_text = assistant_raw_text(event, state.raw_text, history_text)
next_text = sanitize_output_text(next_raw_text)
state.raw_text = next_raw_text
if next_text != state.text:
delta = next_text[len(state.text):] if next_text.startswith(state.text) else next_text
state.text = next_text
yield conversation_base_event("conversation.delta", state, raw=event, delta=delta)
continue
yield conversation_base_event("conversation.event", state, raw=event)
def conversation_events(
backend: OpenAIBackendAPI,
messages: list[dict[str, Any]] | None = None,
model: str = "auto",
prompt: str = "",
images: list[str] | None = None,
size: str | None = None,
quality: str = "auto",
thinking_effort: str = "",
) -> Iterator[dict[str, Any]]:
normalized = normalize_messages(messages or ([{"role": "user", "content": prompt}] if prompt else []))
image_model = is_supported_image_model(model)
history_text = "" if image_model else assistant_history_text(normalized)
history_messages = [] if image_model else assistant_history_messages(normalized)
final_prompt = prompt_with_global_system(build_image_prompt(prompt, size, quality)) if image_model else prompt
payloads = backend.stream_conversation(
messages=normalized,
model=model,
prompt=final_prompt,
images=images if image_model else None,
system_hints=["picture_v2"] if image_model else None,
thinking_effort=thinking_effort if not image_model else "",
)
yield from iter_conversation_payloads(payloads, history_text, history_messages)
def text_backend() -> OpenAIBackendAPI:
return OpenAIBackendAPI(access_token=account_service.get_text_access_token())
def stream_text_deltas(backend: OpenAIBackendAPI, request: ConversationRequest) -> Iterator[str]:
attempted_tokens: set[str] = set()
token = getattr(backend, "access_token", "")
emitted = False
while True:
if token and token in attempted_tokens:
raise RuntimeError("no available text account")
if token:
attempted_tokens.add(token)
active_backend = None
try:
active_backend = OpenAIBackendAPI(access_token=token)
for event in conversation_events(
active_backend,
messages=request.messages,
model=request.model,
prompt=request.prompt,
thinking_effort=request.thinking_effort,
):
if event.get("type") != "conversation.delta":
continue
delta = str(event.get("delta") or "")
if delta:
emitted = True
yield delta
account_service.mark_text_used(token)
return
except Exception as exc:
error_message = str(exc)
if token and not emitted and is_token_invalid_error(error_message):
refreshed_token = account_service.refresh_access_token(token, force=True, event="text_stream")
if refreshed_token and refreshed_token != token and refreshed_token not in attempted_tokens:
token = refreshed_token
else:
account_service.remove_invalid_token(token, "text_stream")
token = account_service.get_text_access_token(attempted_tokens)
if token:
continue
raise
finally:
if active_backend is not None:
active_backend.close()
def collect_text(backend: OpenAIBackendAPI, request: ConversationRequest) -> str:
return "".join(stream_text_deltas(backend, request))
def _get_detailed_error_from_tasks(
backend: OpenAIBackendAPI,
conversation_id: str,
timeout_secs: float = 10.0,
wait_secs: float = 2.0,
) -> str:
"""从 /backend-api/tasks/ 接口获取结构化错误信息。
当 SSE 流检测到 moderation 拦截时,轮询 tasks 接口获取详细错误文本。
使用结构化字段(metadata.is_error, author.role, content.content_type)判断,
而非依赖易变的文本匹配。
参数:
- `backend`:OpenAIBackendAPI 实例。
- `conversation_id`:会话 ID。
- `timeout_secs`:请求超时秒数。
- `wait_secs`:等待任务创建的秒数。设为 0 可跳过等待。
返回:
- 详细错误信息文本,如果未找到则返回空字符串。
"""
import time as _time
try:
if wait_secs > 0:
_time.sleep(wait_secs)
tasks = backend._query_backend_tasks(conversation_id=conversation_id, timeout_secs=timeout_secs)
if not tasks:
return ""
for task in tasks:
is_error, error_msg, metadata = backend.check_task_error(task)
if is_error and error_msg:
logger.info({
"event": "image_task_structured_error",
"conversation_id": conversation_id,
"error_msg": error_msg,
"metadata": metadata,
})
return error_msg
return ""
except Exception as exc:
logger.warning({
"event": "image_task_error_query_failed",
"conversation_id": conversation_id,
"error": str(exc),
})
return ""
def _remove_image_conversation_later(backend: OpenAIBackendAPI, conversation_id: str) -> None:
if not config.image_remove_conversation_after_result or not conversation_id:
return
def _run() -> None:
try:
backend.delete_conversation(conversation_id)
logger.info({"event": "image_conversation_removed", "conversation_id": conversation_id})
except Exception as exc:
logger.warning({
"event": "image_conversation_remove_failed",
"conversation_id": conversation_id,
"error": str(exc),
})
threading.Thread(target=_run, name=f"remove-image-conversation-{conversation_id}", daemon=True).start()
def stream_image_outputs(
backend: OpenAIBackendAPI,
request: ConversationRequest,
index: int = 1,
total: int = 1,
) -> Iterator[ImageOutput]:
last: dict[str, Any] = {}
for event in conversation_events(
backend,
prompt=request.prompt,
model=request.model,
images=request.images or [],
size=request.size,
quality=request.quality,
):
last = event
if event.get("type") == "conversation.delta":
yield ImageOutput(
kind="progress",
model=request.model,
index=index,
total=total,
text=str(event.get("delta") or ""),
upstream_event_type="conversation.delta",
)
continue
if event.get("type") == "conversation.event":
raw = event.get("raw")
raw_type = str(raw.get("type") or "") if isinstance(raw, dict) else ""
yield ImageOutput(
kind="progress",
model=request.model,
index=index,
total=total,
upstream_event_type=raw_type,
)
conversation_id = str(last.get("conversation_id") or "")
file_ids = [str(item) for item in last.get("file_ids") or []]
sediment_ids = [str(item) for item in last.get("sediment_ids") or []]
message = str(last.get("text") or "").strip()
logger.info({
"event": "image_stream_resolve_start",
"conversation_id": conversation_id,
"file_ids": file_ids,
"sediment_ids": sediment_ids,
"tool_invoked": last.get("tool_invoked"),
"turn_use_case": last.get("turn_use_case"),
})
if request.progress_callback:
request.progress_callback("image_stream_resolve_start")
if message and not file_ids and not sediment_ids and last.get("blocked"):
# 尝试从 /backend-api/tasks/ 获取详细错误信息
detailed_error = _get_detailed_error_from_tasks(backend, conversation_id)
error_text = detailed_error or message or "Image generation was rejected by upstream policy."
yield ImageOutput(kind="message", model=request.model, index=index, total=total, text=error_text, conversation_id=conversation_id)
return
should_poll_for_image = bool(request.images) or last.get("turn_use_case") == "image gen"
if message and not file_ids and not sediment_ids and not should_poll_for_image:
yield ImageOutput(kind="message", model=request.model, index=index, total=total, text=message, conversation_id=conversation_id)
return
# 检测模型是否返回了文本描述(含 referenced_image_ids)而非实际生成图片
# 这说明模型已发起图片生成工具调用,但 SSE 在工具完成前断开,
# 图片可能正在异步生成中。需要使用更积极的轮询策略来获取结果。
is_text_reply = bool(message and is_model_text_reply_instead_of_image(message))
if is_text_reply:
logger.info({
"event": "image_detected_text_reply_with_ids",
"conversation_id": conversation_id,
"message_preview": message[:200],
})
# 当检测到文本回复但 conversation_id 丢失时,尝试从最近对话列表中恢复
# SSE 流太短时(模型返回文本而非触发图片工具),conversation_id 可能未被捕获,
# 但图片已在上游异步生成。通过列出最近对话来恢复 conversation_id。
if is_text_reply and not conversation_id:
try:
import time as _time
recovered_id = backend.find_conversation_by_prompt(
request.prompt, _time.time(), timeout_secs=5.0,
)
if recovered_id:
conversation_id = recovered_id
logger.info({
"event": "image_conversation_id_recovered",
"conversation_id": conversation_id,
"message_preview": message[:200],
})
except Exception as exc:
logger.warning({
"event": "image_conversation_id_recovery_failed",
"error": repr(exc)[:300],
})
# 在轮询图片之前,先检查 /backend-api/tasks/ 是否有 moderation 拦截
# 这样可以避免不必要的长时间轮询超时
# 注意:当 should_poll_for_image 为 True 或检测到文本回复时,
# 即使 tasks 报告了"错误",也不能直接返回——因为上游可能将工具调用的 JSON 参数
# (如 {"size":"1792x1024","n":1})标记为 is_error,而实际上图片正在异步生成中。
# 此时应继续轮询图片。
detailed_error = ""
if not file_ids and not sediment_ids and conversation_id:
detailed_error = _get_detailed_error_from_tasks(backend, conversation_id, timeout_secs=5.0, wait_secs=1.0)
if detailed_error and not should_poll_for_image and not is_text_reply:
logger.info({
"event": "image_task_error_before_poll",
"conversation_id": conversation_id,
"error": detailed_error,
})
yield ImageOutput(kind="message", model=request.model, index=index, total=total, text=detailed_error, conversation_id=conversation_id)
return
if detailed_error and (should_poll_for_image or is_text_reply):
logger.info({
"event": "image_task_error_skipped_for_poll",
"conversation_id": conversation_id,
"error": detailed_error,
})
# 当检测到文本回复(含 referenced_image_ids)时,使用更长的超时来轮询图片结果。
# 因为上游可能将图片生成作为异步任务执行,SSE 流在工具完成前就断开了,
# 导致对话文档中尚未写入图片工具的响应记录。
poll_timeout = config.image_poll_timeout_secs
if is_text_reply and conversation_id:
# 文本回复场景下图片可能仍在异步生成,使用更长超时(默认 120s → 额外 180s = 300s)
poll_timeout = max(poll_timeout, 300)
logger.info({
"event": "image_text_reply_extended_poll",
"conversation_id": conversation_id,
"poll_timeout_secs": poll_timeout,
})
try:
image_urls = backend.resolve_conversation_image_urls(
conversation_id, file_ids, sediment_ids, poll_timeout_secs=poll_timeout,
)
except (ImageContentPolicyError, ImagePollTimeoutError) as exc:
# 当检测到文本回复时,task error 不应直接判定为内容策略违规,
# 因为图片可能仍在后台异步生成中
if is_text_reply and isinstance(exc, ImageContentPolicyError):
logger.warning({
"event": "image_text_reply_task_error_ignored",
"conversation_id": conversation_id,
"error": str(exc),
})
image_urls = []
else:
raise
except Exception as exc:
# 当检测到文本回复时,首次轮询的临时网络错误不应直接中断,
# 因为图片可能仍在后台异步生成中,后续 retry poll 会继续尝试。
if is_text_reply and conversation_id:
logger.warning({
"event": "image_text_reply_first_poll_error_ignored",
"conversation_id": conversation_id,
"error": repr(exc)[:300],
})
image_urls = []
else:
raise
if image_urls:
if request.progress_callback:
request.progress_callback("receiving_image")
image_items = [
{"b64_json": base64.b64encode(image_data).decode("ascii")}
for image_data in backend.download_image_bytes(image_urls)
]
data = format_image_result(
image_items,
request.prompt,
request.response_format,
request.base_url,
int(time.time()),
)["data"]
if data:
_remove_image_conversation_later(backend, conversation_id)
yield ImageOutput(kind="result", model=request.model, index=index, total=total, data=data, conversation_id=conversation_id)
return
if message:
# 检测模型是否返回了文本描述(含 referenced_image_ids)而非实际生成图片
# 这说明模型已发起图片生成工具调用,但 SSE 在工具完成前断开。
# 此时应再尝试轮询图片结果,而不是直接把文本当作最终输出。
# 当 is_text_reply 但 conversation_id 丢失时,尝试从最近对话列表恢复
if is_text_reply and not conversation_id:
try:
import time as _time
recovered_id = backend.find_conversation_by_prompt(
request.prompt, _time.time(), timeout_secs=5.0,
)
if recovered_id:
conversation_id = recovered_id
logger.info({
"event": "image_text_reply_conversation_id_recovered",
"conversation_id": conversation_id,
"message_preview": message[:200],
})
except Exception as exc:
logger.warning({
"event": "image_text_reply_conversation_id_recovery_failed",
"error": repr(exc)[:300],
})
if is_text_reply and conversation_id:
logger.info({
"event": "image_model_text_reply_retry_poll",
"conversation_id": conversation_id,
"message_preview": message[:200],
})
# 文本回复场景下,图片可能需要 4-5 分钟才能异步生成完成。
# 使用 300s 超时并允许多次重试,避免因临时网络问题提前退出。
retry_poll_timeout = max(config.image_poll_timeout_secs, 300)
MAX_POLL_RETRIES = 3
for poll_attempt in range(1, MAX_POLL_RETRIES + 1):
try:
polled_file_ids, polled_sediment_ids = backend._poll_image_results(
conversation_id,
retry_poll_timeout,
file_ids,
sediment_ids,
)
file_ids.extend(item for item in polled_file_ids if item and item not in file_ids)
sediment_ids.extend(item for item in polled_sediment_ids if item and item not in sediment_ids)
break # 轮询成功,退出重试循环
except Exception as exc:
error_str = str(exc)
is_transient = (
isinstance(exc, ImagePollTimeoutError)
or is_tls_connection_error(error_str)
or "upstream" in error_str.lower()
or "connection" in error_str.lower()
or "timeout" in error_str.lower()
)
logger.warning({
"event": "image_model_text_reply_poll_failed",
"conversation_id": conversation_id,
"poll_attempt": poll_attempt,
"error": repr(exc)[:300],
"is_transient": is_transient,
})
# 如果还有重试次数且不是超时/内容违规错误,继续重试
if poll_attempt < MAX_POLL_RETRIES and not isinstance(exc, (ImagePollTimeoutError, ImageContentPolicyError)):
# 递增退避:30s, 60s, 90s
backoff = 30.0 * poll_attempt
logger.info({
"event": "image_model_text_reply_poll_retry",
"conversation_id": conversation_id,
"poll_attempt": poll_attempt,
"backoff_secs": backoff,
})
time.sleep(backoff)
continue
# 超时错误或重试次数用尽,停止重试
break
if file_ids or sediment_ids:
image_urls = backend.resolve_conversation_image_urls(
conversation_id, file_ids, sediment_ids, poll=False,
)
if image_urls:
if request.progress_callback:
request.progress_callback("receiving_image")
image_items = [
{"b64_json": base64.b64encode(image_data).decode("ascii")}
for image_data in backend.download_image_bytes(image_urls)
]
data = format_image_result(
image_items,
request.prompt,
request.response_format,
request.base_url,
int(time.time()),
)["data"]
if data:
_remove_image_conversation_later(backend, conversation_id)
yield ImageOutput(kind="result", model=request.model, index=index, total=total, data=data, conversation_id=conversation_id)
return
elif is_text_reply:
logger.warning({
"event": "image_model_text_reply_no_image",
"conversation_id": conversation_id,
"message_preview": message[:200],
})
yield ImageOutput(kind="message", model=request.model, index=index, total=total, text=message, conversation_id=conversation_id)
return
# 兜底:当 message 为空且图片 URL 解析失败时,先尝试一次短延迟重试轮询
# 然后抛出明确错误而非让调用方得到 "upstream completed without generating images" 这种模糊报错
logger.warning({
"event": "image_stream_no_result_fallback",
"conversation_id": conversation_id,
"file_ids": file_ids,
"sediment_ids": sediment_ids,
"should_poll_for_image": should_poll_for_image,
})
# 当 should_poll_for_image 为 True 但 conversation_id 丢失时,尝试恢复
if should_poll_for_image and not conversation_id:
try:
import time as _time
recovered_id = backend.find_conversation_by_prompt(
request.prompt, _time.time(), timeout_secs=5.0,
)
if recovered_id:
conversation_id = recovered_id
logger.info({
"event": "image_fallback_conversation_id_recovered",
"conversation_id": conversation_id,
})
except Exception as exc:
logger.warning({
"event": "image_fallback_conversation_id_recovery_failed",
"error": repr(exc)[:300],
})
if should_poll_for_image and conversation_id:
# 图片可能仍在异步处理中(上游 SSE 流在图片生成完成前就结束了)。
# 使用 300s 超时并允许多次重试,避免因临时网络问题或图片尚未提交而提前退出。
retry_poll_timeout = max(config.image_poll_timeout_secs, 300)
MAX_FALLBACK_POLL_RETRIES = 3
for poll_attempt in range(1, MAX_FALLBACK_POLL_RETRIES + 1):
retry_wait_secs = min(30.0 * poll_attempt, config.image_poll_initial_wait_secs * poll_attempt)
logger.info({
"event": "image_stream_retry_poll_after_wait",
"conversation_id": conversation_id,
"retry_wait_secs": retry_wait_secs,
"poll_attempt": poll_attempt,
})
time.sleep(retry_wait_secs)
try:
polled_file_ids, polled_sediment_ids = backend._poll_image_results(
conversation_id,
retry_poll_timeout,
file_ids,
sediment_ids,
)
file_ids.extend(item for item in polled_file_ids if item and item not in file_ids)
sediment_ids.extend(item for item in polled_sediment_ids if item and item not in sediment_ids)
break # 轮询成功,退出重试循环
except Exception as exc:
error_str = str(exc)
is_transient = (
isinstance(exc, ImagePollTimeoutError)
or is_tls_connection_error(error_str)
or "upstream" in error_str.lower()
or "connection" in error_str.lower()
or "timeout" in error_str.lower()
)
logger.warning({
"event": "image_stream_retry_poll_failed",
"conversation_id": conversation_id,
"poll_attempt": poll_attempt,
"error": repr(exc)[:300],
"is_transient": is_transient,
})
# 如果还有重试次数且不是超时/内容违规错误,继续重试
if poll_attempt < MAX_FALLBACK_POLL_RETRIES and not isinstance(exc, (ImagePollTimeoutError, ImageContentPolicyError)):
# 递增退避:30s, 60s
backoff = 30.0 * poll_attempt
logger.info({
"event": "image_stream_retry_poll_retry",
"conversation_id": conversation_id,
"poll_attempt": poll_attempt,
"backoff_secs": backoff,
})
time.sleep(backoff)
continue
# 超时错误或重试次数用尽,停止重试
break
if file_ids or sediment_ids:
image_urls = backend.resolve_conversation_image_urls(
conversation_id, file_ids, sediment_ids, poll=False,
)
if image_urls:
if request.progress_callback:
request.progress_callback("receiving_image")
image_items = [
{"b64_json": base64.b64encode(image_data).decode("ascii")}
for image_data in backend.download_image_bytes(image_urls)
]
data = format_image_result(
image_items,
request.prompt,
request.response_format,
request.base_url,
int(time.time()),
)["data"]
if data:
_remove_image_conversation_later(backend, conversation_id)
yield ImageOutput(kind="result", model=request.model, index=index, total=total, data=data, conversation_id=conversation_id)
return
# 重试后仍然失败,yield 错误消息
yield ImageOutput(kind="message", model=request.model, index=index, total=total,
text="Image generation completed upstream but the result could not be retrieved. "
"The image may still be processing. Please try again in a moment.",
conversation_id=conversation_id)
elif message:
yield ImageOutput(kind="message", model=request.model, index=index, total=total, text=message, conversation_id=conversation_id)
else:
# conversation_id 也为空时(SSE 流极短、未捕获到会话 ID),
# 仍然 yield 一条消息,避免 stream_image_outputs_with_pool 产生
# "upstream completed without generating images" 模糊报错
yield ImageOutput(kind="message", model=request.model, index=index, total=total,
text="Image generation started upstream but the response was incomplete. "
"Please try again.",
conversation_id=conversation_id)
def _codex_response_images(value: Any) -> list[str]:
if isinstance(value, dict):
if value.get("type") == "image_generation_call" and isinstance(value.get("result"), str):
result = value["result"].strip()
if result:
return [result.split(",", 1)[1] if result.startswith("data:image/") else result]
images: list[str] = []
for item in value.values():
images.extend(_codex_response_images(item))
return images
if isinstance(value, list):
images: list[str] = []
for item in value:
images.extend(_codex_response_images(item))
return images
return []
def stream_codex_image_outputs(
backend: OpenAIBackendAPI,
request: ConversationRequest,
index: int = 1,
total: int = 1,
) -> Iterator[ImageOutput]:
images = _codex_response_images(list(backend.iter_codex_image_response_events(
prompt=request.prompt,
images=request.images or [],
size=request.size,
quality=request.quality,
)))
if not images:
raise ImageGenerationError("No image result found in response")
data = format_image_result(
[{"b64_json": item, "revised_prompt": request.prompt} for item in images],
request.prompt,
request.response_format,
request.base_url,
int(time.time()),
)["data"]
if data:
yield ImageOutput(kind="result", model=request.model, index=index, total=total, data=data)
return
raise ImageGenerationError("No image result found in response")
def _generate_single_image(
request: ConversationRequest,
index: int,
total: int,
) -> list[ImageOutput]:
"""为单张图片执行生成逻辑(含重试),返回结果列表。
该函数在独立线程中运行,每个线程使用不同的账号,
实现并行生图,避免串行超时阻塞。
"""
# 模型返回文本而非图片的最大重试次数
MAX_TEXT_REPLY_RETRIES = 3
# TLS 连接错误最大重试次数
MAX_TLS_RETRIES = 3
# 连接超时错误最大重试次数(同账号短等待重试)
MAX_CONN_TIMEOUT_RETRIES = 3
# 轮询超时错误最大重试次数(换账号重试)
MAX_POLL_TIMEOUT_RETRIES = 4
text_reply_retry_count = 0
tls_retry_count = 0
conn_timeout_retry_count = 0
poll_timeout_retry_count = 0
account_email = ""
while True:
try:
if request.progress_callback:
request.progress_callback("getting_account")
plan_type, _ = split_image_model(request.model)
codex_model = is_codex_image_model(request.model)
token = account_service.get_available_access_token(
plan_type=plan_type,
source_type="codex" if codex_model else None,
plan_types=("plus", "team", "pro") if codex_model and not plan_type else None,
)
except RuntimeError as exc:
raise ImageGenerationError(str(exc) or "image generation failed", account_email=account_email) from exc
emitted_for_token = False
returned_message = False
returned_result = False
account = account_service.get_account(token) or {}
account_email = str(account.get("email") or "").strip()
logger.debug({
"event": "image_account_lookup",
"token_prefix": token[:12] + "..." if len(token) > 12 else token,
"account_email": account_email,
"account_found": bool(account),
"index": index,
})
backend = None
try:
backend = OpenAIBackendAPI(access_token=token)
if request.progress_callback:
backend.progress_callback = request.progress_callback
stream_fn = stream_codex_image_outputs if is_codex_image_model(request.model) else stream_image_outputs
outputs: list[ImageOutput] = []
for output in stream_fn(backend, request, index, total):
if account_email and not output.account_email:
output.account_email = account_email
if output.kind == "message" and request.message_as_error:
raise ImageGenerationError(
output.text or "Image generation was rejected by upstream policy.",
status_code=400,
error_type="invalid_request_error",
code="content_policy_violation",
account_email=account_email,
conversation_id=output.conversation_id,
)
emitted_for_token = True
returned_message = output.kind == "message"
returned_result = returned_result or output.kind == "result"
outputs.append(output)
if returned_message:
account_service.mark_image_result(token, False)
return outputs
if not returned_result:
account_service.mark_image_result(token, False)
if emitted_for_token:
conv_id = outputs[-1].conversation_id if outputs else ""
raise ImageGenerationError(
"upstream completed without generating images",
status_code=400,
error_type="invalid_request_error",
code="no_image_generated",
account_email=account_email,
conversation_id=conv_id,
)
return outputs
account_service.mark_image_result(token, True)
return outputs
except ImagePollTimeoutError as exc:
account_service.mark_image_result(token, False)
if account_email:
setattr(exc, "account_email", account_email)
# 轮询超时:换账号重试
if not emitted_for_token:
poll_timeout_retry_count += 1
if poll_timeout_retry_count <= MAX_POLL_TIMEOUT_RETRIES:
logger.warning({
"event": "image_poll_timeout_retry",
"request_token": token,
"account_email": account_email,
"retry_count": poll_timeout_retry_count,
"index": index,
"error": str(exc)[:200],
})
continue
logger.warning({
"event": "image_poll_timeout_exhausted_retries",
"request_token": token,
"account_email": account_email,
"retry_count": poll_timeout_retry_count,
"index": index,
})
raise
raise
except ImageContentPolicyError as exc:
account_service.mark_image_result(token, False)
logger.warning({
"event": "image_stream_content_policy_error",
"request_token": token,
"account_email": account_email,
"error": str(exc),
"index": index,
})
raise ImageGenerationError(
str(exc) or "Image generation was rejected by upstream policy.",
status_code=400,
error_type="invalid_request_error",
code="content_policy_violation",
account_email=account_email,
conversation_id=getattr(exc, "conversation_id", ""),
) from exc
except ImageGenerationError as exc:
account_service.mark_image_result(token, False)
if account_email and not getattr(exc, "account_email", ""):
exc.account_email = account_email
error_text = str(exc)
# 如果是模型返回文本而非图片,尝试换账号重试
if is_model_text_reply_instead_of_image(error_text) and not emitted_for_token:
text_reply_retry_count += 1
if text_reply_retry_count <= MAX_TEXT_REPLY_RETRIES:
logger.warning({
"event": "image_model_text_reply_retry",
"request_token": token,
"account_email": account_email,
"retry_count": text_reply_retry_count,
"index": index,
"error": error_text[:200],
})
continue
logger.warning({
"event": "image_model_text_reply_exhausted_retries",
"request_token": token,
"account_email": account_email,
"retry_count": text_reply_retry_count,
"index": index,
})
raise ImageGenerationError(
"Image generation failed: the upstream model returned a text description "
"instead of generating an image. Please try again later.",
status_code=502,
error_type="server_error",
code="upstream_text_reply",
account_email=account_email,
conversation_id=getattr(exc, "conversation_id", ""),
) from exc
logger.warning({
"event": "image_stream_generation_error",
"request_token": token,
"account_email": account_email,
"error": error_text,
"index": index,
})
raise
except Exception as exc:
account_service.mark_image_result(token, False)
last_error = str(exc)
logger.warning({
"event": "image_stream_fail",
"request_token": token,
"account_email": account_email,
"error": last_error,
"index": index,
})
if not emitted_for_token and is_token_invalid_error(last_error):
refreshed_token = account_service.refresh_access_token(token, force=True, event="image_stream")
if refreshed_token and refreshed_token != token:
token = refreshed_token
continue
account_service.remove_invalid_token(token, "image_stream")
continue
# TLS/SSL 连接错误:自动重试
if not emitted_for_token and is_tls_connection_error(last_error):
tls_retry_count += 1
if tls_retry_count <= MAX_TLS_RETRIES:
logger.warning({
"event": "image_stream_tls_retry",
"request_token": token,
"account_email": account_email,
"retry_count": tls_retry_count,
"index": index,
"error": last_error[:200],
})
time.sleep(min(2.0 * tls_retry_count, 10.0))
continue
# 连接超时错误(curl 28):同账号短等待重试,不切换账号
if not emitted_for_token and is_connection_timeout_error(last_error):
conn_timeout_retry_count += 1
if conn_timeout_retry_count <= MAX_CONN_TIMEOUT_RETRIES:
wait_secs = min(3.0 * conn_timeout_retry_count, 9.0)
logger.warning({
"event": "image_stream_conn_timeout_retry",
"request_token": token,
"account_email": account_email,
"retry_count": conn_timeout_retry_count,
"index": index,
"wait_secs": wait_secs,
"error": last_error[:200],
})
time.sleep(wait_secs)
continue
raise ImageGenerationError(image_stream_error_message(last_error), account_email=account_email, conversation_id="") from exc
finally:
if backend is not None:
backend.close()
def stream_image_outputs_with_pool(request: ConversationRequest) -> Iterator[ImageOutput]:
"""并行生成多张图片,每张图片使用独立线程和账号,互不阻塞。"""
if not is_supported_image_model(request.model):
raise ImageGenerationError("unsupported image model,supported models: " + ", ".join(sorted(IMAGE_MODELS)))
if request.n <= 1:
# 单张图片,直接执行(无需线程池开销)
outputs = _generate_single_image(request, 1, 1)
for output in outputs:
yield output
return
# 多张图片:根据配置选择并行或串行执行
if not config.image_parallel_generation:
logger.info({
"event": "image_serial_generation_start",
"n": request.n,
"model": request.model,
})
for index in range(1, request.n + 1):
outputs = _generate_single_image(request, index, request.n)
for output in outputs:
yield output
return
logger.info({
"event": "image_parallel_generation_start",
"n": request.n,
"model": request.model,
})
# 每张图片一个线程,同时启动
futures = {}
results: dict[int, list[ImageOutput]] = {}
errors: dict[int, Exception] = {}
with ThreadPoolExecutor(max_workers=request.n) as executor:
for index in range(1, request.n + 1):
future = executor.submit(_generate_single_image, request, index, request.n)
futures[future] = index
# 按完成顺序收集结果
for future in as_completed(futures):
index = futures[future]
try:
results[index] = future.result()
except Exception as exc:
errors[index] = exc
logger.warning({
"event": "image_parallel_generation_error",
"index": index,
"error": str(exc)[:300],
})
# yield 结果:跳过索引顺序限制,不再让低索引失败阻塞高索引成功结果
emitted = False
last_error = ""
# 先 yield 所有成功的结果
for index in range(1, request.n + 1):
if index in results:
for output in results[index]:
emitted = True
yield output
elif index in errors:
last_error = str(errors[index])
if not emitted:
logger.warning({
"event": "image_parallel_failure_before_success",
"failed_index": index,
"error": last_error[:200],
})
# 如果有失败但也有成功,记录警告
if emitted:
for index in range(1, request.n + 1):
if index in errors:
logger.warning({
"event": "image_parallel_partial_failure",
"failed_index": index,
"error": str(errors[index])[:200],
})
if not emitted:
if not last_error:
last_error = "no account in the pool could generate images — check account quota and rate-limit status"
raise ImageGenerationError(image_stream_error_message(last_error), conversation_id="")
def stream_image_chunks(outputs: Iterable[ImageOutput]) -> Iterator[dict[str, Any]]:
for output in outputs:
yield output.to_chunk()
def collect_image_outputs(outputs: Iterable[ImageOutput]) -> dict[str, Any]:
created = None
data: list[dict[str, Any]] = []
message = ""
progress_parts: list[str] = []
account_email = ""
for output in outputs:
created = created or output.created
if output.account_email and not account_email:
account_email = output.account_email
if output.kind == "progress" and output.text:
progress_parts.append(output.text)
elif output.kind == "message":
message = output.text
elif output.kind == "result":
data.extend(output.data)
result: dict[str, Any] = {"created": created or int(time.time()), "data": data}
if not data:
text = message or "".join(progress_parts).strip()
if text:
result["message"] = text
if account_email:
result["_account_email"] = account_email
return result
|