diff --git a/src/crewai/cli/run_crew.py b/src/crewai/cli/run_crew.py index 95b560109..c31af9a71 100644 --- a/src/crewai/cli/run_crew.py +++ b/src/crewai/cli/run_crew.py @@ -26,6 +26,9 @@ def run_crew() -> None: fg="red", ) + if pyproject_data.get("tool", {}).get("crewai", {}).get("type") == "flow": + command = ["uv", "run", "kickoff"] + try: subprocess.run(command, capture_output=False, text=True, check=True)