Conversation
根因:LLMUtils.call_llm() 中 image_urls 收集逻辑存在两个缺陷: 1. image_count 默认值为 0,导致整个图片收集块被 if image_count 短路跳过; 2. 即使配置了 image_count > 0,遍历范围也仅限于 history_messages,不包含 当前消息链(用户刚发送的消息),当前消息通过 outline_message_list() 转为 纯文本后图片 URL 丢失。 修复:在收集历史图片之前,先从当前消息链 (event.message_obj.message) 中 提取 Image 组件加入 image_urls,不受 image_count 限制;历史图片收集改为 补充逻辑,受 image_count 限制,并添加 URL 去重防止重复传递。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release v2.1.12
This PR was automatically created by the release workflow.
Changes
Files Updated
metadata.yaml- version updatedmain.py- version in @register decorator updatedREADME.md- badge and latest version section updatedAfter merging, a tag will be automatically created and a GitHub Release will be published.