/** * Tool: get_investigation_sources * Gets the data sources that were consulted during the investigation * Use this to understand what logs, metrics, configs, etc. were examined */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetInvestigationSourcesInputSchema: z.ZodObject<{ session_uuid: z.ZodString; prompt_cycle_id: z.ZodOptional; project_uuid: z.ZodOptional; organization_uuid: z.ZodOptional; }, "strip", z.ZodTypeAny, { session_uuid: string; project_uuid?: string | undefined; organization_uuid?: string | undefined; prompt_cycle_id?: string | undefined; }, { session_uuid: string; project_uuid?: string | undefined; organization_uuid?: string | undefined; prompt_cycle_id?: string | undefined; }>; export type GetInvestigationSourcesInput = z.infer; /** * Get investigation sources for a session */ export declare function getInvestigationSources(services: ToolServices, args: unknown): Promise; export {};