@civitai/client 0.2.0-beta.68 → 0.2.0-beta.69
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.
|
@@ -615,6 +615,8 @@ export {
|
|
|
615
615
|
type LightricksVideoGenInput,
|
|
616
616
|
type Ltx23AiToolkitTrainingInput,
|
|
617
617
|
type Ltx2AiToolkitTrainingInput,
|
|
618
|
+
type MaiImageCreateFalImageGenInput,
|
|
619
|
+
type MaiImageFalImageGenInput,
|
|
618
620
|
type MediaCaptioningInput,
|
|
619
621
|
type MediaCaptioningOutput,
|
|
620
622
|
type MediaCaptioningStep,
|
|
@@ -3519,6 +3519,33 @@ export type Ltx2AiToolkitTrainingInput = Omit<AiToolkitTrainingInput, 'engine' |
|
|
|
3519
3519
|
ecosystem: 'ltx2';
|
|
3520
3520
|
engine: 'ai-toolkit';
|
|
3521
3521
|
};
|
|
3522
|
+
export type MaiImageCreateFalImageGenInput = Omit<
|
|
3523
|
+
MaiImageFalImageGenInput,
|
|
3524
|
+
'engine' | 'model' | 'operation'
|
|
3525
|
+
> & {
|
|
3526
|
+
operation: 'createImage';
|
|
3527
|
+
model: 'maiImage';
|
|
3528
|
+
engine: 'fal';
|
|
3529
|
+
};
|
|
3530
|
+
export type MaiImageFalImageGenInput = Omit<FalImageGenInput, 'engine' | 'model'> & {
|
|
3531
|
+
operation: string;
|
|
3532
|
+
prompt: string;
|
|
3533
|
+
aspectRatio?:
|
|
3534
|
+
| 'auto'
|
|
3535
|
+
| '21:9'
|
|
3536
|
+
| '16:9'
|
|
3537
|
+
| '3:2'
|
|
3538
|
+
| '4:3'
|
|
3539
|
+
| '5:4'
|
|
3540
|
+
| '1:1'
|
|
3541
|
+
| '4:5'
|
|
3542
|
+
| '3:4'
|
|
3543
|
+
| '2:3'
|
|
3544
|
+
| '9:16';
|
|
3545
|
+
quantity?: number;
|
|
3546
|
+
model: 'maiImage';
|
|
3547
|
+
engine: 'fal';
|
|
3548
|
+
};
|
|
3522
3549
|
/**
|
|
3523
3550
|
* Represents the input information needed for the MediaCaptioning workflow step.
|
|
3524
3551
|
*/
|