v0.0.483
·
1457 commits
to main
since this release
Version 0.0.483 (July 24, 2026)
- SharePoint, OneDrive and Google Drive can now read Word, PowerPoint and PDF files —
read_fileon 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_textmodule, 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 gainedread_raw_bytes, soattach_filepersists 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.