Files
crewAI/src/crewai/cli/templates/main.py
2024-03-11 23:27:04 -03:00

10 lines
286 B
Python

#!/usr/bin/env python
from {{folder_name}}.crew import {{crew_name}}Crew
def run():
# Replace with your inputs, it will automatically interpolate any tasks and agents information
inputs = {
'topic': 'AI LLMs'
}
{{crew_name}}Crew().crew().kickoff(inputs=inputs)