coai/manager/router.go
2023-11-09 11:05:14 +08:00

10 lines
198 B
Go

package manager
import "github.com/gin-gonic/gin"
func Register(app *gin.Engine) {
app.GET("/chat", ChatAPI)
app.GET("/v1/models", ModelAPI)
app.POST("/v1/chat/completions", TranshipmentAPI)
}