export interface HandlerInstructionsResponse { /** Collections maps collection name to that collection's own instructions. */ collections?: Record; /** CustomInstructions applies to every document ingested into the database. */ customInstructions?: string; /** Owning database. Formerly `tenant_id`; the `tenant_id` alias is still accepted (deprecated). */ database?: string; /** * TenantID mirrors Database as a deprecated alias, matching every other v2 * tenant response. */ tenantId?: string; }