/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * tenant_id: "tenant_1234" * } */ export interface EmbeddingsDeleteRequest { /** Unique identifier for the tenant/organization */ tenant_id: string; /** Optional sub-tenant ID for scoping deletion */ sub_tenant_id?: string; /** Optional source ID to delete by (mutually exclusive with chunk_ids) */ source_id?: string; /** Optional list of chunk IDs to delete (mutually exclusive with source_id) */ chunk_ids?: string | string[]; }