From a8b10822610f2f4df51b06b2efe15a4aa0b68283 Mon Sep 17 00:00:00 2001 From: Zhang Minghan Date: Mon, 2 Oct 2023 21:28:53 +0800 Subject: [PATCH] update transhipment url --- manager/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/router.go b/manager/router.go index f6be496..b83e20a 100644 --- a/manager/router.go +++ b/manager/router.go @@ -4,5 +4,5 @@ import "github.com/gin-gonic/gin" func Register(app *gin.Engine) { app.GET("/chat", ChatAPI) - app.POST("/v1/completions", TranshipmentAPI) + app.POST("/v1/chat/completions", TranshipmentAPI) }