Files
APIPark/module/ai/dto/input.go
T
2024-12-24 18:00:46 +08:00

17 lines
305 B
Go

package ai_dto
type UpdateLLM struct {
LLM string `json:"llm"`
}
type UpdateConfig struct {
DefaultLLM string `json:"default_llm"`
Config string `json:"config"`
Priority *int `json:"priority"`
Enable *bool `json:"enable"`
}
type Sort struct {
Providers []string `json:"providers"`
}