ClassifyTextMetadata
Metadata about the classification request and execution
Example Usage
typescript
import { ClassifyTextMetadata } from "@meetkai/mka1/models/operations";
let value: ClassifyTextMetadata = {
model: "Cruze",
labels: [
"<value 1>",
"<value 2>",
"<value 3>",
],
classifiedAt: "<value>",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
model | string | ✔️ | The model that was used to perform the classification |
labels | string[] | ✔️ | The array of possible labels that were provided in the request |
classifiedAt | string | ✔️ | ISO 8601 timestamp indicating when the classification was performed |