Hi All,
I’m new to crewAI and was watching a tutorial about “Building a Resume Optimizer AI Agent with CrewAI”: https://www.youtube.com/watch?v=ppE1CXhRNF8. The output of the crew Task is generating markdown format which makes me start thinking that it will be a good help if Task can support generating pdf as output. Unfortunately, I read through the docs but it seems like it’s not being supported today. I wonder if the team is going to add this as a new feature in the future or is there any workaround nowadays to do the md → pdf conversion?
yes this is a good example. the rule of thumb is that you will need a tool for this conversion to happen if you want to keep this within your agent workflow. also you don’t need an agent for this per se. you could use the @after_kickoff decorator on a functionthat will do the conversion at the end by reading in a markdown file.