File size: 57,095 Bytes
c50496f | 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 | """
OpenAI Transfer Module - Handles conversion between OpenAI and Gemini API formats
被openai-router调用,负责OpenAI格式与Gemini格式的双向转换
"""
import json
import time
import uuid
from typing import Any, Dict, List, Optional, Tuple, Union
from pypinyin import Style, lazy_pinyin
from src.converter.thoughtSignature_fix import (
encode_tool_id_with_signature,
decode_tool_id_and_signature,
)
from src.converter.utils import merge_system_messages
from log import log
def _convert_usage_metadata(usage_metadata: Dict[str, Any]) -> Dict[str, int]:
"""
将Gemini的usageMetadata转换为OpenAI格式的usage字段
Args:
usage_metadata: Gemini API的usageMetadata字段
Returns:
OpenAI格式的usage字典,如果没有usage数据则返回None
"""
if not usage_metadata:
return None
return {
"prompt_tokens": usage_metadata.get("promptTokenCount", 0),
"completion_tokens": usage_metadata.get("candidatesTokenCount", 0),
"total_tokens": usage_metadata.get("totalTokenCount", 0),
}
def _build_message_with_reasoning(role: str, content: str, reasoning_content: str) -> dict:
"""构建包含可选推理内容的消息对象"""
message = {"role": role, "content": content}
# 如果有thinking tokens,添加reasoning_content
if reasoning_content:
message["reasoning_content"] = reasoning_content
return message
def _map_finish_reason(gemini_reason: str) -> str:
"""
将Gemini结束原因映射到OpenAI结束原因
Args:
gemini_reason: 来自Gemini API的结束原因
Returns:
OpenAI兼容的结束原因
"""
if gemini_reason == "STOP":
return "stop"
elif gemini_reason == "MAX_TOKENS":
return "length"
elif gemini_reason in ["SAFETY", "RECITATION"]:
return "content_filter"
else:
# 对于 None 或未知的 finishReason,返回 "stop" 作为默认值
# 避免返回 None 导致 MCP 客户端误判为响应未完成而循环调用
return "stop"
# ==================== Tool Conversion Functions ====================
def _normalize_function_name(name: str) -> str:
"""
规范化函数名以符合 Gemini API 要求
规则:
- 必须以字母或下划线开头
- 只能包含 a-z, A-Z, 0-9, 下划线, 英文句点, 英文短划线
- 最大长度 64 个字符
转换策略:
1. 中文字符转换为拼音
2. 将非法字符替换为下划线
3. 如果以非字母/下划线开头,添加下划线前缀
4. 截断到 64 个字符
Args:
name: 原始函数名
Returns:
规范化后的函数名
"""
import re
if not name:
return "_unnamed_function"
# 步骤1:转换中文字符为拼音
if re.search(r"[\u4e00-\u9fff]", name):
try:
parts = []
for char in name:
if "\u4e00" <= char <= "\u9fff":
# 中文字符转换为拼音
pinyin = lazy_pinyin(char, style=Style.NORMAL)
parts.append("".join(pinyin))
else:
parts.append(char)
normalized = "".join(parts)
except ImportError:
log.warning("pypinyin not installed, cannot convert Chinese characters to pinyin")
normalized = name
else:
normalized = name
# 步骤2:将非法字符替换为下划线
# 合法字符:a-z, A-Z, 0-9, _, ., -
normalized = re.sub(r"[^a-zA-Z0-9_.\-]", "_", normalized)
# 步骤3:确保以字母或下划线开头
if normalized and not (normalized[0].isalpha() or normalized[0] == "_"):
# 以数字、点或短横线开头,添加下划线前缀
normalized = "_" + normalized
# 步骤4:截断到 64 个字符
if len(normalized) > 64:
normalized = normalized[:64]
# 步骤5:确保不为空
if not normalized:
normalized = "_unnamed_function"
return normalized
def _resolve_ref(ref: str, root_schema: Dict[str, Any]) -> Optional[Dict[str, Any]]:
"""
解析 $ref 引用
Args:
ref: 引用路径,如 "#/definitions/MyType"
root_schema: 根 schema 对象
Returns:
解析后的 schema,如果失败返回 None
"""
if not ref.startswith('#/'):
return None
path = ref[2:].split('/')
current = root_schema
for segment in path:
if isinstance(current, dict) and segment in current:
current = current[segment]
else:
return None
return current if isinstance(current, dict) else None
def _clean_schema_for_claude(schema: Any, root_schema: Optional[Dict[str, Any]] = None, visited: Optional[set] = None) -> Any:
"""
清理 JSON Schema,转换为 Claude API 支持的格式(符合 JSON Schema draft 2020-12)
处理逻辑:
1. 解析 $ref 引用
2. 合并 allOf 中的 schema
3. 转换 anyOf 为更兼容的格式
4. 保持标准 JSON Schema 类型(不转换为大写)
5. 处理 array 的 items
6. 清理 Claude 不支持的字段
Args:
schema: JSON Schema 对象
root_schema: 根 schema(用于解析 $ref)
visited: 已访问的对象集合(防止循环引用)
Returns:
清理后的 schema
"""
# 非字典类型直接返回
if not isinstance(schema, dict):
return schema
# 初始化
if root_schema is None:
root_schema = schema
if visited is None:
visited = set()
# 防止循环引用
schema_id = id(schema)
if schema_id in visited:
return schema
visited.add(schema_id)
# 创建副本避免修改原对象
result = {}
# 1. 处理 $ref
if "$ref" in schema:
resolved = _resolve_ref(schema["$ref"], root_schema)
if resolved:
import copy
result = copy.deepcopy(resolved)
for key, value in schema.items():
if key != "$ref":
result[key] = value
schema = result
result = {}
# 2. 处理 allOf(合并所有 schema)
if "allOf" in schema:
all_of_schemas = schema["allOf"]
for item in all_of_schemas:
cleaned_item = _clean_schema_for_claude(item, root_schema, visited)
if "properties" in cleaned_item:
if "properties" not in result:
result["properties"] = {}
result["properties"].update(cleaned_item["properties"])
if "required" in cleaned_item:
if "required" not in result:
result["required"] = []
result["required"].extend(cleaned_item["required"])
for key, value in cleaned_item.items():
if key not in ["properties", "required"]:
result[key] = value
for key, value in schema.items():
if key not in ["allOf", "properties", "required"]:
result[key] = value
elif key in ["properties", "required"] and key not in result:
result[key] = value
else:
result = dict(schema)
# 3. 处理 type 数组(如 ["string", "null"])
if "type" in result:
type_value = result["type"]
if isinstance(type_value, list):
# Claude 支持 type 数组,保持不变
pass
# 4. 处理 array 的 items
if result.get("type") == "array":
if "items" not in result:
result["items"] = {}
elif isinstance(result["items"], list):
# Tuple 定义,检查是否所有元素类型相同
tuple_items = result["items"]
first_type = tuple_items[0].get("type") if tuple_items else None
is_homogeneous = all(item.get("type") == first_type for item in tuple_items)
if is_homogeneous and first_type:
result["items"] = _clean_schema_for_claude(tuple_items[0], root_schema, visited)
else:
# 异质元组,使用 anyOf 表示
result["items"] = {
"anyOf": [_clean_schema_for_claude(item, root_schema, visited) for item in tuple_items]
}
else:
result["items"] = _clean_schema_for_claude(result["items"], root_schema, visited)
# 5. 处理 anyOf(保持 anyOf,递归清理)
if "anyOf" in result:
result["anyOf"] = [_clean_schema_for_claude(item, root_schema, visited) for item in result["anyOf"]]
# 6. 清理 Claude 不支持的字段(根据 JSON Schema 2020-12)
# Claude API 对某些字段比较严格,移除可能导致问题的字段
unsupported_keys = {
"title", "$schema", "strict",
"additionalItems", # 废弃字段,使用 items 替代
"exclusiveMaximum", "exclusiveMinimum", # 在 2020-12 中这些应该是数值而非布尔值
"$defs", "definitions", # 移除 definitions 相关字段避免冲突
"example", "examples", "readOnly", "writeOnly",
"const", # const 可能导致问题
"contentEncoding", "contentMediaType",
"oneOf", # oneOf 可能导致问题,用 anyOf 替代
"patternProperties", "dependencies", "propertyNames", # Google API 不支持
}
for key in list(result.keys()):
if key in unsupported_keys:
del result[key]
# 递归处理 additionalProperties(如果存在)
if "additionalProperties" in result and isinstance(result["additionalProperties"], dict):
result["additionalProperties"] = _clean_schema_for_claude(result["additionalProperties"], root_schema, visited)
# 7. 递归处理 properties
if "properties" in result:
cleaned_props = {}
for prop_name, prop_schema in result["properties"].items():
cleaned_props[prop_name] = _clean_schema_for_claude(prop_schema, root_schema, visited)
result["properties"] = cleaned_props
# 8. 确保有 type 字段(如果有 properties 但没有 type)
if "properties" in result and "type" not in result:
result["type"] = "object"
# 9. 去重 required 数组
if "required" in result and isinstance(result["required"], list):
result["required"] = list(dict.fromkeys(result["required"]))
return result
def _clean_schema_for_gemini(schema: Any, root_schema: Optional[Dict[str, Any]] = None, visited: Optional[set] = None) -> Any:
"""
清理 JSON Schema,转换为 Gemini 支持的格式
参考 worker.mjs 的 transformOpenApiSchemaToGemini 实现
处理逻辑:
1. 解析 $ref 引用
2. 合并 allOf 中的 schema
3. 转换 anyOf 为 enum(如果可能)
4. 类型映射(string -> STRING)
5. 处理 ARRAY 的 items(包括 Tuple)
6. 将 default 值移到 description
7. 清理不支持的字段
Args:
schema: JSON Schema 对象
root_schema: 根 schema(用于解析 $ref)
visited: 已访问的对象集合(防止循环引用)
Returns:
清理后的 schema
"""
# 非字典类型直接返回
if not isinstance(schema, dict):
return schema
# 初始化
if root_schema is None:
root_schema = schema
if visited is None:
visited = set()
# 防止循环引用
schema_id = id(schema)
if schema_id in visited:
return schema
visited.add(schema_id)
# 创建副本避免修改原对象
result = {}
# 1. 处理 $ref
if "$ref" in schema:
resolved = _resolve_ref(schema["$ref"], root_schema)
if resolved:
# 检测循环引用:若 resolved 已在 visited 中,直接返回占位符
resolved_id = id(resolved)
if resolved_id in visited:
return {"type": "OBJECT", "description": "(circular reference)"}
# 将 resolved 的 id 加入 visited,防止后续递归时重复处理
visited.add(resolved_id)
# 合并解析后的 schema 和当前 schema(浅拷贝,避免 deepcopy 爆栈)
merged = dict(resolved)
# 当前 schema 的其他字段会覆盖解析后的字段
for key, value in schema.items():
if key != "$ref":
merged[key] = value
schema = merged
result = {}
# 2. 处理 allOf(合并所有 schema)
if "allOf" in schema:
all_of_schemas = schema["allOf"]
for item in all_of_schemas:
cleaned_item = _clean_schema_for_gemini(item, root_schema, visited)
# 合并 properties
if "properties" in cleaned_item:
if "properties" not in result:
result["properties"] = {}
result["properties"].update(cleaned_item["properties"])
# 合并 required
if "required" in cleaned_item:
if "required" not in result:
result["required"] = []
result["required"].extend(cleaned_item["required"])
# 合并其他字段(简单覆盖)
for key, value in cleaned_item.items():
if key not in ["properties", "required"]:
result[key] = value
# 复制其他字段
for key, value in schema.items():
if key not in ["allOf", "properties", "required"]:
result[key] = value
elif key in ["properties", "required"] and key not in result:
result[key] = value
else:
# 复制所有字段
result = dict(schema)
# 3. 类型映射(转换为大写)
# 注意:Gemini API 的 type 字段必须是字符串,不能是数组
if "type" in result:
type_value = result["type"]
# 如果 type 是列表,提取主要类型(非 null)
if isinstance(type_value, list):
primary_type = next((t for t in type_value if t != "null"), None)
type_value = primary_type if primary_type else "STRING" # 默认为 STRING
# 类型映射
type_map = {
"string": "STRING",
"number": "NUMBER",
"integer": "INTEGER",
"boolean": "BOOLEAN",
"array": "ARRAY",
"object": "OBJECT",
}
if isinstance(type_value, str) and type_value.lower() in type_map:
# 确保 result["type"] 是字符串而不是列表
result["type"] = type_map[type_value.lower()]
else:
# 未知类型,删除该字段
del result["type"]
# 4. 处理 ARRAY 的 items
if result.get("type") == "ARRAY":
if "items" not in result:
# 没有 items,默认允许任意类型
result["items"] = {}
elif isinstance(result["items"], list):
# Tuple 定义(items 是数组)
tuple_items = result["items"]
# 提取类型信息用于 description
tuple_types = [item.get("type", "any") for item in tuple_items]
tuple_desc = f"(Tuple: [{', '.join(tuple_types)}])"
original_desc = result.get("description", "")
result["description"] = f"{original_desc} {tuple_desc}".strip()
# 检查是否所有元素类型相同
first_type = tuple_items[0].get("type") if tuple_items else None
is_homogeneous = all(item.get("type") == first_type for item in tuple_items)
if is_homogeneous and first_type:
# 同质元组,转换为 List<Type>
result["items"] = _clean_schema_for_gemini(tuple_items[0], root_schema, visited)
else:
# 异质元组,Gemini 不支持,设为 {}
result["items"] = {}
else:
# 递归处理 items
result["items"] = _clean_schema_for_gemini(result["items"], root_schema, visited)
# 5. 处理 anyOf(尝试转换为 enum)
if "anyOf" in result:
any_of_schemas = result["anyOf"]
# 递归处理每个 schema
cleaned_any_of = [_clean_schema_for_gemini(item, root_schema, visited) for item in any_of_schemas]
# 尝试提取 enum
if all("const" in item for item in cleaned_any_of):
enum_values = [
str(item["const"])
for item in cleaned_any_of
if item.get("const") not in ["", None]
]
if enum_values:
result["type"] = "STRING"
result["enum"] = enum_values
elif "type" not in result:
# 如果不是 enum,尝试取第一个有效的类型定义
first_valid = next((item for item in cleaned_any_of if item.get("type") or item.get("enum")), None)
if first_valid:
result.update(first_valid)
# 删除 anyOf
del result["anyOf"]
# 6. 将 default 值移到 description
if "default" in result:
default_value = result["default"]
original_desc = result.get("description", "")
result["description"] = f"{original_desc} (Default: {json.dumps(default_value)})".strip()
del result["default"]
# 7. 清理不支持的字段
unsupported_keys = {
"title", "$schema", "$ref", "strict", "exclusiveMaximum",
"exclusiveMinimum", "additionalProperties", "oneOf", "allOf",
"$defs", "definitions", "example", "examples", "readOnly",
"writeOnly", "const", "additionalItems", "contains",
"patternProperties", "dependencies", "propertyNames",
"if", "then", "else", "contentEncoding", "contentMediaType"
}
for key in list(result.keys()):
if key in unsupported_keys:
del result[key]
# 8. 递归处理 properties
if "properties" in result:
cleaned_props = {}
for prop_name, prop_schema in result["properties"].items():
cleaned_props[prop_name] = _clean_schema_for_gemini(prop_schema, root_schema, visited)
result["properties"] = cleaned_props
# 9. 确保有 type 字段(如果有 properties 但没有 type)
if "properties" in result and "type" not in result:
result["type"] = "OBJECT"
# 10. 去重 required 数组
if "required" in result and isinstance(result["required"], list):
result["required"] = list(dict.fromkeys(result["required"])) # 保持顺序去重
return result
def fix_tool_call_args_types(
args: Dict[str, Any],
parameters_schema: Dict[str, Any]
) -> Dict[str, Any]:
"""
根据工具的参数 schema 修正函数调用参数的类型
例如:将字符串 "5" 转换为数字 5,根据 schema 中的 type 定义
Args:
args: 函数调用的参数字典
parameters_schema: 工具定义中的 parameters schema
Returns:
类型修正后的参数字典
"""
if not args or not parameters_schema:
return args
properties = parameters_schema.get("properties", {})
if not properties:
return args
fixed_args = {}
for key, value in args.items():
if key not in properties:
# 参数不在 schema 中,保持原样
fixed_args[key] = value
continue
param_schema = properties[key]
param_type = param_schema.get("type")
# 根据 schema 中的类型修正参数值
if param_type == "number" or param_type == "integer":
# 如果值是字符串,尝试转换为数字
if isinstance(value, str):
try:
if param_type == "integer":
fixed_args[key] = int(value)
else:
# 尝试转换为 float,如果是整数则保持为 int
num_value = float(value)
fixed_args[key] = int(num_value) if num_value.is_integer() else num_value
log.debug(f"[OPENAI2GEMINI] 修正参数类型: {key} '{value}' -> {fixed_args[key]} ({param_type})")
except (ValueError, AttributeError):
# 转换失败,保持原样
fixed_args[key] = value
log.warning(f"[OPENAI2GEMINI] 无法将参数 {key} 的值 '{value}' 转换为 {param_type}")
else:
fixed_args[key] = value
elif param_type == "boolean":
# 如果值是字符串,转换为布尔值
if isinstance(value, str):
if value.lower() in ("true", "1", "yes"):
fixed_args[key] = True
elif value.lower() in ("false", "0", "no"):
fixed_args[key] = False
else:
fixed_args[key] = value
if fixed_args[key] != value:
log.debug(f"[OPENAI2GEMINI] 修正参数类型: {key} '{value}' -> {fixed_args[key]} (boolean)")
else:
fixed_args[key] = value
elif param_type == "string":
# 如果值不是字符串,转换为字符串
if not isinstance(value, str):
fixed_args[key] = str(value)
log.debug(f"[OPENAI2GEMINI] 修正参数类型: {key} {value} -> '{fixed_args[key]}' (string)")
else:
fixed_args[key] = value
else:
# 其他类型(array, object 等)保持原样
fixed_args[key] = value
return fixed_args
def convert_openai_tools_to_gemini(openai_tools: List, model: str = "") -> List[Dict[str, Any]]:
"""
将 OpenAI tools 格式转换为 Gemini functionDeclarations 格式
Args:
openai_tools: OpenAI 格式的工具列表(可能是字典或 Pydantic 模型)
model: 模型名称(用于判断是否为 Claude 模型)
Returns:
Gemini 格式的工具列表
"""
if not openai_tools:
return []
# 判断是否为 Claude 模型
is_claude_model = "claude" in model.lower()
function_declarations = []
for tool in openai_tools:
if tool.get("type") != "function":
log.warning(f"Skipping non-function tool type: {tool.get('type')}")
continue
function = tool.get("function")
if not function:
log.warning("Tool missing 'function' field")
continue
# 获取并规范化函数名
original_name = function.get("name")
if not original_name:
log.warning("Tool missing 'name' field, using default")
original_name = "_unnamed_function"
normalized_name = _normalize_function_name(original_name)
# 如果名称被修改了,记录日志
if normalized_name != original_name:
log.debug(f"Function name normalized: '{original_name}' -> '{normalized_name}'")
# 构建 Gemini function declaration
declaration = {
"name": normalized_name,
"description": function.get("description", ""),
}
# 添加参数(如果有)- 根据模型选择不同的清理函数
if "parameters" in function:
if is_claude_model:
cleaned_params = _clean_schema_for_claude(function["parameters"])
log.debug(f"[OPENAI2GEMINI] Using Claude schema cleaning for tool: {normalized_name}")
else:
cleaned_params = _clean_schema_for_gemini(function["parameters"])
if cleaned_params:
declaration["parameters"] = cleaned_params
function_declarations.append(declaration)
if not function_declarations:
return []
# Gemini 格式:工具数组中包含 functionDeclarations
return [{"functionDeclarations": function_declarations}]
def convert_tool_choice_to_tool_config(tool_choice: Union[str, Dict[str, Any]]) -> Dict[str, Any]:
"""
将 OpenAI tool_choice 转换为 Gemini toolConfig
Args:
tool_choice: OpenAI 格式的 tool_choice
Returns:
Gemini 格式的 toolConfig
"""
if isinstance(tool_choice, str):
if tool_choice == "auto":
return {"functionCallingConfig": {"mode": "AUTO"}}
elif tool_choice == "none":
return {"functionCallingConfig": {"mode": "NONE"}}
elif tool_choice == "required":
return {"functionCallingConfig": {"mode": "ANY"}}
elif isinstance(tool_choice, dict):
# {"type": "function", "function": {"name": "my_function"}}
if tool_choice.get("type") == "function":
function_name = tool_choice.get("function", {}).get("name")
if function_name:
return {
"functionCallingConfig": {
"mode": "ANY",
"allowedFunctionNames": [function_name],
}
}
# 默认返回 AUTO 模式
return {"functionCallingConfig": {"mode": "AUTO"}}
def convert_tool_message_to_function_response(message, all_messages: List = None) -> Dict[str, Any]:
"""
将 OpenAI 的 tool role 消息转换为 Gemini functionResponse
Args:
message: OpenAI 格式的工具消息
all_messages: 所有消息的列表,用于查找 tool_call_id 对应的函数名
Returns:
Gemini 格式的 functionResponse part
"""
# 获取 name 字段
name = getattr(message, "name", None)
encoded_tool_call_id = getattr(message, "tool_call_id", None) or ""
# 解码获取原始ID(functionResponse不需要签名)
original_tool_call_id, _ = decode_tool_id_and_signature(encoded_tool_call_id)
# 如果没有 name,尝试从 all_messages 中查找对应的 tool_call_id
# 注意:使用编码ID查找,因为存储的是编码ID
if not name and encoded_tool_call_id and all_messages:
for msg in all_messages:
if getattr(msg, "role", None) == "assistant" and hasattr(msg, "tool_calls") and msg.tool_calls:
for tool_call in msg.tool_calls:
if getattr(tool_call, "id", None) == encoded_tool_call_id:
func = getattr(tool_call, "function", None)
if func:
name = getattr(func, "name", None)
break
if name:
break
# 最终兜底:如果仍然没有 name,使用默认值
if not name:
name = "unknown_function"
log.warning(f"Tool message missing function name, using default: {name}")
try:
# 尝试将 content 解析为 JSON
response_data = (
json.loads(message.content) if isinstance(message.content, str) else message.content
)
except (json.JSONDecodeError, TypeError):
# 如果不是有效的 JSON,包装为对象
response_data = {"result": str(message.content)}
# 确保 response_data 是字典类型(Gemini API 要求 response 必须是对象)
if not isinstance(response_data, dict):
response_data = {"result": response_data}
return {"functionResponse": {"id": original_tool_call_id, "name": name, "response": response_data}}
def _reverse_transform_value(value: Any) -> Any:
"""
将值转换回原始类型(Gemini 可能将所有值转为字符串)
仅处理 Gemini 在工具参数中常见的布尔/空值字符串化情况,
不再对数字字符串做启发式转换,避免把 schema 声明为 string
的参数错误还原成 integer。
参考 worker.mjs 的 reverseTransformValue
Args:
value: 要转换的值
Returns:
转换后的值
"""
if not isinstance(value, str):
return value
# 布尔值
if value == 'true':
return True
if value == 'false':
return False
# null
if value == 'null':
return None
# 其他情况保持字符串
return value
def _reverse_transform_args(args: Any) -> Any:
"""
递归转换函数参数,将字符串转回原始类型
参考 worker.mjs 的 reverseTransformArgs
Args:
args: 函数参数(可能是字典、列表或其他类型)
Returns:
转换后的参数
"""
if not isinstance(args, (dict, list)):
return args
if isinstance(args, list):
return [_reverse_transform_args(item) for item in args]
# 处理字典
result = {}
for key, value in args.items():
if isinstance(value, (dict, list)):
result[key] = _reverse_transform_args(value)
else:
result[key] = _reverse_transform_value(value)
return result
def extract_tool_calls_from_parts(
parts: List[Dict[str, Any]], is_streaming: bool = False
) -> Tuple[List[Dict[str, Any]], str]:
"""
从 Gemini response parts 中提取工具调用和文本内容
Args:
parts: Gemini response 的 parts 数组
is_streaming: 是否为流式响应(流式响应需要添加 index 字段)
Returns:
(tool_calls, text_content) 元组
"""
tool_calls = []
text_content = ""
for idx, part in enumerate(parts):
# 检查是否是函数调用
if "functionCall" in part:
function_call = part["functionCall"]
# 获取原始ID或生成新ID
original_id = function_call.get("id") or f"call_{uuid.uuid4().hex[:24]}"
# 将thoughtSignature编码到ID中以便往返保留
signature = part.get("thoughtSignature")
encoded_id = encode_tool_id_with_signature(original_id, signature)
# 获取参数并转换类型
args = function_call.get("args", {})
# 将字符串类型的值转回原始类型
args = _reverse_transform_args(args)
tool_call = {
"id": encoded_id,
"type": "function",
"function": {
"name": function_call.get("name", "nameless_function"),
"arguments": json.dumps(args),
},
}
# 流式响应需要 index 字段
if is_streaming:
tool_call["index"] = idx
tool_calls.append(tool_call)
# 提取文本内容(排除 thinking tokens)
elif "text" in part and not part.get("thought", False):
text_content += part["text"]
return tool_calls, text_content
def extract_images_from_content(content: Any) -> Dict[str, Any]:
"""
从 OpenAI content 中提取文本和图片
Args:
content: OpenAI 消息的 content 字段(可能是字符串或列表)
Returns:
包含 text 和 images 的字典
"""
result = {"text": "", "images": []}
if isinstance(content, str):
result["text"] = content
elif isinstance(content, list):
for item in content:
if isinstance(item, dict):
if item.get("type") == "text":
result["text"] += item.get("text", "")
elif item.get("type") == "image_url":
image_url = item.get("image_url", {}).get("url", "")
# 解析 data:image/png;base64,xxx 格式
if image_url.startswith("data:image/"):
import re
match = re.match(r"^data:image/(\w+);base64,(.+)$", image_url)
if match:
mime_type = match.group(1)
base64_data = match.group(2)
result["images"].append({
"inlineData": {
"mimeType": f"image/{mime_type}",
"data": base64_data
}
})
return result
async def convert_openai_to_gemini_request(openai_request: Dict[str, Any]) -> Dict[str, Any]:
"""
将 OpenAI 格式请求体转换为 Gemini 格式请求体
注意: 此函数只负责基础转换,不包含 normalize_gemini_request 中的处理
(如 thinking config, search tools, 参数范围限制等)
Args:
openai_request: OpenAI 格式的请求体字典,包含:
- messages: 消息列表
- temperature, top_p, max_tokens, stop 等生成参数
- tools, tool_choice (可选)
- response_format (可选)
Returns:
Gemini 格式的请求体字典,包含:
- contents: 转换后的消息内容
- generationConfig: 生成配置
- systemInstruction: 系统指令 (如果有)
- tools, toolConfig (如果有)
"""
# 处理连续的system消息(兼容性模式)
openai_request = await merge_system_messages(openai_request)
contents = []
# 提取消息列表
messages = openai_request.get("messages", [])
# 构建 tool_call_id -> (name, original_id, signature) 的映射
tool_call_mapping = {}
for msg in messages:
if msg.get("role") == "assistant" and msg.get("tool_calls"):
for tc in msg["tool_calls"]:
encoded_id = tc.get("id", "")
func_name = tc.get("function", {}).get("name") or ""
if encoded_id:
# 解码获取原始ID和签名
original_id, signature = decode_tool_id_and_signature(encoded_id)
tool_call_mapping[encoded_id] = (func_name, original_id, signature)
# 构建工具名称到参数 schema 的映射(用于类型修正)
tool_schemas = {}
if "tools" in openai_request and openai_request["tools"]:
for tool in openai_request["tools"]:
if tool.get("type") == "function":
function = tool.get("function", {})
func_name = function.get("name")
if func_name:
tool_schemas[func_name] = function.get("parameters", {})
# 用于累积连续的 tool message 的 functionResponse parts
pending_tool_parts = []
def flush_pending_tool_parts():
"""将累积的 tool parts 作为单个 contents 条目追加"""
nonlocal pending_tool_parts
if pending_tool_parts:
contents.append({
"role": "user",
"parts": pending_tool_parts
})
pending_tool_parts = []
for message in messages:
role = message.get("role", "user")
content = message.get("content", "")
# 处理工具消息(tool role)- 累积到 pending_tool_parts
if role == "tool":
tool_call_id = message.get("tool_call_id", "")
func_name = message.get("name")
# 使用映射表查找
if tool_call_id in tool_call_mapping:
func_name, original_id, _ = tool_call_mapping[tool_call_id]
else:
# 如果没有name,尝试从消息列表中查找
if not func_name and tool_call_id:
for msg in messages:
if msg.get("role") == "assistant" and msg.get("tool_calls"):
for tc in msg["tool_calls"]:
if tc.get("id") == tool_call_id:
func_name = tc.get("function", {}).get("name")
break
if func_name:
break
# 解码 tool_call_id 获取原始 ID
original_id, _ = decode_tool_id_and_signature(tool_call_id)
# 最终兜底:确保 func_name 不为空
if not func_name:
func_name = "unknown_function"
log.warning(f"Tool message missing function name for tool_call_id={tool_call_id}, using default: {func_name}")
# 解析响应数据
try:
response_data = json.loads(content) if isinstance(content, str) else content
except (json.JSONDecodeError, TypeError):
response_data = {"result": str(content)}
# 确保 response_data 是字典类型(Gemini API 要求 response 必须是对象)
if not isinstance(response_data, dict):
response_data = {"result": response_data}
# 累积 functionResponse part(不立即追加到 contents)
pending_tool_parts.append({
"functionResponse": {
"id": original_id,
"name": func_name,
"response": response_data
}
})
continue
# 遇到非 tool 消息时,先 flush 累积的 tool parts
flush_pending_tool_parts()
# system 消息已经由 merge_system_messages 处理,这里跳过
if role == "system":
continue
# 将OpenAI角色映射到Gemini角色
if role == "assistant":
role = "model"
# 检查是否有tool_calls
tool_calls = message.get("tool_calls")
if tool_calls:
parts = []
# 如果有文本内容,先添加文本
if content:
parts.append({"text": content})
# 添加每个工具调用
for tool_call in tool_calls:
try:
args = (
json.loads(tool_call["function"]["arguments"])
if isinstance(tool_call["function"]["arguments"], str)
else tool_call["function"]["arguments"]
)
# 根据工具的 schema 修正参数类型
func_name = tool_call["function"]["name"]
if func_name in tool_schemas:
args = fix_tool_call_args_types(args, tool_schemas[func_name])
# 解码工具ID和thoughtSignature
encoded_id = tool_call.get("id", "")
original_id, signature = decode_tool_id_and_signature(encoded_id)
# 构建functionCall part
function_call_part = {
"functionCall": {
"id": original_id,
"name": func_name,
"args": args
}
}
# 如果有thoughtSignature则添加,否则使用占位符以满足 Gemini API 要求
if signature:
function_call_part["thoughtSignature"] = signature
else:
function_call_part["thoughtSignature"] = "skip_thought_signature_validator"
parts.append(function_call_part)
except (json.JSONDecodeError, KeyError) as e:
log.error(f"Failed to parse tool call: {e}")
continue
if parts:
contents.append({"role": role, "parts": parts})
continue
# 处理普通内容
if isinstance(content, list):
parts = []
for part in content:
if part.get("type") == "text":
parts.append({"text": part.get("text", "")})
elif part.get("type") == "image_url":
image_url = part.get("image_url", {}).get("url")
if image_url:
try:
mime_type, base64_data = image_url.split(";")
_, mime_type = mime_type.split(":")
_, base64_data = base64_data.split(",")
parts.append({
"inlineData": {
"mimeType": mime_type,
"data": base64_data,
}
})
except ValueError:
continue
if parts:
contents.append({"role": role, "parts": parts})
elif content:
contents.append({"role": role, "parts": [{"text": content}]})
# 循环结束后,flush 剩余的 tool parts(如果消息列表以 tool 消息结尾)
flush_pending_tool_parts()
# 构建生成配置
generation_config = {}
model = openai_request.get("model", "")
# 基础参数映射
if "temperature" in openai_request:
generation_config["temperature"] = openai_request["temperature"]
if "top_p" in openai_request:
generation_config["topP"] = openai_request["top_p"]
if "top_k" in openai_request:
generation_config["topK"] = openai_request["top_k"]
if "max_tokens" in openai_request or "max_completion_tokens" in openai_request:
# max_completion_tokens 优先于 max_tokens
max_tokens = openai_request.get("max_completion_tokens") or openai_request.get("max_tokens")
generation_config["maxOutputTokens"] = max_tokens
if "stop" in openai_request:
stop = openai_request["stop"]
generation_config["stopSequences"] = [stop] if isinstance(stop, str) else stop
if "frequency_penalty" in openai_request:
generation_config["frequencyPenalty"] = openai_request["frequency_penalty"]
if "presence_penalty" in openai_request:
generation_config["presencePenalty"] = openai_request["presence_penalty"]
if "n" in openai_request:
generation_config["candidateCount"] = openai_request["n"]
if "seed" in openai_request:
generation_config["seed"] = openai_request["seed"]
# 处理 response_format
if "response_format" in openai_request and openai_request["response_format"]:
response_format = openai_request["response_format"]
format_type = response_format.get("type")
if format_type == "json_schema":
# JSON Schema 模式
if "json_schema" in response_format and "schema" in response_format["json_schema"]:
schema = response_format["json_schema"]["schema"]
# 清理 schema
generation_config["responseSchema"] = _clean_schema_for_gemini(schema)
generation_config["responseMimeType"] = "application/json"
elif format_type == "json_object":
# JSON Object 模式
generation_config["responseMimeType"] = "application/json"
elif format_type == "text":
# Text 模式
generation_config["responseMimeType"] = "text/plain"
# 如果contents为空,添加默认用户消息
if not contents:
contents.append({"role": "user", "parts": [{"text": "请根据系统指令回答。"}]})
# 构建基础请求
gemini_request = {
"contents": contents,
"generationConfig": generation_config
}
# 如果 merge_system_messages 已经添加了 systemInstruction,使用它
if "systemInstruction" in openai_request:
gemini_request["systemInstruction"] = openai_request["systemInstruction"]
# 处理工具 - 传递 model 参数以便根据模型类型选择清理策略
model = openai_request.get("model", "")
if "tools" in openai_request and openai_request["tools"]:
gemini_request["tools"] = convert_openai_tools_to_gemini(openai_request["tools"], model)
# 处理tool_choice
if "tool_choice" in openai_request and openai_request["tool_choice"]:
gemini_request["toolConfig"] = convert_tool_choice_to_tool_config(openai_request["tool_choice"])
return gemini_request
def convert_gemini_to_openai_response(
gemini_response: Union[Dict[str, Any], Any],
model: str,
status_code: int = 200
) -> Dict[str, Any]:
"""
将 Gemini 格式非流式响应转换为 OpenAI 格式非流式响应
注意: 如果收到的不是 200 开头的响应,不做任何处理,直接转发原始响应
Args:
gemini_response: Gemini 格式的响应体 (字典或响应对象)
model: 模型名称
status_code: HTTP 状态码 (默认 200)
Returns:
OpenAI 格式的响应体字典,或原始响应 (如果状态码不是 2xx)
"""
# 非 2xx 状态码直接返回原始响应
if not (200 <= status_code < 300):
if isinstance(gemini_response, dict):
return gemini_response
else:
# 如果是响应对象,尝试解析为字典
try:
if hasattr(gemini_response, "json"):
return gemini_response.json()
elif hasattr(gemini_response, "body"):
body = gemini_response.body
if isinstance(body, bytes):
return json.loads(body.decode())
return json.loads(str(body))
else:
return {"error": str(gemini_response)}
except Exception:
return {"error": str(gemini_response)}
# 确保是字典格式
if not isinstance(gemini_response, dict):
try:
if hasattr(gemini_response, "json"):
gemini_response = gemini_response.json()
elif hasattr(gemini_response, "body"):
body = gemini_response.body
if isinstance(body, bytes):
gemini_response = json.loads(body.decode())
else:
gemini_response = json.loads(str(body))
else:
gemini_response = json.loads(str(gemini_response))
except Exception:
return {"error": "Invalid response format"}
# 处理 GeminiCLI 的 response 包装格式
if "response" in gemini_response:
gemini_response = gemini_response["response"]
# 转换为 OpenAI 格式
choices = []
for candidate in gemini_response.get("candidates", []):
role = candidate.get("content", {}).get("role", "assistant")
# 将Gemini角色映射回OpenAI角色
if role == "model":
role = "assistant"
# 提取并分离thinking tokens和常规内容
parts = candidate.get("content", {}).get("parts", [])
# 提取工具调用和文本内容
tool_calls, text_content = extract_tool_calls_from_parts(parts)
# 提取多种类型的内容
content_parts = []
reasoning_parts = []
for part in parts:
# 处理 executableCode(代码生成)
if "executableCode" in part:
exec_code = part["executableCode"]
lang = exec_code.get("language", "python").lower()
code = exec_code.get("code", "")
# 添加代码块(前后加换行符确保 Markdown 渲染正确)
content_parts.append(f"\n```{lang}\n{code}\n```\n")
# 处理 codeExecutionResult(代码执行结果)
elif "codeExecutionResult" in part:
result = part["codeExecutionResult"]
outcome = result.get("outcome")
output = result.get("output", "")
if output:
label = "output" if outcome == "OUTCOME_OK" else "error"
content_parts.append(f"\n```{label}\n{output}\n```\n")
# 处理 thought(思考内容)
elif part.get("thought", False) and "text" in part:
reasoning_parts.append(part["text"])
# 处理普通文本(非思考内容)
elif "text" in part and not part.get("thought", False):
# 这部分已经在 extract_tool_calls_from_parts 中处理
pass
# 处理 inlineData(图片)
elif "inlineData" in part:
inline_data = part["inlineData"]
mime_type = inline_data.get("mimeType", "image/png")
base64_data = inline_data.get("data", "")
# 使用 Markdown 格式
content_parts.append(f"")
# 合并所有内容部分
if content_parts:
# 使用双换行符连接各部分,确保块之间有间距
additional_content = "\n\n".join(content_parts)
if text_content:
text_content = text_content + "\n\n" + additional_content
else:
text_content = additional_content
# 合并 reasoning content
reasoning_content = "\n\n".join(reasoning_parts) if reasoning_parts else ""
# 构建消息对象
message = {"role": role}
# 获取 Gemini 的 finishReason
gemini_finish_reason = candidate.get("finishReason")
# 如果有工具调用
if tool_calls:
message["tool_calls"] = tool_calls
message["content"] = text_content if text_content else None
# 只有在正常停止(STOP)时才设为 tool_calls,其他情况保持原始 finish_reason
# 这样可以避免在 SAFETY、MAX_TOKENS 等情况下仍然返回 tool_calls 导致循环
if gemini_finish_reason == "STOP":
finish_reason = "tool_calls"
else:
finish_reason = _map_finish_reason(gemini_finish_reason)
else:
message["content"] = text_content
finish_reason = _map_finish_reason(gemini_finish_reason)
# 添加 reasoning content (如果有)
if reasoning_content:
message["reasoning_content"] = reasoning_content
choices.append({
"index": candidate.get("index", 0),
"message": message,
"finish_reason": finish_reason,
})
# 转换 usageMetadata
usage = _convert_usage_metadata(gemini_response.get("usageMetadata"))
response_data = {
"id": str(uuid.uuid4()),
"object": "chat.completion",
"created": int(time.time()),
"model": model,
"choices": choices,
}
if usage:
response_data["usage"] = usage
return response_data
def convert_gemini_to_openai_stream(
gemini_stream_chunk: str,
model: str,
response_id: str,
status_code: int = 200
) -> Optional[str]:
"""
将 Gemini 格式流式响应块转换为 OpenAI SSE 格式流式响应
注意: 如果收到的不是 200 开头的响应,不做任何处理,直接转发原始内容
Args:
gemini_stream_chunk: Gemini 格式的流式响应块 (字符串,通常是 "data: {json}" 格式)
model: 模型名称
response_id: 此流式响应的一致ID
status_code: HTTP 状态码 (默认 200)
Returns:
OpenAI SSE 格式的响应字符串 (如 "data: {json}\n\n"),
或原始内容 (如果状态码不是 2xx),
或 None (如果解析失败)
"""
# 非 2xx 状态码直接返回原始内容
if not (200 <= status_code < 300):
return gemini_stream_chunk
# 解析 Gemini 流式块
try:
# 去除 "data: " 前缀
if isinstance(gemini_stream_chunk, bytes):
if gemini_stream_chunk.startswith(b"data: "):
payload_str = gemini_stream_chunk[len(b"data: "):].strip().decode("utf-8")
else:
payload_str = gemini_stream_chunk.strip().decode("utf-8")
else:
if gemini_stream_chunk.startswith("data: "):
payload_str = gemini_stream_chunk[len("data: "):].strip()
else:
payload_str = gemini_stream_chunk.strip()
# 跳过空块
if not payload_str:
return None
# 解析 JSON
gemini_chunk = json.loads(payload_str)
except (json.JSONDecodeError, UnicodeDecodeError):
# 解析失败,跳过此块
return None
# 处理 GeminiCLI 的 response 包装格式
if "response" in gemini_chunk:
gemini_response = gemini_chunk["response"]
else:
gemini_response = gemini_chunk
# 转换为 OpenAI 流式格式
choices = []
for candidate in gemini_response.get("candidates", []):
role = candidate.get("content", {}).get("role", "assistant")
# 将Gemini角色映射回OpenAI角色
if role == "model":
role = "assistant"
# 提取并分离thinking tokens和常规内容
parts = candidate.get("content", {}).get("parts", [])
# 提取工具调用和文本内容 (流式需要 index)
tool_calls, text_content = extract_tool_calls_from_parts(parts, is_streaming=True)
# 提取多种类型的内容
content_parts = []
reasoning_parts = []
for part in parts:
# 处理 executableCode(代码生成)
if "executableCode" in part:
exec_code = part["executableCode"]
lang = exec_code.get("language", "python").lower()
code = exec_code.get("code", "")
content_parts.append(f"\n```{lang}\n{code}\n```\n")
# 处理 codeExecutionResult(代码执行结果)
elif "codeExecutionResult" in part:
result = part["codeExecutionResult"]
outcome = result.get("outcome")
output = result.get("output", "")
if output:
label = "output" if outcome == "OUTCOME_OK" else "error"
content_parts.append(f"\n```{label}\n{output}\n```\n")
# 处理 thought(思考内容)
elif part.get("thought", False) and "text" in part:
reasoning_parts.append(part["text"])
# 处理普通文本(非思考内容)
elif "text" in part and not part.get("thought", False):
# 这部分已经在 extract_tool_calls_from_parts 中处理
pass
# 处理 inlineData(图片)
elif "inlineData" in part:
inline_data = part["inlineData"]
mime_type = inline_data.get("mimeType", "image/png")
base64_data = inline_data.get("data", "")
content_parts.append(f"")
# 合并所有内容部分
if content_parts:
additional_content = "\n\n".join(content_parts)
if text_content:
text_content = text_content + "\n\n" + additional_content
else:
text_content = additional_content
# 合并 reasoning content
reasoning_content = "\n\n".join(reasoning_parts) if reasoning_parts else ""
# 构建 delta 对象
delta = {}
if tool_calls:
delta["tool_calls"] = tool_calls
if text_content:
delta["content"] = text_content
elif text_content:
delta["content"] = text_content
if reasoning_content:
delta["reasoning_content"] = reasoning_content
# 获取 Gemini 的 finishReason
gemini_finish_reason = candidate.get("finishReason")
finish_reason = _map_finish_reason(gemini_finish_reason)
# 只有在正常停止(STOP)且有工具调用时才设为 tool_calls
# 避免在 SAFETY、MAX_TOKENS 等情况下仍然返回 tool_calls 导致循环
if tool_calls and gemini_finish_reason == "STOP":
finish_reason = "tool_calls"
choices.append({
"index": candidate.get("index", 0),
"delta": delta,
"finish_reason": finish_reason,
})
# 转换 usageMetadata (只在流结束时存在)
usage = _convert_usage_metadata(gemini_response.get("usageMetadata"))
# 构建 OpenAI 流式响应
response_data = {
"id": response_id,
"object": "chat.completion.chunk",
"created": int(time.time()),
"model": model,
"choices": choices,
}
# 只在有 usage 数据且有 finish_reason 时添加 usage
if usage:
has_finish_reason = any(choice.get("finish_reason") for choice in choices)
if has_finish_reason:
response_data["usage"] = usage
# 转换为 SSE 格式: "data: {json}\n\n"
return f"data: {json.dumps(response_data)}\n\n"
|