mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
Initial commit for the Canary Crew project using crewAI. Includes workflow for GitHub Actions, project configuration, agent and task YAML files, main execution and utility scripts, a custom tool example, user knowledge file, and documentation. Enables multi-agent AI research and reporting with markdown output.
24 lines
493 B
TOML
24 lines
493 B
TOML
[project]
|
|
name = "canary"
|
|
version = "0.1.0"
|
|
description = "canary using crewAI"
|
|
authors = [{ name = "Your Name", email = "you@example.com" }]
|
|
requires-python = ">=3.10,<3.13"
|
|
dependencies = [
|
|
"crewai[tools]>=0.120.1,<1.0.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
canary = "canary.main:run"
|
|
run_crew = "canary.main:run"
|
|
train = "canary.main:train"
|
|
replay = "canary.main:replay"
|
|
test = "canary.main:test"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.crewai]
|
|
type = "crew"
|