clwoz-models
Version:
Models for ConversationLearner
15 lines (14 loc) • 422 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { PredictedEntity } from './Entity';
import { Metrics } from './Metrics';
import { AppDefinition } from './AppDefinition';
export interface ExtractResponse {
text: string;
predictedEntities: PredictedEntity[];
metrics: Metrics;
packageId: string;
definitions: AppDefinition;
}