export interface AgentKnowledgeBaseRagQueryRequestModel { /** Query to run against the agent's knowledge base RAG index. */ query: string; /** When true (the default), retrieval uses the agent's own RAG settings, reproducing exactly what the agent would retrieve. Set to false to retrieve with neutral default RAG settings instead (the agent's embedding model is always kept, since it determines which vector index exists). Useful for auditing the knowledge base independently of how a particular agent is tuned. */ useAgentDefaults?: boolean; }