mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 03:32:33 +08:00
fix: ensure content is string in chatcmpl call method
fix: ensure content is string in chatcmpl call method - Ensure user message content is a string instead of an array - Updated `call` method in `chatcmpl.py` to guarantee content is a string - Resolves compatibility issue with the yi-large model
This commit is contained in:
parent
9e6a01fefd
commit
7a19dd503d
|
@ -102,9 +102,14 @@ class OpenAIChatCompletions(api.LLMAPIRequester):
|
|||
messages: typing.List[llm_entities.Message],
|
||||
funcs: typing.List[tools_entities.LLMFunction] = None,
|
||||
) -> llm_entities.Message:
|
||||
req_messages = [ # req_messages 仅用于类内,外部同步由 query.messages 进行
|
||||
m.dict(exclude_none=True) for m in messages
|
||||
]
|
||||
req_messages = []
|
||||
for m in messages:
|
||||
msg_dict = m.dict(exclude_none=True)
|
||||
if isinstance(msg_dict.get("content"), list):
|
||||
# 确保content是字符串
|
||||
msg_dict["content"] = "".join(
|
||||
[part["text"] for part in msg_dict["content"]])
|
||||
req_messages.append(msg_dict)
|
||||
|
||||
try:
|
||||
return await self._closure(req_messages, model, funcs)
|
||||
|
|
Loading…
Reference in New Issue
Block a user