/** * Tool: get_investigation_queries * Gets the detailed query execution logs from the investigation * Use this to see what specific queries were run and their results during the investigation */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetInvestigationQueriesInputSchema: 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 GetInvestigationQueriesInput = z.infer; /** * Get investigation queries for a session */ export declare function getInvestigationQueries(services: ToolServices, args: unknown): Promise; export {};