fix(gemini): convert PDF to text in functionResponse parts to prevent API errors#2028
Closed
echoVic wants to merge 3 commits intoQwenLM:mainfrom
Closed
fix(gemini): convert PDF to text in functionResponse parts to prevent API errors#2028echoVic wants to merge 3 commits intoQwenLM:mainfrom
echoVic wants to merge 3 commits intoQwenLM:mainfrom
Conversation
added 3 commits
March 1, 2026 11:19
QwenLM#2025) - Trim skill name in validateToolParams to handle cases where model adds extra whitespace - Update params.skill with trimmed value for consistent usage throughout the tool - Add test cases for leading/trailing whitespace and Chinese skill names Fixes QwenLM#2025
… API errors (QwenLM#2020) - Add PDF (application/pdf) to unsupported media types in convertUnsupportedMediaToText - This prevents 'Invalid value: file' API errors when reading PDF files - PDF content in tool responses is now converted to explanatory text - Add test cases for PDF inlineData and fileData conversion Fixes QwenLM#2020
Contributor
Author
|
Closing this PR as the PDF fix has been merged into #2027 along with the skill whitespace fix. |
This was referenced Mar 1, 2026
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.
Problem
When reading PDF files, the API returns "Invalid value: file. Supported values are: 'text','image_url','video_url' and 'video'." error. Worse, this error state persists in the session, causing all subsequent requests to fail with the same error.
Fixes #2020
Root Cause
Gemini API's FunctionResponse does not support PDF (
application/pdf) in thepartsfield. When a tool returns PDF content as inlineData, it gets passed through to the API, which rejects it.Changes
application/pdf) to unsupported media types inconvertUnsupportedMediaToText()Testing