From 5af7df8031611fc5efe2f28787e10375dc2b50f0 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Thu, 24 Oct 2024 12:12:33 -0400 Subject: [PATCH] update plot command --- 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)