diff --git a/Agent-Tools.md b/Agent-Tools.md index 40daf22..33e03c5 100644 --- a/Agent-Tools.md +++ b/Agent-Tools.md @@ -19,6 +19,8 @@ Example: ```python import json import requests + +from crewai import Agent from langchain.tools import tool from unstructured.partition.html import partition_html @@ -40,7 +42,7 @@ class BrowserTools(): return content[:5000] -# Create an agent and assign the search tool +# Create an agent and assign the scrapping tool agent = Agent( role='Research Analyst', goal='Provide up-to-date market analysis',