From 27fdbf3d5b8f4f4a10c7f4e697a2d3397ec98ac3 Mon Sep 17 00:00:00 2001 From: Jeff Haynie Date: Thu, 24 Apr 2025 12:31:33 -0500 Subject: [PATCH] Update the dev help output to use the direct agent route instead of legacy route --- cmd/dev.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dev.go b/cmd/dev.go index a197861a..26378ef3 100644 --- a/cmd/dev.go +++ b/cmd/dev.go @@ -203,7 +203,7 @@ func displayLocalInstructions(port int, agents []project.AgentConfig, devModeUrl sampleAgentID = agents[0].ID } - curlCommand := fmt.Sprintf("curl -v http://localhost:%d/run/%s --json '{\"input\": \"Hello, world!\"}'", port, sampleAgentID) + curlCommand := fmt.Sprintf("curl -v http://localhost:%d/%s --json '{\"input\": \"Hello, world!\"}'", port, sampleAgentID) fmt.Println() fmt.Println(tui.Text("To interact with your agents locally, you can use:"))