Skip to content

v0.0.483

Choose a tag to compare

@github-actions github-actions released this 24 Jul 13:26
· 1457 commits to main since this release
813ed9d

Version 0.0.483 (July 24, 2026)

  • SharePoint, OneDrive and Google Drive can now read Word, PowerPoint and PDF filesread_file on the Microsoft Graph and Google Drive connectors returned raw bytes for pdf/docx/pptx, so the agent saw only "binary, N bytes" and had to tell the user to convert the document by hand, while Files & Directories and S3 already extracted text from the same formats. Rich-document extraction is now a single shared layer used by every file connector: the in-memory bytes adapter moved out of the S3 client into the common _document_text module, and both drive clients run pdf/docx/pptx downloads through it with the same contract as the other sources — extracted plain text, with a raw-bytes fallback for scanned/image-based files so the read-as-images vision path still applies. Both drive clients also gained read_raw_bytes, so attach_file persists the original file rather than a reparsed copy and the PDF page-image fallback works on those sources too (the Graph variant enforces the connection's include-glob scope on raw reads; Google-native Docs/Slides export to PDF since they have no binary original). Verified live against a real SharePoint site: Hebrew Word documents and PDFs that previously dead-ended as "binary" now read as full text.