JiriOndrusek opened a new issue, #9076: URL: https://github.com/apache/camel-quarkus/issues/9076
Ingestion pipelines read every payload as plain text, so the documents people actually want to ingest — PDFs, office files, HTML — come out as garbage instead of their content. A pipeline should be able to name a parser that extracts the text first: ```properties quarkus.camel.langchain4j.ingest.manuals.parser=tika ``` Two options, reusing the existing Camel components: `tika` extracts text in-process, `docling` converts to markdown through a Docling Serve instance. Works for both directory and consumer-fed pipelines, in JVM and native mode. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
