diff options
| author | Dhravya Shah <[email protected]> | 2025-01-27 21:02:43 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-01-27 21:02:43 -0700 |
| commit | d2bf8d6623368f9ee1abb7d9add237fe6d003f1c (patch) | |
| tree | 8f98c0793c62c177a45e6ad156b2bad872d6e474 /packages | |
| parent | change embedding model (diff) | |
| download | supermemory-d2bf8d6623368f9ee1abb7d9add237fe6d003f1c.tar.xz supermemory-d2bf8d6623368f9ee1abb7d9add237fe6d003f1c.zip | |
change embedding model
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/db/schema.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts index a2f24b06..969e93fd 100644 --- a/packages/db/schema.ts +++ b/packages/db/schema.ts @@ -215,7 +215,7 @@ export const chunk = pgTable( .notNull(), textContent: text("text_content"), orderInDocument: integer("order_in_document").notNull(), - embeddings: vector("embeddings", { dimensions: 1536 }), + embeddings: vector("embeddings", { dimensions: 768 }), metadata: jsonb("metadata").$type<Metadata>(), createdAt: timestamp("created_at", { withTimezone: true }) .notNull() |