pinokiod 3.224.0 → 3.226.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/kernel/bin/huggingface.js +2 -0
- package/kernel/bin/index.js +2 -0
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@ class Huggingface {
|
|
|
14
14
|
}
|
|
15
15
|
async installed() {
|
|
16
16
|
if (this.kernel.bin.installed.conda.has("huggingface_hub")) {
|
|
17
|
+
console.log("> hugginface this.installed conda", this.kernel.bin.installed.conda)
|
|
18
|
+
console.log("> hugginface this.installed installed", this.kernel.bin.installed)
|
|
17
19
|
let version = this.kernel.bin.installed.conda_versions.huggingface_hub
|
|
18
20
|
if (version) {
|
|
19
21
|
let coerced = semver.coerce(version)
|
package/kernel/bin/index.js
CHANGED
|
@@ -396,6 +396,8 @@ class Bin {
|
|
|
396
396
|
}
|
|
397
397
|
this.installed.conda = conda
|
|
398
398
|
this.installed.conda_versions = conda_versions
|
|
399
|
+
console.log("1 this.installed.conda", this.installed.conda)
|
|
400
|
+
console.log("1 this.installed.conda_versions", this.installed.conda_versions)
|
|
399
401
|
}
|
|
400
402
|
async refreshInstalled() {
|
|
401
403
|
|