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 ff16348d4c
commit bc31019b67
16 changed files with 1129 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
[tool.poetry]
name = "{{folder_name}}"
version = "0.1.0"
description = "{{name}} using crewAI"
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
crewai = { extras = ["tools"], version = ">=0.55.2,<1.0.0" }
asyncio = "*"
[tool.poetry.scripts]
{{folder_name}} = "{{folder_name}}.main:main"
run_crew = "{{folder_name}}.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"