nginx_ui/nginx-ui-dev/api/openai/router.go

10 lines
195 B
Go
Raw Permalink Normal View History

2025-03-04 19:28:12 +08:00
package openai
import "github.com/gin-gonic/gin"
func InitRouter(r *gin.RouterGroup) {
// ChatGPT
r.POST("chatgpt", MakeChatCompletionRequest)
r.POST("chatgpt_record", StoreChatGPTRecord)
}