@alicloud/quanmiaolightapp20240801 2.4.1 → 2.5.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/dist/client.d.ts +537 -0
- package/dist/client.js +790 -31
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1182 -92
package/dist/client.d.ts
CHANGED
|
@@ -142,6 +142,131 @@ export declare class GenerateOutputFormatResponseBodyData extends $dara.Model {
|
|
|
142
142
|
[key: string]: any;
|
|
143
143
|
});
|
|
144
144
|
}
|
|
145
|
+
export declare class GetTagMiningAnalysisTaskResponseBodyDataResultsHeader extends $dara.Model {
|
|
146
|
+
/**
|
|
147
|
+
* @example
|
|
148
|
+
* DataNotExists
|
|
149
|
+
*/
|
|
150
|
+
errorCode?: string;
|
|
151
|
+
errorMessage?: string;
|
|
152
|
+
/**
|
|
153
|
+
* @example
|
|
154
|
+
* task-finished
|
|
155
|
+
*/
|
|
156
|
+
event?: string;
|
|
157
|
+
/**
|
|
158
|
+
* @example
|
|
159
|
+
* 085BE2D2-BB7E-59A6-B688-F2CB32124E7F
|
|
160
|
+
*/
|
|
161
|
+
requestId?: string;
|
|
162
|
+
static names(): {
|
|
163
|
+
[key: string]: string;
|
|
164
|
+
};
|
|
165
|
+
static types(): {
|
|
166
|
+
[key: string]: any;
|
|
167
|
+
};
|
|
168
|
+
validate(): void;
|
|
169
|
+
constructor(map?: {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
export declare class GetTagMiningAnalysisTaskResponseBodyDataResultsPayloadOutput extends $dara.Model {
|
|
174
|
+
/**
|
|
175
|
+
* @example
|
|
176
|
+
* xxxx
|
|
177
|
+
*/
|
|
178
|
+
text?: string;
|
|
179
|
+
static names(): {
|
|
180
|
+
[key: string]: string;
|
|
181
|
+
};
|
|
182
|
+
static types(): {
|
|
183
|
+
[key: string]: any;
|
|
184
|
+
};
|
|
185
|
+
validate(): void;
|
|
186
|
+
constructor(map?: {
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
export declare class GetTagMiningAnalysisTaskResponseBodyDataResultsPayloadUsage extends $dara.Model {
|
|
191
|
+
/**
|
|
192
|
+
* @example
|
|
193
|
+
* 100
|
|
194
|
+
*/
|
|
195
|
+
inputToken?: number;
|
|
196
|
+
/**
|
|
197
|
+
* @example
|
|
198
|
+
* 200
|
|
199
|
+
*/
|
|
200
|
+
outputToken?: number;
|
|
201
|
+
/**
|
|
202
|
+
* @example
|
|
203
|
+
* 300
|
|
204
|
+
*/
|
|
205
|
+
totalToken?: number;
|
|
206
|
+
static names(): {
|
|
207
|
+
[key: string]: string;
|
|
208
|
+
};
|
|
209
|
+
static types(): {
|
|
210
|
+
[key: string]: any;
|
|
211
|
+
};
|
|
212
|
+
validate(): void;
|
|
213
|
+
constructor(map?: {
|
|
214
|
+
[key: string]: any;
|
|
215
|
+
});
|
|
216
|
+
}
|
|
217
|
+
export declare class GetTagMiningAnalysisTaskResponseBodyDataResultsPayload extends $dara.Model {
|
|
218
|
+
output?: GetTagMiningAnalysisTaskResponseBodyDataResultsPayloadOutput;
|
|
219
|
+
usage?: GetTagMiningAnalysisTaskResponseBodyDataResultsPayloadUsage;
|
|
220
|
+
static names(): {
|
|
221
|
+
[key: string]: string;
|
|
222
|
+
};
|
|
223
|
+
static types(): {
|
|
224
|
+
[key: string]: any;
|
|
225
|
+
};
|
|
226
|
+
validate(): void;
|
|
227
|
+
constructor(map?: {
|
|
228
|
+
[key: string]: any;
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
export declare class GetTagMiningAnalysisTaskResponseBodyDataResults extends $dara.Model {
|
|
232
|
+
/**
|
|
233
|
+
* @example
|
|
234
|
+
* 1
|
|
235
|
+
*/
|
|
236
|
+
customId?: string;
|
|
237
|
+
header?: GetTagMiningAnalysisTaskResponseBodyDataResultsHeader;
|
|
238
|
+
payload?: GetTagMiningAnalysisTaskResponseBodyDataResultsPayload;
|
|
239
|
+
static names(): {
|
|
240
|
+
[key: string]: string;
|
|
241
|
+
};
|
|
242
|
+
static types(): {
|
|
243
|
+
[key: string]: any;
|
|
244
|
+
};
|
|
245
|
+
validate(): void;
|
|
246
|
+
constructor(map?: {
|
|
247
|
+
[key: string]: any;
|
|
248
|
+
});
|
|
249
|
+
}
|
|
250
|
+
export declare class GetTagMiningAnalysisTaskResponseBodyData extends $dara.Model {
|
|
251
|
+
errorCode?: string;
|
|
252
|
+
errorMessage?: string;
|
|
253
|
+
results?: GetTagMiningAnalysisTaskResponseBodyDataResults[];
|
|
254
|
+
/**
|
|
255
|
+
* @example
|
|
256
|
+
* RUNNIN
|
|
257
|
+
*/
|
|
258
|
+
status?: string;
|
|
259
|
+
static names(): {
|
|
260
|
+
[key: string]: string;
|
|
261
|
+
};
|
|
262
|
+
static types(): {
|
|
263
|
+
[key: string]: any;
|
|
264
|
+
};
|
|
265
|
+
validate(): void;
|
|
266
|
+
constructor(map?: {
|
|
267
|
+
[key: string]: any;
|
|
268
|
+
});
|
|
269
|
+
}
|
|
145
270
|
export declare class GetVideoAnalysisConfigResponseBodyData extends $dara.Model {
|
|
146
271
|
/**
|
|
147
272
|
* @example
|
|
@@ -368,6 +493,10 @@ export declare class GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoGener
|
|
|
368
493
|
* true
|
|
369
494
|
*/
|
|
370
495
|
generateFinished?: boolean;
|
|
496
|
+
index?: number;
|
|
497
|
+
modelId?: string;
|
|
498
|
+
modelReduce?: boolean;
|
|
499
|
+
reasonText?: string;
|
|
371
500
|
/**
|
|
372
501
|
* @example
|
|
373
502
|
* xxx
|
|
@@ -385,6 +514,39 @@ export declare class GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoGener
|
|
|
385
514
|
[key: string]: any;
|
|
386
515
|
});
|
|
387
516
|
}
|
|
517
|
+
export declare class GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoGenerateResultsUsage extends $dara.Model {
|
|
518
|
+
inputTokens?: number;
|
|
519
|
+
outputTokens?: number;
|
|
520
|
+
totalTokens?: number;
|
|
521
|
+
static names(): {
|
|
522
|
+
[key: string]: string;
|
|
523
|
+
};
|
|
524
|
+
static types(): {
|
|
525
|
+
[key: string]: any;
|
|
526
|
+
};
|
|
527
|
+
validate(): void;
|
|
528
|
+
constructor(map?: {
|
|
529
|
+
[key: string]: any;
|
|
530
|
+
});
|
|
531
|
+
}
|
|
532
|
+
export declare class GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoGenerateResults extends $dara.Model {
|
|
533
|
+
generateFinished?: boolean;
|
|
534
|
+
index?: number;
|
|
535
|
+
modelId?: string;
|
|
536
|
+
reasonText?: string;
|
|
537
|
+
text?: string;
|
|
538
|
+
usage?: GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoGenerateResultsUsage;
|
|
539
|
+
static names(): {
|
|
540
|
+
[key: string]: string;
|
|
541
|
+
};
|
|
542
|
+
static types(): {
|
|
543
|
+
[key: string]: any;
|
|
544
|
+
};
|
|
545
|
+
validate(): void;
|
|
546
|
+
constructor(map?: {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
});
|
|
549
|
+
}
|
|
388
550
|
export declare class GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoMindMappingGenerateResultUsage extends $dara.Model {
|
|
389
551
|
/**
|
|
390
552
|
* @example
|
|
@@ -528,6 +690,7 @@ export declare class GetVideoAnalysisTaskResponseBodyDataPayloadOutput extends $
|
|
|
528
690
|
videoAnalysisResult?: GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoAnalysisResult;
|
|
529
691
|
videoCaptionResult?: GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoCaptionResult;
|
|
530
692
|
videoGenerateResult?: GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoGenerateResult;
|
|
693
|
+
videoGenerateResults?: GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoGenerateResults[];
|
|
531
694
|
videoMindMappingGenerateResult?: GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoMindMappingGenerateResult;
|
|
532
695
|
videoTitleGenerateResult?: GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoTitleGenerateResult;
|
|
533
696
|
static names(): {
|
|
@@ -2197,6 +2360,21 @@ export declare class RunVideoAnalysisRequestFrameSampleMethod extends $dara.Mode
|
|
|
2197
2360
|
[key: string]: any;
|
|
2198
2361
|
});
|
|
2199
2362
|
}
|
|
2363
|
+
export declare class RunVideoAnalysisRequestTextProcessTasks extends $dara.Model {
|
|
2364
|
+
modelCustomPromptTemplate?: string;
|
|
2365
|
+
modelCustomPromptTemplateId?: string;
|
|
2366
|
+
modelId?: string;
|
|
2367
|
+
static names(): {
|
|
2368
|
+
[key: string]: string;
|
|
2369
|
+
};
|
|
2370
|
+
static types(): {
|
|
2371
|
+
[key: string]: any;
|
|
2372
|
+
};
|
|
2373
|
+
validate(): void;
|
|
2374
|
+
constructor(map?: {
|
|
2375
|
+
[key: string]: any;
|
|
2376
|
+
});
|
|
2377
|
+
}
|
|
2200
2378
|
export declare class RunVideoAnalysisRequestVideoRoles extends $dara.Model {
|
|
2201
2379
|
roleInfo?: string;
|
|
2202
2380
|
roleName?: string;
|
|
@@ -2418,12 +2596,14 @@ export declare class RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResul
|
|
|
2418
2596
|
* true
|
|
2419
2597
|
*/
|
|
2420
2598
|
generateFinished?: boolean;
|
|
2599
|
+
index?: number;
|
|
2421
2600
|
/**
|
|
2422
2601
|
* @example
|
|
2423
2602
|
* qwen-max
|
|
2424
2603
|
*/
|
|
2425
2604
|
modelId?: string;
|
|
2426
2605
|
modelReduce?: boolean;
|
|
2606
|
+
reasonText?: string;
|
|
2427
2607
|
text?: string;
|
|
2428
2608
|
usage?: RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResultUsage;
|
|
2429
2609
|
static names(): {
|
|
@@ -2437,6 +2617,39 @@ export declare class RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResul
|
|
|
2437
2617
|
[key: string]: any;
|
|
2438
2618
|
});
|
|
2439
2619
|
}
|
|
2620
|
+
export declare class RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResultsUsage extends $dara.Model {
|
|
2621
|
+
inputTokens?: number;
|
|
2622
|
+
outputTokens?: number;
|
|
2623
|
+
totalTokens?: number;
|
|
2624
|
+
static names(): {
|
|
2625
|
+
[key: string]: string;
|
|
2626
|
+
};
|
|
2627
|
+
static types(): {
|
|
2628
|
+
[key: string]: any;
|
|
2629
|
+
};
|
|
2630
|
+
validate(): void;
|
|
2631
|
+
constructor(map?: {
|
|
2632
|
+
[key: string]: any;
|
|
2633
|
+
});
|
|
2634
|
+
}
|
|
2635
|
+
export declare class RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResults extends $dara.Model {
|
|
2636
|
+
generateFinished?: boolean;
|
|
2637
|
+
index?: number;
|
|
2638
|
+
modelId?: string;
|
|
2639
|
+
reasonText?: string;
|
|
2640
|
+
text?: string;
|
|
2641
|
+
usage?: RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResultsUsage;
|
|
2642
|
+
static names(): {
|
|
2643
|
+
[key: string]: string;
|
|
2644
|
+
};
|
|
2645
|
+
static types(): {
|
|
2646
|
+
[key: string]: any;
|
|
2647
|
+
};
|
|
2648
|
+
validate(): void;
|
|
2649
|
+
constructor(map?: {
|
|
2650
|
+
[key: string]: any;
|
|
2651
|
+
});
|
|
2652
|
+
}
|
|
2440
2653
|
export declare class RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResultUsage extends $dara.Model {
|
|
2441
2654
|
/**
|
|
2442
2655
|
* @example
|
|
@@ -2635,6 +2848,7 @@ export declare class RunVideoAnalysisResponseBodyPayloadOutput extends $dara.Mod
|
|
|
2635
2848
|
videoAnalysisResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoAnalysisResult;
|
|
2636
2849
|
videoCaptionResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoCaptionResult;
|
|
2637
2850
|
videoGenerateResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResult;
|
|
2851
|
+
videoGenerateResults?: RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResults[];
|
|
2638
2852
|
videoMindMappingGenerateResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResult;
|
|
2639
2853
|
videoShotSnapshotResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoShotSnapshotResult;
|
|
2640
2854
|
videoTitleGenerateResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoTitleGenerateResult;
|
|
@@ -2678,6 +2892,45 @@ export declare class RunVideoAnalysisResponseBodyPayload extends $dara.Model {
|
|
|
2678
2892
|
[key: string]: any;
|
|
2679
2893
|
});
|
|
2680
2894
|
}
|
|
2895
|
+
export declare class SubmitTagMiningAnalysisTaskRequestTags extends $dara.Model {
|
|
2896
|
+
/**
|
|
2897
|
+
* @example
|
|
2898
|
+
* xxxx
|
|
2899
|
+
*/
|
|
2900
|
+
tagDefinePrompt?: string;
|
|
2901
|
+
/**
|
|
2902
|
+
* @example
|
|
2903
|
+
* xxxx
|
|
2904
|
+
*/
|
|
2905
|
+
tagName?: string;
|
|
2906
|
+
static names(): {
|
|
2907
|
+
[key: string]: string;
|
|
2908
|
+
};
|
|
2909
|
+
static types(): {
|
|
2910
|
+
[key: string]: any;
|
|
2911
|
+
};
|
|
2912
|
+
validate(): void;
|
|
2913
|
+
constructor(map?: {
|
|
2914
|
+
[key: string]: any;
|
|
2915
|
+
});
|
|
2916
|
+
}
|
|
2917
|
+
export declare class SubmitTagMiningAnalysisTaskResponseBodyData extends $dara.Model {
|
|
2918
|
+
/**
|
|
2919
|
+
* @example
|
|
2920
|
+
* 3feb69ed02d9b1a17d0f1a942675d300
|
|
2921
|
+
*/
|
|
2922
|
+
taskId?: string;
|
|
2923
|
+
static names(): {
|
|
2924
|
+
[key: string]: string;
|
|
2925
|
+
};
|
|
2926
|
+
static types(): {
|
|
2927
|
+
[key: string]: any;
|
|
2928
|
+
};
|
|
2929
|
+
validate(): void;
|
|
2930
|
+
constructor(map?: {
|
|
2931
|
+
[key: string]: any;
|
|
2932
|
+
});
|
|
2933
|
+
}
|
|
2681
2934
|
export declare class SubmitVideoAnalysisTaskRequestFrameSampleMethod extends $dara.Model {
|
|
2682
2935
|
/**
|
|
2683
2936
|
* @example
|
|
@@ -2705,6 +2958,21 @@ export declare class SubmitVideoAnalysisTaskRequestFrameSampleMethod extends $da
|
|
|
2705
2958
|
[key: string]: any;
|
|
2706
2959
|
});
|
|
2707
2960
|
}
|
|
2961
|
+
export declare class SubmitVideoAnalysisTaskRequestTextProcessTasks extends $dara.Model {
|
|
2962
|
+
modelCustomPromptTemplate?: string;
|
|
2963
|
+
modelCustomPromptTemplateId?: string;
|
|
2964
|
+
modelId?: string;
|
|
2965
|
+
static names(): {
|
|
2966
|
+
[key: string]: string;
|
|
2967
|
+
};
|
|
2968
|
+
static types(): {
|
|
2969
|
+
[key: string]: any;
|
|
2970
|
+
};
|
|
2971
|
+
validate(): void;
|
|
2972
|
+
constructor(map?: {
|
|
2973
|
+
[key: string]: any;
|
|
2974
|
+
});
|
|
2975
|
+
}
|
|
2708
2976
|
export declare class SubmitVideoAnalysisTaskRequestVideoRoles extends $dara.Model {
|
|
2709
2977
|
roleInfo?: string;
|
|
2710
2978
|
roleName?: string;
|
|
@@ -2941,6 +3209,81 @@ export declare class GenerateOutputFormatResponse extends $dara.Model {
|
|
|
2941
3209
|
[key: string]: any;
|
|
2942
3210
|
});
|
|
2943
3211
|
}
|
|
3212
|
+
export declare class GetTagMiningAnalysisTaskRequest extends $dara.Model {
|
|
3213
|
+
/**
|
|
3214
|
+
* @example
|
|
3215
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
3216
|
+
*/
|
|
3217
|
+
taskId?: string;
|
|
3218
|
+
static names(): {
|
|
3219
|
+
[key: string]: string;
|
|
3220
|
+
};
|
|
3221
|
+
static types(): {
|
|
3222
|
+
[key: string]: any;
|
|
3223
|
+
};
|
|
3224
|
+
validate(): void;
|
|
3225
|
+
constructor(map?: {
|
|
3226
|
+
[key: string]: any;
|
|
3227
|
+
});
|
|
3228
|
+
}
|
|
3229
|
+
export declare class GetTagMiningAnalysisTaskResponseBody extends $dara.Model {
|
|
3230
|
+
/**
|
|
3231
|
+
* @example
|
|
3232
|
+
* successful
|
|
3233
|
+
*/
|
|
3234
|
+
code?: string;
|
|
3235
|
+
data?: GetTagMiningAnalysisTaskResponseBodyData;
|
|
3236
|
+
/**
|
|
3237
|
+
* @example
|
|
3238
|
+
* 200
|
|
3239
|
+
*/
|
|
3240
|
+
httpStatusCode?: string;
|
|
3241
|
+
/**
|
|
3242
|
+
* @example
|
|
3243
|
+
* DataNotExists
|
|
3244
|
+
*/
|
|
3245
|
+
message?: string;
|
|
3246
|
+
/**
|
|
3247
|
+
* @remarks
|
|
3248
|
+
* requestId
|
|
3249
|
+
*
|
|
3250
|
+
* @example
|
|
3251
|
+
* 085BE2D2-BB7E-59A6-B688-F2CB32124E7F
|
|
3252
|
+
*/
|
|
3253
|
+
requestId?: string;
|
|
3254
|
+
/**
|
|
3255
|
+
* @example
|
|
3256
|
+
* true
|
|
3257
|
+
*/
|
|
3258
|
+
success?: boolean;
|
|
3259
|
+
static names(): {
|
|
3260
|
+
[key: string]: string;
|
|
3261
|
+
};
|
|
3262
|
+
static types(): {
|
|
3263
|
+
[key: string]: any;
|
|
3264
|
+
};
|
|
3265
|
+
validate(): void;
|
|
3266
|
+
constructor(map?: {
|
|
3267
|
+
[key: string]: any;
|
|
3268
|
+
});
|
|
3269
|
+
}
|
|
3270
|
+
export declare class GetTagMiningAnalysisTaskResponse extends $dara.Model {
|
|
3271
|
+
headers?: {
|
|
3272
|
+
[key: string]: string;
|
|
3273
|
+
};
|
|
3274
|
+
statusCode?: number;
|
|
3275
|
+
body?: GetTagMiningAnalysisTaskResponseBody;
|
|
3276
|
+
static names(): {
|
|
3277
|
+
[key: string]: string;
|
|
3278
|
+
};
|
|
3279
|
+
static types(): {
|
|
3280
|
+
[key: string]: any;
|
|
3281
|
+
};
|
|
3282
|
+
validate(): void;
|
|
3283
|
+
constructor(map?: {
|
|
3284
|
+
[key: string]: any;
|
|
3285
|
+
});
|
|
3286
|
+
}
|
|
2944
3287
|
export declare class GetVideoAnalysisConfigResponseBody extends $dara.Model {
|
|
2945
3288
|
/**
|
|
2946
3289
|
* @example
|
|
@@ -4141,6 +4484,7 @@ export declare class RunTagMiningAnalysisResponse extends $dara.Model {
|
|
|
4141
4484
|
});
|
|
4142
4485
|
}
|
|
4143
4486
|
export declare class RunVideoAnalysisRequest extends $dara.Model {
|
|
4487
|
+
faceIdentitySimilarityMinScore?: number;
|
|
4144
4488
|
frameSampleMethod?: RunVideoAnalysisRequestFrameSampleMethod;
|
|
4145
4489
|
generateOptions?: string[];
|
|
4146
4490
|
/**
|
|
@@ -4170,6 +4514,7 @@ export declare class RunVideoAnalysisRequest extends $dara.Model {
|
|
|
4170
4514
|
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
4171
4515
|
*/
|
|
4172
4516
|
taskId?: string;
|
|
4517
|
+
textProcessTasks?: RunVideoAnalysisRequestTextProcessTasks[];
|
|
4173
4518
|
videoExtraInfo?: string;
|
|
4174
4519
|
videoModelCustomPromptTemplate?: string;
|
|
4175
4520
|
/**
|
|
@@ -4178,6 +4523,7 @@ export declare class RunVideoAnalysisRequest extends $dara.Model {
|
|
|
4178
4523
|
*/
|
|
4179
4524
|
videoModelId?: string;
|
|
4180
4525
|
videoRoles?: RunVideoAnalysisRequestVideoRoles[];
|
|
4526
|
+
videoShotFaceIdentityCount?: number;
|
|
4181
4527
|
/**
|
|
4182
4528
|
* @example
|
|
4183
4529
|
* http://xxxx.mp4
|
|
@@ -4195,6 +4541,7 @@ export declare class RunVideoAnalysisRequest extends $dara.Model {
|
|
|
4195
4541
|
});
|
|
4196
4542
|
}
|
|
4197
4543
|
export declare class RunVideoAnalysisShrinkRequest extends $dara.Model {
|
|
4544
|
+
faceIdentitySimilarityMinScore?: number;
|
|
4198
4545
|
frameSampleMethodShrink?: string;
|
|
4199
4546
|
generateOptionsShrink?: string;
|
|
4200
4547
|
/**
|
|
@@ -4224,6 +4571,7 @@ export declare class RunVideoAnalysisShrinkRequest extends $dara.Model {
|
|
|
4224
4571
|
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
4225
4572
|
*/
|
|
4226
4573
|
taskId?: string;
|
|
4574
|
+
textProcessTasksShrink?: string;
|
|
4227
4575
|
videoExtraInfo?: string;
|
|
4228
4576
|
videoModelCustomPromptTemplate?: string;
|
|
4229
4577
|
/**
|
|
@@ -4232,6 +4580,7 @@ export declare class RunVideoAnalysisShrinkRequest extends $dara.Model {
|
|
|
4232
4580
|
*/
|
|
4233
4581
|
videoModelId?: string;
|
|
4234
4582
|
videoRolesShrink?: string;
|
|
4583
|
+
videoShotFaceIdentityCount?: number;
|
|
4235
4584
|
/**
|
|
4236
4585
|
* @example
|
|
4237
4586
|
* http://xxxx.mp4
|
|
@@ -4284,7 +4633,154 @@ export declare class RunVideoAnalysisResponse extends $dara.Model {
|
|
|
4284
4633
|
[key: string]: any;
|
|
4285
4634
|
});
|
|
4286
4635
|
}
|
|
4636
|
+
export declare class SubmitTagMiningAnalysisTaskRequest extends $dara.Model {
|
|
4637
|
+
/**
|
|
4638
|
+
* @example
|
|
4639
|
+
* clueMining
|
|
4640
|
+
*/
|
|
4641
|
+
businessType?: string;
|
|
4642
|
+
contents?: string[];
|
|
4643
|
+
/**
|
|
4644
|
+
* @example
|
|
4645
|
+
* 额外信息
|
|
4646
|
+
*/
|
|
4647
|
+
extraInfo?: string;
|
|
4648
|
+
/**
|
|
4649
|
+
* @example
|
|
4650
|
+
* qwen-max
|
|
4651
|
+
*/
|
|
4652
|
+
modelId?: string;
|
|
4653
|
+
/**
|
|
4654
|
+
* @example
|
|
4655
|
+
* 请返回如下JSON格式,{"key1":"","key2":""}
|
|
4656
|
+
*/
|
|
4657
|
+
outputFormat?: string;
|
|
4658
|
+
tags?: SubmitTagMiningAnalysisTaskRequestTags[];
|
|
4659
|
+
/**
|
|
4660
|
+
* @example
|
|
4661
|
+
* 给你一条待分析文本数据,请你按照标签体系来对数据进行打标。
|
|
4662
|
+
*/
|
|
4663
|
+
taskDescription?: string;
|
|
4664
|
+
/**
|
|
4665
|
+
* @example
|
|
4666
|
+
* http://www.example.com/xxxx.txt
|
|
4667
|
+
*/
|
|
4668
|
+
url?: string;
|
|
4669
|
+
static names(): {
|
|
4670
|
+
[key: string]: string;
|
|
4671
|
+
};
|
|
4672
|
+
static types(): {
|
|
4673
|
+
[key: string]: any;
|
|
4674
|
+
};
|
|
4675
|
+
validate(): void;
|
|
4676
|
+
constructor(map?: {
|
|
4677
|
+
[key: string]: any;
|
|
4678
|
+
});
|
|
4679
|
+
}
|
|
4680
|
+
export declare class SubmitTagMiningAnalysisTaskShrinkRequest extends $dara.Model {
|
|
4681
|
+
/**
|
|
4682
|
+
* @example
|
|
4683
|
+
* clueMining
|
|
4684
|
+
*/
|
|
4685
|
+
businessType?: string;
|
|
4686
|
+
contentsShrink?: string;
|
|
4687
|
+
/**
|
|
4688
|
+
* @example
|
|
4689
|
+
* 额外信息
|
|
4690
|
+
*/
|
|
4691
|
+
extraInfo?: string;
|
|
4692
|
+
/**
|
|
4693
|
+
* @example
|
|
4694
|
+
* qwen-max
|
|
4695
|
+
*/
|
|
4696
|
+
modelId?: string;
|
|
4697
|
+
/**
|
|
4698
|
+
* @example
|
|
4699
|
+
* 请返回如下JSON格式,{"key1":"","key2":""}
|
|
4700
|
+
*/
|
|
4701
|
+
outputFormat?: string;
|
|
4702
|
+
tagsShrink?: string;
|
|
4703
|
+
/**
|
|
4704
|
+
* @example
|
|
4705
|
+
* 给你一条待分析文本数据,请你按照标签体系来对数据进行打标。
|
|
4706
|
+
*/
|
|
4707
|
+
taskDescription?: string;
|
|
4708
|
+
/**
|
|
4709
|
+
* @example
|
|
4710
|
+
* http://www.example.com/xxxx.txt
|
|
4711
|
+
*/
|
|
4712
|
+
url?: string;
|
|
4713
|
+
static names(): {
|
|
4714
|
+
[key: string]: string;
|
|
4715
|
+
};
|
|
4716
|
+
static types(): {
|
|
4717
|
+
[key: string]: any;
|
|
4718
|
+
};
|
|
4719
|
+
validate(): void;
|
|
4720
|
+
constructor(map?: {
|
|
4721
|
+
[key: string]: any;
|
|
4722
|
+
});
|
|
4723
|
+
}
|
|
4724
|
+
export declare class SubmitTagMiningAnalysisTaskResponseBody extends $dara.Model {
|
|
4725
|
+
/**
|
|
4726
|
+
* @example
|
|
4727
|
+
* successful
|
|
4728
|
+
*/
|
|
4729
|
+
code?: string;
|
|
4730
|
+
data?: SubmitTagMiningAnalysisTaskResponseBodyData;
|
|
4731
|
+
/**
|
|
4732
|
+
* @example
|
|
4733
|
+
* 200
|
|
4734
|
+
*/
|
|
4735
|
+
httpStatusCode?: number;
|
|
4736
|
+
/**
|
|
4737
|
+
* @example
|
|
4738
|
+
* ok
|
|
4739
|
+
*/
|
|
4740
|
+
message?: string;
|
|
4741
|
+
/**
|
|
4742
|
+
* @remarks
|
|
4743
|
+
* Id of the request
|
|
4744
|
+
*
|
|
4745
|
+
* @example
|
|
4746
|
+
* 117F5ABE-CF02-5502-9A3F-E56BC9081A64
|
|
4747
|
+
*/
|
|
4748
|
+
requestId?: string;
|
|
4749
|
+
/**
|
|
4750
|
+
* @example
|
|
4751
|
+
* true
|
|
4752
|
+
*/
|
|
4753
|
+
success?: boolean;
|
|
4754
|
+
static names(): {
|
|
4755
|
+
[key: string]: string;
|
|
4756
|
+
};
|
|
4757
|
+
static types(): {
|
|
4758
|
+
[key: string]: any;
|
|
4759
|
+
};
|
|
4760
|
+
validate(): void;
|
|
4761
|
+
constructor(map?: {
|
|
4762
|
+
[key: string]: any;
|
|
4763
|
+
});
|
|
4764
|
+
}
|
|
4765
|
+
export declare class SubmitTagMiningAnalysisTaskResponse extends $dara.Model {
|
|
4766
|
+
headers?: {
|
|
4767
|
+
[key: string]: string;
|
|
4768
|
+
};
|
|
4769
|
+
statusCode?: number;
|
|
4770
|
+
body?: SubmitTagMiningAnalysisTaskResponseBody;
|
|
4771
|
+
static names(): {
|
|
4772
|
+
[key: string]: string;
|
|
4773
|
+
};
|
|
4774
|
+
static types(): {
|
|
4775
|
+
[key: string]: any;
|
|
4776
|
+
};
|
|
4777
|
+
validate(): void;
|
|
4778
|
+
constructor(map?: {
|
|
4779
|
+
[key: string]: any;
|
|
4780
|
+
});
|
|
4781
|
+
}
|
|
4287
4782
|
export declare class SubmitVideoAnalysisTaskRequest extends $dara.Model {
|
|
4783
|
+
faceIdentitySimilarityMinScore?: number;
|
|
4288
4784
|
frameSampleMethod?: SubmitVideoAnalysisTaskRequestFrameSampleMethod;
|
|
4289
4785
|
generateOptions?: string[];
|
|
4290
4786
|
/**
|
|
@@ -4308,6 +4804,7 @@ export declare class SubmitVideoAnalysisTaskRequest extends $dara.Model {
|
|
|
4308
4804
|
* 2
|
|
4309
4805
|
*/
|
|
4310
4806
|
snapshotInterval?: number;
|
|
4807
|
+
textProcessTasks?: SubmitVideoAnalysisTaskRequestTextProcessTasks[];
|
|
4311
4808
|
videoExtraInfo?: string;
|
|
4312
4809
|
videoModelCustomPromptTemplate?: string;
|
|
4313
4810
|
/**
|
|
@@ -4316,6 +4813,7 @@ export declare class SubmitVideoAnalysisTaskRequest extends $dara.Model {
|
|
|
4316
4813
|
*/
|
|
4317
4814
|
videoModelId?: string;
|
|
4318
4815
|
videoRoles?: SubmitVideoAnalysisTaskRequestVideoRoles[];
|
|
4816
|
+
videoShotFaceIdentityCount?: number;
|
|
4319
4817
|
/**
|
|
4320
4818
|
* @remarks
|
|
4321
4819
|
* This parameter is required.
|
|
@@ -4336,6 +4834,7 @@ export declare class SubmitVideoAnalysisTaskRequest extends $dara.Model {
|
|
|
4336
4834
|
});
|
|
4337
4835
|
}
|
|
4338
4836
|
export declare class SubmitVideoAnalysisTaskShrinkRequest extends $dara.Model {
|
|
4837
|
+
faceIdentitySimilarityMinScore?: number;
|
|
4339
4838
|
frameSampleMethodShrink?: string;
|
|
4340
4839
|
generateOptionsShrink?: string;
|
|
4341
4840
|
/**
|
|
@@ -4359,6 +4858,7 @@ export declare class SubmitVideoAnalysisTaskShrinkRequest extends $dara.Model {
|
|
|
4359
4858
|
* 2
|
|
4360
4859
|
*/
|
|
4361
4860
|
snapshotInterval?: number;
|
|
4861
|
+
textProcessTasksShrink?: string;
|
|
4362
4862
|
videoExtraInfo?: string;
|
|
4363
4863
|
videoModelCustomPromptTemplate?: string;
|
|
4364
4864
|
/**
|
|
@@ -4367,6 +4867,7 @@ export declare class SubmitVideoAnalysisTaskShrinkRequest extends $dara.Model {
|
|
|
4367
4867
|
*/
|
|
4368
4868
|
videoModelId?: string;
|
|
4369
4869
|
videoRolesShrink?: string;
|
|
4870
|
+
videoShotFaceIdentityCount?: number;
|
|
4370
4871
|
/**
|
|
4371
4872
|
* @remarks
|
|
4372
4873
|
* This parameter is required.
|
|
@@ -4559,6 +5060,24 @@ export default class Client extends OpenApi {
|
|
|
4559
5060
|
* @returns GenerateOutputFormatResponse
|
|
4560
5061
|
*/
|
|
4561
5062
|
generateOutputFormat(workspaceId: string, request: GenerateOutputFormatRequest): Promise<GenerateOutputFormatResponse>;
|
|
5063
|
+
/**
|
|
5064
|
+
* 获取挖掘分析任务结果
|
|
5065
|
+
*
|
|
5066
|
+
* @param request - GetTagMiningAnalysisTaskRequest
|
|
5067
|
+
* @param headers - map
|
|
5068
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5069
|
+
* @returns GetTagMiningAnalysisTaskResponse
|
|
5070
|
+
*/
|
|
5071
|
+
getTagMiningAnalysisTaskWithOptions(workspaceId: string, request: GetTagMiningAnalysisTaskRequest, headers: {
|
|
5072
|
+
[key: string]: string;
|
|
5073
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetTagMiningAnalysisTaskResponse>;
|
|
5074
|
+
/**
|
|
5075
|
+
* 获取挖掘分析任务结果
|
|
5076
|
+
*
|
|
5077
|
+
* @param request - GetTagMiningAnalysisTaskRequest
|
|
5078
|
+
* @returns GetTagMiningAnalysisTaskResponse
|
|
5079
|
+
*/
|
|
5080
|
+
getTagMiningAnalysisTask(workspaceId: string, request: GetTagMiningAnalysisTaskRequest): Promise<GetTagMiningAnalysisTaskResponse>;
|
|
4562
5081
|
/**
|
|
4563
5082
|
* 视频理解-获取配置
|
|
4564
5083
|
*
|
|
@@ -4826,6 +5345,24 @@ export default class Client extends OpenApi {
|
|
|
4826
5345
|
* @returns RunVideoAnalysisResponse
|
|
4827
5346
|
*/
|
|
4828
5347
|
runVideoAnalysis(workspaceId: string, request: RunVideoAnalysisRequest): Promise<RunVideoAnalysisResponse>;
|
|
5348
|
+
/**
|
|
5349
|
+
* 轻应用-标签挖掘
|
|
5350
|
+
*
|
|
5351
|
+
* @param tmpReq - SubmitTagMiningAnalysisTaskRequest
|
|
5352
|
+
* @param headers - map
|
|
5353
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5354
|
+
* @returns SubmitTagMiningAnalysisTaskResponse
|
|
5355
|
+
*/
|
|
5356
|
+
submitTagMiningAnalysisTaskWithOptions(workspaceId: string, tmpReq: SubmitTagMiningAnalysisTaskRequest, headers: {
|
|
5357
|
+
[key: string]: string;
|
|
5358
|
+
}, runtime: $dara.RuntimeOptions): Promise<SubmitTagMiningAnalysisTaskResponse>;
|
|
5359
|
+
/**
|
|
5360
|
+
* 轻应用-标签挖掘
|
|
5361
|
+
*
|
|
5362
|
+
* @param request - SubmitTagMiningAnalysisTaskRequest
|
|
5363
|
+
* @returns SubmitTagMiningAnalysisTaskResponse
|
|
5364
|
+
*/
|
|
5365
|
+
submitTagMiningAnalysisTask(workspaceId: string, request: SubmitTagMiningAnalysisTaskRequest): Promise<SubmitTagMiningAnalysisTaskResponse>;
|
|
4829
5366
|
/**
|
|
4830
5367
|
* 轻应用-提交视频理解任务
|
|
4831
5368
|
*
|