ninegrid2 6.636.0 → 6.638.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.
- package/.idea/vcs.xml +4 -0
- package/dist/ai/aiContainer.js +3 -2
- package/dist/bundle.cjs.js +93901 -446
- package/dist/bundle.esm.js +93898 -443
- package/dist/utils/ninegrid.js +21 -0
- package/package.json +3 -2
- package/src/ai/aiContainer.js +3 -2
- package/src/utils/ninegrid.js +21 -0
package/.idea/vcs.xml
ADDED
package/dist/ai/aiContainer.js
CHANGED
|
@@ -244,6 +244,7 @@ class aiContainer extends HTMLElement
|
|
|
244
244
|
|
|
245
245
|
#q1 = async () => {
|
|
246
246
|
|
|
247
|
+
/**
|
|
247
248
|
const filter = {
|
|
248
249
|
"should": [
|
|
249
250
|
{
|
|
@@ -257,11 +258,11 @@ class aiContainer extends HTMLElement
|
|
|
257
258
|
}
|
|
258
259
|
}
|
|
259
260
|
]
|
|
260
|
-
};
|
|
261
|
+
}; */
|
|
261
262
|
|
|
262
263
|
|
|
263
264
|
|
|
264
|
-
|
|
265
|
+
const filter = await this.#generateQdrantFilter();
|
|
265
266
|
console.log(filter);
|
|
266
267
|
|
|
267
268
|
const searchResults = this.#isEmptyObject(filter) ? [] : ninegrid.filter(this.#getData(), filter);
|