diff --git a/src/crewai/cli/run_crew.py b/src/crewai/cli/run_crew.py index 51ed48f3a..4c3f69a2d 100644 --- a/src/crewai/cli/run_crew.py +++ b/src/crewai/cli/run_crew.py @@ -7,7 +7,7 @@ def run_crew() -> None: """ Run the crew by running a command in the Poetry environment. """ - command = ["poetry", "run"] + command = ["poetry", "run", "run_crew"] try: result = subprocess.run(command, capture_output=False, text=True, check=True)