/** * Tool: inspect_session * Gets session metadata including session info and prompt cycle IDs (without detailed content) * For detailed investigation data, use the specific tools: * - get_rca: Get the RCA summary * - get_chain_of_thought: Get investigation reasoning * - get_investigation_queries: Get query logs * - get_investigation_sources: Get data sources * - get_follow_up_suggestions: Get suggested questions */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const InspectSessionInputSchema: z.ZodObject<{ session_uuid: z.ZodString; project_uuid: z.ZodOptional; organization_uuid: z.ZodOptional; }, "strip", z.ZodTypeAny, { session_uuid: string; project_uuid?: string | undefined; organization_uuid?: string | undefined; }, { session_uuid: string; project_uuid?: string | undefined; organization_uuid?: string | undefined; }>; export type InspectSessionInput = z.infer; /** * Inspect session to get detailed information */ export declare function inspectSession(services: ToolServices, args: unknown): Promise; export {};