import { Entry } from '@yuihub/core'; export interface LanceEntry { id: string; vector: number[]; text: string; mode: string; tags: string; session_id: string; source: string; date: string; metadata: string; } /** * Convert Core Entry to LanceDB Entry (without vector) * Vector must be added separately. * Tags are serialized to JSON string. */ export declare function toLanceEntryBase(entry: Entry): Omit; //# sourceMappingURL=schema.d.ts.map