import type * as ElevenLabs from "../index"; export interface AgentKnowledgeBaseRagQueryResponseModel { /** Raw query used for retrieval (echoes the request query). */ retrievalQuery: string; /** Ranked chunks the agent would retrieve, after distance and length filtering. */ chunks: ElevenLabs.AgentKnowledgeBaseRagChunkResponseModel[]; }