ide-assi 0.54.0 → 0.55.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/dist/bundle.cjs.js
CHANGED
|
@@ -189632,7 +189632,7 @@ const ClientVersion = {
|
|
|
189632
189632
|
},
|
|
189633
189633
|
};
|
|
189634
189634
|
|
|
189635
|
-
|
|
189635
|
+
class QdrantClient {
|
|
189636
189636
|
constructor({ url, host, apiKey, https, prefix, port = 6333, timeout = 300000, checkCompatibility = true, ...args } = {}) {
|
|
189637
189637
|
this._https = https ?? typeof apiKey === 'string';
|
|
189638
189638
|
this._scheme = this._https ? 'https' : 'http';
|
|
@@ -191220,7 +191220,7 @@ let QdrantClient$1 = class QdrantClient {
|
|
|
191220
191220
|
});
|
|
191221
191221
|
return maybe(response.data.result).orThrow('Search points matrix offsets returned empty');
|
|
191222
191222
|
}
|
|
191223
|
-
}
|
|
191223
|
+
}
|
|
191224
191224
|
|
|
191225
191225
|
// Default generic "any" values are for backwards compatibility.
|
|
191226
191226
|
// Replace with "string" when we are comfortable with a breaking change.
|
|
@@ -192735,7 +192735,7 @@ class aiContainer extends HTMLElement
|
|
|
192735
192735
|
break;
|
|
192736
192736
|
}
|
|
192737
192737
|
|
|
192738
|
-
this.#qdrantClient = new QdrantClient
|
|
192738
|
+
this.#qdrantClient = new QdrantClient({ url: this.settings.qdrantUrl });
|
|
192739
192739
|
};
|
|
192740
192740
|
|
|
192741
192741
|
#getColumnInfo = () => {
|
|
@@ -193488,7 +193488,7 @@ class IdeAssi extends HTMLElement
|
|
|
193488
193488
|
break;
|
|
193489
193489
|
}
|
|
193490
193490
|
|
|
193491
|
-
this.#qdrantClient = new QdrantClient({ url: this.settings.qdrantUrl });
|
|
193491
|
+
//this.#qdrantClient = new QdrantClient({ url: this.settings.qdrantUrl });
|
|
193492
193492
|
};
|
|
193493
193493
|
|
|
193494
193494
|
#keydownHandler = async (e) => {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -189628,7 +189628,7 @@ const ClientVersion = {
|
|
|
189628
189628
|
},
|
|
189629
189629
|
};
|
|
189630
189630
|
|
|
189631
|
-
|
|
189631
|
+
class QdrantClient {
|
|
189632
189632
|
constructor({ url, host, apiKey, https, prefix, port = 6333, timeout = 300000, checkCompatibility = true, ...args } = {}) {
|
|
189633
189633
|
this._https = https ?? typeof apiKey === 'string';
|
|
189634
189634
|
this._scheme = this._https ? 'https' : 'http';
|
|
@@ -191216,7 +191216,7 @@ let QdrantClient$1 = class QdrantClient {
|
|
|
191216
191216
|
});
|
|
191217
191217
|
return maybe(response.data.result).orThrow('Search points matrix offsets returned empty');
|
|
191218
191218
|
}
|
|
191219
|
-
}
|
|
191219
|
+
}
|
|
191220
191220
|
|
|
191221
191221
|
// Default generic "any" values are for backwards compatibility.
|
|
191222
191222
|
// Replace with "string" when we are comfortable with a breaking change.
|
|
@@ -192731,7 +192731,7 @@ class aiContainer extends HTMLElement
|
|
|
192731
192731
|
break;
|
|
192732
192732
|
}
|
|
192733
192733
|
|
|
192734
|
-
this.#qdrantClient = new QdrantClient
|
|
192734
|
+
this.#qdrantClient = new QdrantClient({ url: this.settings.qdrantUrl });
|
|
192735
192735
|
};
|
|
192736
192736
|
|
|
192737
192737
|
#getColumnInfo = () => {
|
|
@@ -193484,7 +193484,7 @@ class IdeAssi extends HTMLElement
|
|
|
193484
193484
|
break;
|
|
193485
193485
|
}
|
|
193486
193486
|
|
|
193487
|
-
this.#qdrantClient = new QdrantClient({ url: this.settings.qdrantUrl });
|
|
193487
|
+
//this.#qdrantClient = new QdrantClient({ url: this.settings.qdrantUrl });
|
|
193488
193488
|
};
|
|
193489
193489
|
|
|
193490
193490
|
#keydownHandler = async (e) => {
|
package/package.json
CHANGED