@magic-ai-tools/ai-api-gateway-client 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/README.md +1 -1
- package/dist/index.d.ts +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -67,45 +67,45 @@ export interface AiApiGatewayClient {
|
|
|
67
67
|
faceSwap(params: FaceSwapParams): Promise<ApiResponse<TaskResponse>>;
|
|
68
68
|
/**
|
|
69
69
|
* Generate an image using CogView-3-Flash model
|
|
70
|
-
*
|
|
70
|
+
* Fast image generation with good quality
|
|
71
71
|
*/
|
|
72
72
|
cogview3Flash(params: Cogview3FlashParams): Promise<ApiResponse<TaskResponse>>;
|
|
73
73
|
/**
|
|
74
74
|
* Generate an image using Z-Image-Turbo model
|
|
75
|
-
*
|
|
75
|
+
* High-quality fast image generation
|
|
76
76
|
*/
|
|
77
77
|
zImageTurbo(params: ZImageTurboParams): Promise<ApiResponse<TaskResponse>>;
|
|
78
78
|
/**
|
|
79
79
|
* Generate an image using Flux-2-Pro model
|
|
80
|
-
*
|
|
81
|
-
*
|
|
80
|
+
* Professional image generation with text-to-image and image-to-image support
|
|
81
|
+
* Provide urls parameter to use image-to-image mode
|
|
82
82
|
*/
|
|
83
83
|
flux2Pro(params: Flux2ProParams): Promise<ApiResponse<TaskResponse>>;
|
|
84
84
|
/**
|
|
85
85
|
* Generate an image using Seedream-v4.5 model
|
|
86
|
-
*
|
|
87
|
-
*
|
|
86
|
+
* High-quality image generation with text-to-image and edit support
|
|
87
|
+
* Provide urls parameter to use edit mode
|
|
88
88
|
*/
|
|
89
89
|
seedream45(params: Seedream45Params): Promise<ApiResponse<TaskResponse>>;
|
|
90
90
|
/**
|
|
91
91
|
* Generate an image using Grok-2-Image model
|
|
92
|
-
*
|
|
92
|
+
* Advanced image generation with Grok
|
|
93
93
|
*/
|
|
94
94
|
grok2Image(params: Grok2ImageParams): Promise<ApiResponse<TaskResponse>>;
|
|
95
95
|
/**
|
|
96
96
|
* Generate an image using Qwen-Image model
|
|
97
|
-
*
|
|
97
|
+
* Text-to-image generation with multiple sizes and advanced parameters
|
|
98
98
|
*/
|
|
99
99
|
qwenImage(params: QwenImageParams): Promise<ApiResponse<TaskResponse>>;
|
|
100
100
|
/**
|
|
101
101
|
* Edit an image using Qwen-Image-Edit model
|
|
102
|
-
*
|
|
102
|
+
* Image editing with multi-image support and precise control
|
|
103
103
|
*/
|
|
104
104
|
qwenImageEdit(params: QwenImageEditParams): Promise<ApiResponse<TaskResponse>>;
|
|
105
105
|
/**
|
|
106
106
|
* Generate or edit an image using Ideogram V3 model
|
|
107
|
-
*
|
|
108
|
-
*
|
|
107
|
+
* Supports text-to-image and edit modes
|
|
108
|
+
* Provide imageUrl and maskUrl to use edit mode for image editing
|
|
109
109
|
*/
|
|
110
110
|
ideogramV3(params: IdeogramV3Params): Promise<ApiResponse<TaskResponse>>;
|
|
111
111
|
/**
|