@gmickel/gno 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,6 +16,7 @@ export interface VectorRow {
16
16
  mirrorHash: string;
17
17
  seq: number;
18
18
  model: string;
19
+ embedFingerprint: string;
19
20
  embedding: Float32Array;
20
21
  // embeddedAt is set by DB via datetime('now')
21
22
  }
@@ -112,12 +113,14 @@ export interface VectorStatsPort {
112
113
  /** Count chunks needing embedding for a model */
113
114
  countBacklog(
114
115
  model: string,
116
+ embedFingerprint: string,
115
117
  options?: { collection?: string }
116
118
  ): Promise<StoreResult<number>>;
117
119
 
118
120
  /** Get chunks needing embedding for a model (seek pagination) */
119
121
  getBacklog(
120
122
  model: string,
123
+ embedFingerprint: string,
121
124
  options?: { limit?: number; after?: BacklogCursor; collection?: string }
122
125
  ): Promise<StoreResult<BacklogItem[]>>;
123
126
  }