fix(gemini_client): 优化消息转换逻辑并改进错误提示

- 将系统角色消息的错误提示改为更友好的中文描述
- 添加对 Tool 角色消息的调试日志说明暂不支持
- 实现过滤空 parts 的 Content 对象以避免 API 错误 (#1494)
- 添加转换后内容为空的验证,确保满足 Gemini API 要求
- 保持原有返回值结构不变
pull/1522/head
xiaoxiao-cvs 2026-02-22 07:02:58 +08:00
parent b63b7a7fb9
commit 47d60798a2
No known key found for this signature in database
GPG Key ID: DD50E3E78BAC6C36
1 changed files with 15 additions and 8 deletions

View File

@ -117,20 +117,27 @@ def _convert_messages(
if isinstance(message.content, str): if isinstance(message.content, str):
system_instructions.append(message.content) system_instructions.append(message.content)
else: else:
raise ValueError("你tm怎么往system里面塞图片base64") raise ValueError("system消息仅支持纯文本不能包含图片")
elif message.role == RoleType.Tool: elif message.role == RoleType.Tool:
if not message.tool_call_id: if not message.tool_call_id:
raise ValueError("无法触及的代码请使用MessageBuilder类构建消息对象") raise ValueError("无法触及的代码请使用MessageBuilder类构建消息对象")
logger.debug("跳过了一条tool消息gemini不支持直接转换tool角色")
else: else:
temp_list.append(_convert_message_item(message)) temp_list.append(_convert_message_item(message))
if system_instructions:
# 如果有system消息就把它加上去
ret: tuple = (temp_list, system_instructions)
else:
# 如果没有system消息就直接返回
ret: tuple = (temp_list, None)
return ret # 过滤掉parts为空的Content不然gemini会报错
original_count = len(temp_list)
temp_list = [item for item in temp_list if not isinstance(item, Content) or item.parts]
if len(temp_list) < original_count:
logger.debug(f"过滤了 {original_count - len(temp_list)} 条空消息")
# contents不能为空不然gemini接口会直接报错
if not temp_list:
raise ValueError("消息列表里没有有效的对话内容至少需要一条user或assistant消息")
if system_instructions:
return (temp_list, system_instructions)
return (temp_list, None)
def _convert_tool_options(tool_options: list[ToolOption]) -> list[FunctionDeclaration]: def _convert_tool_options(tool_options: list[ToolOption]) -> list[FunctionDeclaration]: