Exporting TEXT Generated using CrewAI as PDFs

Is there a way I can export the text generated using my crewAI agentic system as PDFs. For context, this agentic system generates multiple “Request for Quotations”. I want to export each “RFQ” as an individual PDF.

Hey Abhiraj, first off, welcome!

There isn’t an official way to export the text (which is almost always Markdown) generated by your crew as PDFs. Personally, I post-process it using Quarto, which allows me to generate HTML, PDF, and even Docx. Or, for some of my writer crews, I order the output in LaTeX, since most LLMs understand enough LaTeX to generate a decent output.

In any case, it’s up to you to implement that output processing step.