mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
21 lines
361 B
Go
21 lines
361 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"`
|
|
}
|
|
|
|
type NewProvider struct {
|
|
Name string `json:"name"`
|
|
}
|