import type * as ElevenLabs from "../index"; export interface KnowledgeBaseRagToolResultModel { status?: ElevenLabs.KnowledgeBaseRagToolStatus; /** Number of relevant chunks retrieved */ chunkCount?: number; /** Human-readable status for the LLM about the search results */ message?: string; /** Retrieved chunks; populated only in the rag-result-in-tool-result mode */ chunks?: ElevenLabs.KnowledgeBaseRagChunkModel[]; }