nginx-ui/api/openai/router.go
2024-05-02 12:49:01 +08:00

9 lines
195 B
Go

package openai
import "github.com/gin-gonic/gin"
func InitRouter(r *gin.RouterGroup) {
// ChatGPT
r.POST("chatgpt", MakeChatCompletionRequest)
r.POST("chatgpt_record", StoreChatGPTRecord)
}