/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ChatAnalysis */ export interface ChatAnalysis { /** * Chat identifier * @type {string} * @memberof ChatAnalysis */ id: string; /** * Chat title * @type {string} * @memberof ChatAnalysis */ title: string; /** * AI-generated summary of the chat * @type {string} * @memberof ChatAnalysis */ summary: string | null; /** * Inferred goal of the chat * @type {string} * @memberof ChatAnalysis */ goal: string | null; /** * Whether the goal was achieved * @type {boolean} * @memberof ChatAnalysis */ goalAchieved: boolean | null; /** * Subject name associated with the chat * @type {string} * @memberof ChatAnalysis */ subject: string | null; /** * Concept names extracted from the chat * @type {Array} * @memberof ChatAnalysis */ concepts: Array; } /** * Check if a given object implements the ChatAnalysis interface. */ export declare function instanceOfChatAnalysis(value: object): value is ChatAnalysis; export declare function ChatAnalysisFromJSON(json: any): ChatAnalysis; export declare function ChatAnalysisFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatAnalysis; export declare function ChatAnalysisToJSON(json: any): ChatAnalysis; export declare function ChatAnalysisToJSONTyped(value?: ChatAnalysis | null, ignoreDiscriminator?: boolean): any;