feat: auto translate image creating prompt

This commit is contained in:
RockYang
2023-12-19 18:54:19 +08:00
parent cae5c049e4
commit 6e58ddf681
11 changed files with 446 additions and 99 deletions

View File

@@ -0,0 +1,11 @@
package model
type Function struct {
Id uint `gorm:"primarykey;column:id"`
Name string
Description string
Parameters string
Required string
Action string
Enabled bool
}