/**
 * Configuration options for AI agent database integration.
 */
export interface AiAgentDatabaseIntegrationOptions {
    /**
     * A list of collection (or table) name filters that the AI agent can query data from.
     *
     * Currently, the following filters are supported:
     *  - Exact match: Only collection names that exactly match the filter can be used for AI queries. This is case-sensitive.
     *
     * When this list is not provided (i.e., it is `undefined`) or is empty, the AI agent has access to all collections.
     */
    collectionsToUse?: string[];
}
