Hey @Daniel_Ryan
Here is the code snippet of my crew:
@crew
def crew(self) -> Crew:
pdf_source = PDFKnowledgeSource(file_path="Knowledge.pdf")
return Crew(
agents=self.agents,
tasks=self.tasks,
process=Process.sequential,
verbose=True,
knowledge_sources=[pdf_source]
)
Store the pdf file in project home directory under the folder named knowledge. Below is my file structure:
crewai version: 0.76.9
Good luck!!