crewAI-tools
crewAI-tools copied to clipboard
the code in ReadME.md file , there is code error in 'Using the tool Decorator' module .can change as below,
Using the tool Decorator
Quickly create lightweight tools using decorators:
orginal code 👎 from crewai import tool
new code 👍 : from crewai.tools import tool
Can you describe a lit bit more your issue?
I mean,when we use tool in crewai, the orignal code as below is wrong, from crewai import tool.
If we want to use crewai api correcttly ,we need to import it as below, from crewai.tools import tool