Skip to content

Commit 559a381

Browse files
authored
feat(letsgo): use inline::auto file processor (#5704)
Replace inline::pypdf with inline::auto in the letsgo auto-detected inline provider list. The auto processor is a superset of pypdf — it routes PDFs and text files to pypdf and dispatches office documents, images, and audio to MarkItDown, consistent with the starter and ci-tests distributions.
1 parent 8fcda2f commit 559a381

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ogx/cli/stack/lets_go.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,13 @@ def _autodetect_providers() -> str:
212212
"files=inline::localfs",
213213
"vector_io=inline::faiss",
214214
"tool_runtime=inline::file-search",
215-
"file_processors=inline::pypdf",
215+
"file_processors=inline::auto",
216216
"responses=inline::builtin",
217217
]
218218
cprint(" ✓ inline::localfs (built-in)", color="green")
219219
cprint(" ✓ inline::faiss (built-in)", color="green")
220220
cprint(" ✓ inline::file-search (built-in)", color="green")
221-
cprint(" ✓ inline::pypdf (built-in)", color="green")
221+
cprint(" ✓ inline::auto (built-in)", color="green")
222222
cprint(" ✓ inline::builtin responses (built-in)", color="green")
223223

224224
if passed:

0 commit comments

Comments
 (0)