RegistryModelResponse
Example Usage
typescript
import { RegistryModelResponse } from "@meetkai/mka1/models/components";
let value: RegistryModelResponse = {
id: "<id>",
provider: "<value>",
modelId: "<id>",
source: "<value>",
immutable: true,
definition: {
"key": "<value>",
"key1": "<value>",
"key2": "<value>",
},
health: {
isAvailable: true,
lastHealthCheck: null,
error: null,
},
createdAt: 7536.52,
updatedAt: null,
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | ✔️ | N/A |
provider | string | ✔️ | N/A |
modelId | string | ✔️ | N/A |
source | string | ✔️ | N/A |
immutable | boolean | ✔️ | N/A |
definition | Record<string, any> | ✔️ | N/A |
health | components.Health | ✔️ | N/A |
createdAt | number | ✔️ | N/A |
updatedAt | number | ✔️ | N/A |