mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
9 lines
197 B
Go
9 lines
197 B
Go
package openai
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func InitRouter(r *gin.RouterGroup) {
|
|
// ChatGPT
|
|
r.POST("chat_gpt", MakeChatCompletionRequest)
|
|
r.POST("chat_gpt_record", StoreChatGPTRecord)
|
|
}
|