From 31e907bd8429aeb5c31be30760f02764d2d6c756 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Thu, 16 Jan 2025 12:20:48 -0500 Subject: [PATCH] update docs --- docs/concepts/knowledge.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/concepts/knowledge.mdx b/docs/concepts/knowledge.mdx index 91110e19f..254a56bb8 100644 --- a/docs/concepts/knowledge.mdx +++ b/docs/concepts/knowledge.mdx @@ -93,6 +93,12 @@ result = crew.kickoff(inputs={"question": "What city does John live in and how o Here's another example with the `CrewDoclingSource`. The CrewDoclingSource is actually quite versatile and can handle multiple file formats including TXT, PDF, DOCX, HTML, and more. + + You need to install `docling` for the following example to work: `uv add docling` + + + + ```python Code from crewai import LLM, Agent, Crew, Process, Task from crewai.knowledge.source.crew_docling_source import CrewDoclingSource