@storecraft/database-turso 1.0.12 → 1.0.13
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/package.json +1 -1
- package/vector-store/index.js +3 -3
package/package.json
CHANGED
package/vector-store/index.js
CHANGED
@@ -190,11 +190,11 @@ export class LibSQLVectorStore {
|
|
190
190
|
);
|
191
191
|
}
|
192
192
|
|
193
|
-
aa;
|
194
193
|
/** @type {VectorStore["similaritySearch"]} */
|
195
194
|
similaritySearch = async (query, k, namespaces) => {
|
196
|
-
console.log({query,k,namespaces})
|
197
|
-
|
195
|
+
// console.log({query,k,namespaces})
|
196
|
+
|
197
|
+
const embedding_result = await this.embedder.generateEmbeddings(
|
198
198
|
{
|
199
199
|
content: [
|
200
200
|
{
|