Brandon/cre 19 workflows (#1347)

Flows
This commit is contained in:
Brandon Hancock (bhancock_ai)
2024-09-27 11:11:17 -04:00
committed by GitHub
parent f94aee3dc8
commit f82420e7d6
16 changed files with 1129 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
from crewai_tools import BaseTool
class MyCustomTool(BaseTool):
name: str = "Name of my tool"
description: str = (
"Clear description for what this tool is useful for, you agent will need this information to use it."
)
def _run(self, argument: str) -> str:
# Implementation goes here
return "this is an example of a tool output, ignore it and move along."