From 3d95097dc17063e87334ca832fb98f0de71f74ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Tue, 14 Nov 2023 12:45:59 -0300 Subject: [PATCH] Updated Agent Tools (markdown) --- Agent-Tools.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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',