@sogni-ai/sogni-client 3.1.0 → 3.1.1
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 +7 -0
- package/dist/Projects/types/index.d.ts +2 -29
- package/package.json +1 -1
- package/src/Projects/types/index.ts +3 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.1.1](https://github.com/Sogni-AI/sogni-client/compare/v3.1.0...v3.1.1) (2025-08-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add new schedulers and time step spacing values ([fe5e79e](https://github.com/Sogni-AI/sogni-client/commit/fe5e79eff117c9bfc4b9ef0afdaf4eb9eb759755))
|
|
7
|
+
|
|
1
8
|
# [3.1.0](https://github.com/Sogni-AI/sogni-client/compare/v3.0.1...v3.1.0) (2025-08-07)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -19,35 +19,8 @@ export interface SizePreset {
|
|
|
19
19
|
ratio: string;
|
|
20
20
|
aspect: string;
|
|
21
21
|
}
|
|
22
|
-
export
|
|
23
|
-
|
|
24
|
-
modelShortName: string;
|
|
25
|
-
isIOSslowest: boolean;
|
|
26
|
-
hasOriginalVersionOnly: boolean;
|
|
27
|
-
isUserModel: boolean;
|
|
28
|
-
isTurboXL: boolean;
|
|
29
|
-
isRealistic: boolean;
|
|
30
|
-
isArtistic: boolean;
|
|
31
|
-
tier: string;
|
|
32
|
-
splitAttentionSuffix: string;
|
|
33
|
-
isSD3XL: boolean;
|
|
34
|
-
originalAttentionSuffix: string;
|
|
35
|
-
isLCM: boolean;
|
|
36
|
-
zipWeight: number;
|
|
37
|
-
modelId: string;
|
|
38
|
-
modelVersion: string;
|
|
39
|
-
parentId: string;
|
|
40
|
-
quantized: boolean;
|
|
41
|
-
isXL: boolean;
|
|
42
|
-
splitAttentionV2Suffix: string;
|
|
43
|
-
supportsAttentionV2: boolean;
|
|
44
|
-
supportsControlNet: boolean;
|
|
45
|
-
supportsEncoder: boolean;
|
|
46
|
-
onlySplitEinsumV2available: boolean;
|
|
47
|
-
customSize?: number[];
|
|
48
|
-
}
|
|
49
|
-
export type Scheduler = 'DPM Solver Multistep (DPM-Solver++)' | 'PNDM (Pseudo-linear multi-step)' | 'LCM (Latent Consistency Model)' | 'Discrete Flow Scheduler (SD3)' | 'Euler';
|
|
50
|
-
export type TimeStepSpacing = 'Karras' | 'Leading' | 'Linear';
|
|
22
|
+
export type Scheduler = 'DPM Solver Multistep (DPM-Solver++)' | 'PNDM (Pseudo-linear multi-step)' | 'LCM (Latent Consistency Model)' | 'Discrete Flow Scheduler (SD3)' | 'Euler' | 'Euler a';
|
|
23
|
+
export type TimeStepSpacing = 'Leading' | 'Linear' | 'Karras' | 'Simple' | 'SGM Uniform';
|
|
51
24
|
export interface ProjectParams {
|
|
52
25
|
/**
|
|
53
26
|
* ID of the model to use, available models are available in the `availableModels` property of the `ProjectsApi` instance.
|
package/package.json
CHANGED
|
@@ -23,42 +23,15 @@ export interface SizePreset {
|
|
|
23
23
|
aspect: string;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
export interface AiModel {
|
|
27
|
-
isSD3: boolean;
|
|
28
|
-
modelShortName: string;
|
|
29
|
-
isIOSslowest: boolean;
|
|
30
|
-
hasOriginalVersionOnly: boolean;
|
|
31
|
-
isUserModel: boolean;
|
|
32
|
-
isTurboXL: boolean;
|
|
33
|
-
isRealistic: boolean;
|
|
34
|
-
isArtistic: boolean;
|
|
35
|
-
tier: string;
|
|
36
|
-
splitAttentionSuffix: string;
|
|
37
|
-
isSD3XL: boolean;
|
|
38
|
-
originalAttentionSuffix: string;
|
|
39
|
-
isLCM: boolean;
|
|
40
|
-
zipWeight: number;
|
|
41
|
-
modelId: string;
|
|
42
|
-
modelVersion: string;
|
|
43
|
-
parentId: string;
|
|
44
|
-
quantized: boolean;
|
|
45
|
-
isXL: boolean;
|
|
46
|
-
splitAttentionV2Suffix: string;
|
|
47
|
-
supportsAttentionV2: boolean;
|
|
48
|
-
supportsControlNet: boolean;
|
|
49
|
-
supportsEncoder: boolean;
|
|
50
|
-
onlySplitEinsumV2available: boolean;
|
|
51
|
-
customSize?: number[];
|
|
52
|
-
}
|
|
53
|
-
|
|
54
26
|
export type Scheduler =
|
|
55
27
|
| 'DPM Solver Multistep (DPM-Solver++)'
|
|
56
28
|
| 'PNDM (Pseudo-linear multi-step)'
|
|
57
29
|
| 'LCM (Latent Consistency Model)'
|
|
58
30
|
| 'Discrete Flow Scheduler (SD3)'
|
|
59
|
-
| 'Euler'
|
|
31
|
+
| 'Euler' // Used by Flux
|
|
32
|
+
| 'Euler a'; // Used by Flux
|
|
60
33
|
|
|
61
|
-
export type TimeStepSpacing = 'Karras' | '
|
|
34
|
+
export type TimeStepSpacing = 'Leading' | 'Linear' | 'Karras' | 'Simple' | 'SGM Uniform';
|
|
62
35
|
|
|
63
36
|
export interface ProjectParams {
|
|
64
37
|
/**
|