opencomic-ai-bin 1.0.4 → 1.0.5
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/calculate-latency.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/index.mts +1 -1
- package/package.json +1 -1
|
@@ -522,7 +522,7 @@ models = {
|
|
|
522
522
|
'artifact-removal': parseModels(models['artifact-removal'], 'artifact-removal'),
|
|
523
523
|
};
|
|
524
524
|
const DEFAULT_MODEL = 'realcugan';
|
|
525
|
-
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/
|
|
525
|
+
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/476007f6e316c7471173af573d0e1ec7e6a941e1/models/';
|
|
526
526
|
const modelsList = [...Object.keys(models.upscale), ...Object.keys(models.descreen), ...Object.keys(models['artifact-removal'])];
|
|
527
527
|
const modelsTypeList = {
|
|
528
528
|
upscale: Object.keys(models.upscale),
|
package/dist/index.cjs
CHANGED
|
@@ -524,7 +524,7 @@ models = {
|
|
|
524
524
|
'artifact-removal': parseModels(models['artifact-removal'], 'artifact-removal'),
|
|
525
525
|
};
|
|
526
526
|
const DEFAULT_MODEL = 'realcugan';
|
|
527
|
-
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/
|
|
527
|
+
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/476007f6e316c7471173af573d0e1ec7e6a941e1/models/';
|
|
528
528
|
const modelsList = [...Object.keys(models.upscale), ...Object.keys(models.descreen), ...Object.keys(models['artifact-removal'])];
|
|
529
529
|
const modelsTypeList = {
|
|
530
530
|
upscale: Object.keys(models.upscale),
|
package/dist/index.mjs
CHANGED
|
@@ -522,7 +522,7 @@ models = {
|
|
|
522
522
|
'artifact-removal': parseModels(models['artifact-removal'], 'artifact-removal'),
|
|
523
523
|
};
|
|
524
524
|
const DEFAULT_MODEL = 'realcugan';
|
|
525
|
-
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/
|
|
525
|
+
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/476007f6e316c7471173af573d0e1ec7e6a941e1/models/';
|
|
526
526
|
const modelsList = [...Object.keys(models.upscale), ...Object.keys(models.descreen), ...Object.keys(models['artifact-removal'])];
|
|
527
527
|
const modelsTypeList = {
|
|
528
528
|
upscale: Object.keys(models.upscale),
|
package/index.mts
CHANGED
|
@@ -599,7 +599,7 @@ export interface Downloading {
|
|
|
599
599
|
}
|
|
600
600
|
|
|
601
601
|
const DEFAULT_MODEL: Model = 'realcugan';
|
|
602
|
-
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/
|
|
602
|
+
const DOWNLOADING_URL = 'https://raw.githubusercontent.com/ollm/opencomic-ai-models/476007f6e316c7471173af573d0e1ec7e6a941e1/models/';
|
|
603
603
|
|
|
604
604
|
const modelsList: Model[] = [...Object.keys(models.upscale) as Model[], ...Object.keys(models.descreen) as Model[], ...Object.keys(models['artifact-removal']) as Model[]];
|
|
605
605
|
const modelsTypeList: Record<ModelType, Model[]> = {
|