/** * 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. */ import * as runtime from '../runtime'; import type { ChatAnalysis } from '../models/index'; export interface GetChatAnalysisRequest { chatId: string; xUserId: string; } /** * */ export declare class ChatAnalysisApi extends runtime.BaseAPI { /** * Returns the analysis results for a chat, including subject, concepts, summary, and goal evaluation. * Get chat analysis */ getChatAnalysisRaw(requestParameters: GetChatAnalysisRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns the analysis results for a chat, including subject, concepts, summary, and goal evaluation. * Get chat analysis */ getChatAnalysis(requestParameters: GetChatAnalysisRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }