fix: remove dup-prefix in bot_routes (#16492)

This commit is contained in:
Haruko386
2026-06-30 17:02:58 +08:00
committed by GitHub
parent 09dc4c8841
commit b3af9fc068

View File

@@ -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)
}