Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs - fixing doc for the new crewai_tools #337

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/core-concepts/Tools.md
Expand Up @@ -176,7 +176,7 @@ def my_tool(question: str) -> str:
import json
import requests
from crewai import Agent
from crewai.tools import tool
from crewai_tools import tool
from unstructured.partition.html import partition_html

# Annotate the function with the tool decorator from crewAI
Expand Down
2 changes: 1 addition & 1 deletion docs/how-to/Create-Custom-Tools.md
Expand Up @@ -48,7 +48,7 @@ def my_tool(question: str) -> str:
import json
import requests
from crewai import Agent
from crewai.tools import tool
from crewai_tools import tool
from unstructured.partition.html import partition_html

# Annotate the function with the tool decorator from crewAI
Expand Down