Files
APIPark/module/ai/dto/input.go
T
2024-10-23 16:29:18 +08:00

11 lines
172 B
Go

package ai_dto
type UpdateLLM struct {
LLM string `json:"llm"`
}
type UpdateConfig struct {
DefaultLLM string `json:"default_llm"`
Config string `json:"config"`
}