feat: gpt-4-gizmo-g-* model is supported

This commit is contained in:
RockYang
2024-01-15 15:03:05 +08:00
parent 059f57db2d
commit 9f57fb1421
14 changed files with 86 additions and 31 deletions

12
api/store/model/file.go Normal file
View File

@@ -0,0 +1,12 @@
package model
import "time"
type File struct {
Id uint `gorm:"primarykey;column:id"`
UserId uint
URL string
Ext string
Size int64
CreatedAt time.Time
}