From 201e652fa2bdb44123609e00c0a2f33f5ad154cb Mon Sep 17 00:00:00 2001 From: "Brandon Hancock (bhancock_ai)" <109994880+bhancockio@users.noreply.github.com> Date: Thu, 24 Oct 2024 14:44:30 -0400 Subject: [PATCH] update plot command (#1504) --- src/crewai/cli/plot_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/cli/plot_flow.py b/src/crewai/cli/plot_flow.py index 2183a02ec..848c55d69 100644 --- a/src/crewai/cli/plot_flow.py +++ b/src/crewai/cli/plot_flow.py @@ -7,7 +7,7 @@ def plot_flow() -> None: """ Plot the flow by running a command in the UV environment. """ - command = ["uv", "run", "plot_flow"] + command = ["uv", "run", "plot"] try: result = subprocess.run(command, capture_output=False, text=True, check=True)