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.
@@ -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/db60a923bfab0afccee4e478b2ca6666ec75fdb4/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/db60a923bfab0afccee4e478b2ca6666ec75fdb4/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/db60a923bfab0afccee4e478b2ca6666ec75fdb4/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/db60a923bfab0afccee4e478b2ca6666ec75fdb4/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[]> = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencomic-ai-bin",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Upscale and dehalftone images using AI models like Real-CUGAN, Real-ESRGAN, Waifu2x and Upscayl.",
5
5
  "main": "index.mts",
6
6
  "type": "module",