Result
Export result (only present when status is COMPLETED)
Example Usage
typescript
import { Result } from "@meetkai/mka1/models/components";
let value: Result = {
outputPath: "<value>",
completionsFile: "<value>",
responsesFile: "<value>",
recordCount: 897285,
completionFeedbackCount: 526220,
responseFeedbackCount: 790673,
exportedAt: 935510,
durationMs: 170920,
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
outputPath | string | ✔️ | Directory containing exported parquet files (S3 prefix or local path) |
completionsFile | string | ✔️ | Path to completions parquet file |
responsesFile | string | ✔️ | Path to responses parquet file |
recordCount | number | ✔️ | Total number of feedback records exported |
completionFeedbackCount | number | ✔️ | Number of chat completion feedback records exported |
responseFeedbackCount | number | ✔️ | Number of response feedback records exported |
exportedAt | number | ✔️ | Unix timestamp (ms) when the export was created |
durationMs | number | ✔️ | Duration of the export in milliseconds |