mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
20 lines
307 B
Python
20 lines
307 B
Python
import click
|
|
|
|
from .create_crew import create_crew
|
|
|
|
|
|
@click.group()
|
|
def crewai():
|
|
"""Top-level command group for crewai."""
|
|
|
|
|
|
@crewai.command()
|
|
@click.argument("project_name")
|
|
def create(project_name):
|
|
"""Create a new crew."""
|
|
create_crew(project_name)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
crewai()
|