From 967af3f96dc2856804792481e6d68bcf334deb8a Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 12 Aug 2026 03:13:35 +0000 Subject: [PATCH] docs: remove FileReadTool installation section CrewAI is assumed to already be installed, so the install steps are unnecessary. Co-authored-by: Rip&Tear --- docs/edge/en/tools/file-document/filereadtool.mdx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docs/edge/en/tools/file-document/filereadtool.mdx b/docs/edge/en/tools/file-document/filereadtool.mdx index 811aec9ceb..57fad5f161 100644 --- a/docs/edge/en/tools/file-document/filereadtool.mdx +++ b/docs/edge/en/tools/file-document/filereadtool.mdx @@ -19,14 +19,6 @@ The tool always returns plain text. If you need structured data (for example, JS For large files, the agent can pass `start_line` and `line_count` to read only a range of lines. The tool stops once it has those lines, so it does not scan the rest of the file. -## Installation - -CrewAI should already be installed. Add tools support with: - -```shell -pip install 'crewai[tools]' -``` - ## Usage Example ```python Code