mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
bc16d7f5ce
Introduce a new interface for fetching model configuration templates to enhance model management flexibility.
14 lines
317 B
Go
14 lines
317 B
Go
package model_dto
|
|
|
|
type SimpleModel struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type ModelParametersTemplate struct {
|
|
Id string `json:"id"`
|
|
ProviderName string `json:"provider_name"`
|
|
ModelName string `json:"model_name"`
|
|
ModelParameters string `json:"model_parameters"`
|
|
}
|