| 70 | } |
| 71 | |
| 72 | type Model struct { |
| 73 | ID string `json:"id"` |
| 74 | Type ModelType `json:"type"` |
| 75 | DisplayName string `json:"displayName"` |
| 76 | Status ModelStatus `json:"status"` |
| 77 | HuggingFace *HuggingFace `json:"huggingFace,omitempty"` |
| 78 | Deployment *ModelDeployment `json:"deployment,omitempty"` |
| 79 | } |
| 80 | |
| 81 | type ModelDeployment struct { |
| 82 | Enabled bool `json:"enabled"` |
nothing calls this directly
no outgoing calls
no test coverage detected