/** * Tool: get_rca * Gets the comprehensive Root Cause Analysis (RCA) for a session * This returns a formatted analysis including RCA, timeline, corrective actions, and time savings */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetRCAInputSchema: z.ZodObject<{ session_uuid: z.ZodString; project_uuid: z.ZodOptional; }, "strip", z.ZodTypeAny, { session_uuid: string; project_uuid?: string | undefined; }, { session_uuid: string; project_uuid?: string | undefined; }>; export type GetRCAInput = z.infer; /** * Get comprehensive RCA (Root Cause Analysis) summary for a session * This uses the /v1/inference/session/summary endpoint which returns: * - Formatted analysis with RCA, timeline, and corrective actions * - Time savings metrics * - Quality scores * - Sources involved */ export declare function getRCA(services: ToolServices, args: unknown): Promise; export {};