You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
415 B
Go
15 lines
415 B
Go
package model
|
|
|
|
type TensorRTLLM struct {
|
|
BaseModel
|
|
Name string `json:"name"`
|
|
DockerCompose string `json:"dockerCompose"`
|
|
ContainerName string `json:"containerName"`
|
|
Message string `json:"message"`
|
|
Status string `json:"status"`
|
|
Env string `json:"env"`
|
|
TaskID string `json:"taskID"`
|
|
ModelType string `json:"modelType"`
|
|
ModelSpeedup bool `json:"modelSpeedup"`
|
|
}
|