@atscript/db 0.1.77 → 0.1.79

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.
package/dist/plugin.cjs CHANGED
@@ -723,12 +723,18 @@ const dbSearchAnnotations = { search: {
723
723
  type: "number",
724
724
  description: "The **number of dimensions in the vector** (must match your embedding model output).",
725
725
  values: [
726
+ "256",
727
+ "384",
726
728
  "512",
727
729
  "768",
728
730
  "1024",
729
731
  "1536",
732
+ "2048",
730
733
  "3072",
731
- "4096"
734
+ "4096",
735
+ "6144",
736
+ "8192",
737
+ "16384"
732
738
  ]
733
739
  },
734
740
  {
package/dist/plugin.mjs CHANGED
@@ -719,12 +719,18 @@ const dbSearchAnnotations = { search: {
719
719
  type: "number",
720
720
  description: "The **number of dimensions in the vector** (must match your embedding model output).",
721
721
  values: [
722
+ "256",
723
+ "384",
722
724
  "512",
723
725
  "768",
724
726
  "1024",
725
727
  "1536",
728
+ "2048",
726
729
  "3072",
727
- "4096"
730
+ "4096",
731
+ "6144",
732
+ "8192",
733
+ "16384"
728
734
  ]
729
735
  },
730
736
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atscript/db",
3
- "version": "0.1.77",
3
+ "version": "0.1.79",
4
4
  "description": "Database adapter utilities for atscript.",
5
5
  "keywords": [
6
6
  "atscript",
@@ -71,14 +71,14 @@
71
71
  "access": "public"
72
72
  },
73
73
  "devDependencies": {
74
- "@atscript/core": "^0.1.55",
75
- "@atscript/typescript": "^0.1.55",
74
+ "@atscript/core": "^0.1.56",
75
+ "@atscript/typescript": "^0.1.56",
76
76
  "@uniqu/core": "^0.1.6",
77
- "unplugin-atscript": "^0.1.55"
77
+ "unplugin-atscript": "^0.1.56"
78
78
  },
79
79
  "peerDependencies": {
80
- "@atscript/core": "^0.1.55",
81
- "@atscript/typescript": "^0.1.55",
80
+ "@atscript/core": "^0.1.56",
81
+ "@atscript/typescript": "^0.1.56",
82
82
  "@uniqu/core": "^0.1.6"
83
83
  },
84
84
  "scripts": {