forked from JointCloud/pcm-coordinator
parent
d40b46439c
commit
3448a8c4e0
|
@ -25,3 +25,4 @@ configs/tenanter.yaml
|
|||
|
||||
log/
|
||||
/cache/
|
||||
/vendor/
|
||||
|
|
|
@ -35,20 +35,20 @@ type (
|
|||
}
|
||||
|
||||
AiInferDeployInstance struct {
|
||||
Id int64 `db:"id"`
|
||||
InstanceId string `db:"instance_id"`
|
||||
InstanceName string `db:"instance_name"`
|
||||
AdapterId int64 `db:"adapter_id"`
|
||||
AdapterName string `db:"adapter_name"`
|
||||
ClusterId int64 `db:"cluster_id"`
|
||||
ClusterName string `db:"cluster_name"`
|
||||
ModelName string `db:"model_name"`
|
||||
ModelType string `db:"model_type"`
|
||||
InferCard string `db:"infer_card"`
|
||||
Status string `db:"status"`
|
||||
CreateTime string `db:"create_time"`
|
||||
UpdateTime string `db:"update_time"`
|
||||
ClusterType string `db:"cluster_type"`
|
||||
Id int64 `db:"id" json:"id,string"`
|
||||
InstanceId string `db:"instance_id" json:"instanceId"`
|
||||
InstanceName string `db:"instance_name" json:"instanceName"`
|
||||
AdapterId int64 `db:"adapter_id" json:"adapterId,string"`
|
||||
AdapterName string `db:"adapter_name" json:"adapterName" `
|
||||
ClusterId int64 `db:"cluster_id" json:"clusterId,string"`
|
||||
ClusterName string `db:"cluster_name" json:"clusterName"`
|
||||
ModelName string `db:"model_name" json:"modelName"`
|
||||
ModelType string `db:"model_type" json:"modelType"`
|
||||
InferCard string `db:"infer_card" json:"inferCard"`
|
||||
Status string `db:"status" json:"status"`
|
||||
CreateTime string `db:"create_time" json:"createTime"`
|
||||
UpdateTime string `db:"update_time" json:"updateTime"`
|
||||
ClusterType string `db:"cluster_type" json:"clusterType"`
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue