WIP. Working on adding and & or to flows. In the middle of setting up template for flow as well

This commit is contained in:
Brandon Hancock
2024-09-11 16:26:02 -04:00
parent 3a266d6b40
commit a028566bd6
22 changed files with 627 additions and 32 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."