Skip to content

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

FieldTypeRequiredDescription
idstring✔️N/A
providerstring✔️N/A
modelIdstring✔️N/A
sourcestring✔️N/A
immutableboolean✔️N/A
definitionRecord<string, any>✔️N/A
healthcomponents.Health✔️N/A
createdAtnumber✔️N/A
updatedAtnumber✔️N/A