From b3af9fc068725737d92c818bebf12a086e790eaf Mon Sep 17 00:00:00 2001 From: Haruko386 Date: Tue, 30 Jun 2026 17:02:58 +0800 Subject: [PATCH] fix: remove dup-prefix in bot_routes (#16492) --- internal/router/bot_routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/router/bot_routes.go b/internal/router/bot_routes.go index 146c655c6c..79245f6ffd 100644 --- a/internal/router/bot_routes.go +++ b/internal/router/bot_routes.go @@ -53,5 +53,5 @@ func RegisterAgentbotRoutes(g *gin.RouterGroup, mw gin.HandlerFunc, h *handler.B } g.POST("/:agent_id/completions", h.AgentbotCompletion) g.GET("/:agent_id/inputs", h.AgentbotInputs) - g.GET("/:shared_id/logs/:message_id", h.GetAgentbotLogs) + g.GET("/:agent_id/logs/:message_id", h.GetAgentbotLogs) }