@sogni-ai/sogni-client 4.0.0-alpha.8 → 4.0.0-alpha.9

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [4.0.0-alpha.9](https://github.com/Sogni-AI/sogni-client/compare/v4.0.0-alpha.8...v4.0.0-alpha.9) (2025-10-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Hide samplers that are not well tested ([0522bed](https://github.com/Sogni-AI/sogni-client/commit/0522bed6cfad5f8bc9c37d65c30b63b31aa0168a))
7
+
1
8
  # [4.0.0-alpha.8](https://github.com/Sogni-AI/sogni-client/compare/v4.0.0-alpha.7...v4.0.0-alpha.8) (2025-10-17)
2
9
 
3
10
 
package/README.md CHANGED
@@ -290,17 +290,14 @@ Available sampler options:
290
290
 
291
291
  | Option | Description |
292
292
  |-----------------|-------------------------------------|
293
- | `dfs_sd3` | Discrete Flow Scheduler (SD3) |
293
+ | `dfs_sd3` | Discrete Flow Sampler (SD3) |
294
294
  | `dpm_pp` | DPM Solver Multistep (DPM-Solver++) |
295
295
  | `dpm_pp_sde` | DPM++ SDE |
296
296
  | `dpm_pp_2m` | DPM++ 2M |
297
- | `dpm_pp_2m_sde` | DPM++ 2M SDE |
298
297
  | `euler` | Euler |
299
298
  | `euler_a` | Euler a |
300
- | `heun` | Heun |
301
299
  | `lcm` | LCM (Latent Consistency Model) |
302
300
  | `pndm_plms` | PNDM (Pseudo-linear multi-step) |
303
- | `uni_pc` | UniPC |
304
301
 
305
302
  **IMPORTANT:** Sampler compatibility depends on model and network. See [Samplers and Schedulers](https://docs.sogni.ai/sogni-studio/advanced/samplers-and-schedulers) docs for more info.
306
303
 
@@ -3,13 +3,10 @@ export declare const SamplerMap: {
3
3
  dpm_pp: string;
4
4
  dpm_pp_sde: string;
5
5
  dpm_pp_2m: string;
6
- dpm_pp_2m_sde: string;
7
6
  euler: string;
8
7
  euler_a: string;
9
- heun: string;
10
8
  lcm: string;
11
9
  pndm_plms: string;
12
- uni_pc: string;
13
10
  };
14
11
  export declare function isSampler(sampler: string): sampler is Sampler;
15
12
  export type Sampler = keyof typeof SamplerMap;
@@ -7,13 +7,13 @@ exports.SamplerMap = {
7
7
  dpm_pp: 'DPM Solver Multistep (DPM-Solver++)',
8
8
  dpm_pp_sde: 'DPM++ SDE',
9
9
  dpm_pp_2m: 'DPM++ 2M',
10
- dpm_pp_2m_sde: 'DPM++ 2M SDE',
10
+ //dpm_pp_2m_sde: 'DPM++ 2M SDE',
11
11
  euler: 'Euler',
12
12
  euler_a: 'Euler a',
13
- heun: 'Heun',
13
+ //heun: 'Heun',
14
14
  lcm: 'LCM (Latent Consistency Model)',
15
- pndm_plms: 'PNDM (Pseudo-linear multi-step)',
16
- uni_pc: 'UniPC'
15
+ pndm_plms: 'PNDM (Pseudo-linear multi-step)'
16
+ //uni_pc: 'UniPC'
17
17
  };
18
18
  function isSampler(sampler) {
19
19
  return sampler in exports.SamplerMap;
@@ -1 +1 @@
1
- {"version":3,"file":"SamplerParams.js","sourceRoot":"","sources":["../../../src/Projects/types/SamplerParams.ts"],"names":[],"mappings":";;;AAcA,8BAEC;AAhBY,QAAA,UAAU,GAAG;IACxB,OAAO,EAAE,+BAA+B;IACxC,MAAM,EAAE,qCAAqC;IAC7C,UAAU,EAAE,WAAW;IACvB,SAAS,EAAE,UAAU;IACrB,aAAa,EAAE,cAAc;IAC7B,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,gCAAgC;IACrC,SAAS,EAAE,iCAAiC;IAC5C,MAAM,EAAE,OAAO;CAChB,CAAC;AAEF,SAAgB,SAAS,CAAC,OAAe;IACvC,OAAO,OAAO,IAAI,kBAAU,CAAC;AAC/B,CAAC"}
1
+ {"version":3,"file":"SamplerParams.js","sourceRoot":"","sources":["../../../src/Projects/types/SamplerParams.ts"],"names":[],"mappings":";;;AAcA,8BAEC;AAhBY,QAAA,UAAU,GAAG;IACxB,OAAO,EAAE,+BAA+B;IACxC,MAAM,EAAE,qCAAqC;IAC7C,UAAU,EAAE,WAAW;IACvB,SAAS,EAAE,UAAU;IACrB,gCAAgC;IAChC,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,eAAe;IACf,GAAG,EAAE,gCAAgC;IACrC,SAAS,EAAE,iCAAiC;IAC5C,iBAAiB;CAClB,CAAC;AAEF,SAAgB,SAAS,CAAC,OAAe;IACvC,OAAO,OAAO,IAAI,kBAAU,CAAC;AAC/B,CAAC"}
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "4.0.0-alpha.8",
6
+ "version": "4.0.0-alpha.9",
7
7
  "description": "Sogni Supernet Client",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
@@ -3,13 +3,13 @@ export const SamplerMap = {
3
3
  dpm_pp: 'DPM Solver Multistep (DPM-Solver++)',
4
4
  dpm_pp_sde: 'DPM++ SDE',
5
5
  dpm_pp_2m: 'DPM++ 2M',
6
- dpm_pp_2m_sde: 'DPM++ 2M SDE',
6
+ //dpm_pp_2m_sde: 'DPM++ 2M SDE',
7
7
  euler: 'Euler',
8
8
  euler_a: 'Euler a',
9
- heun: 'Heun',
9
+ //heun: 'Heun',
10
10
  lcm: 'LCM (Latent Consistency Model)',
11
- pndm_plms: 'PNDM (Pseudo-linear multi-step)',
12
- uni_pc: 'UniPC'
11
+ pndm_plms: 'PNDM (Pseudo-linear multi-step)'
12
+ //uni_pc: 'UniPC'
13
13
  };
14
14
 
15
15
  export function isSampler(sampler: string): sampler is Sampler {