adding initial CLI support

This commit is contained in:
João Moura
2024-03-11 16:37:32 -03:00
parent 4503f1b9c1
commit 0a9404bb46
24 changed files with 417 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python
from .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)