Files
APIPark/module/ai-model/dto/output.go
sunanzhi bc16d7f5ce feat: add API endpoint to retrieve model configuration template
Introduce a new interface for fetching model configuration templates to enhance model management flexibility.
2025-03-07 11:15:49 +08:00

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"`
}