@alicloud/quanmiaolightapp20240801 1.3.0 → 1.5.0
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 +1175 -203
- package/dist/client.js +1098 -63
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2060 -424
package/dist/client.d.ts
CHANGED
|
@@ -3,6 +3,75 @@
|
|
|
3
3
|
import * as $Util from '@alicloud/tea-util';
|
|
4
4
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
5
5
|
import * as $tea from '@alicloud/tea-typescript';
|
|
6
|
+
export declare class GenerateBroadcastNewsRequest extends $tea.Model {
|
|
7
|
+
/**
|
|
8
|
+
* @remarks
|
|
9
|
+
* This parameter is required.
|
|
10
|
+
*/
|
|
11
|
+
prompt?: string;
|
|
12
|
+
static names(): {
|
|
13
|
+
[key: string]: string;
|
|
14
|
+
};
|
|
15
|
+
static types(): {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
};
|
|
18
|
+
constructor(map?: {
|
|
19
|
+
[key: string]: any;
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
export declare class GenerateBroadcastNewsResponseBody extends $tea.Model {
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* xx
|
|
26
|
+
*/
|
|
27
|
+
code?: string;
|
|
28
|
+
data?: GenerateBroadcastNewsResponseBodyData;
|
|
29
|
+
/**
|
|
30
|
+
* @example
|
|
31
|
+
* 200
|
|
32
|
+
*/
|
|
33
|
+
httpStatusCode?: number;
|
|
34
|
+
/**
|
|
35
|
+
* @example
|
|
36
|
+
* success
|
|
37
|
+
*/
|
|
38
|
+
message?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @example
|
|
41
|
+
* 117F5ABE-CF02-5502-9A3F-E56BC9081A64
|
|
42
|
+
*/
|
|
43
|
+
requestId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @example
|
|
46
|
+
* True
|
|
47
|
+
*/
|
|
48
|
+
success?: boolean;
|
|
49
|
+
static names(): {
|
|
50
|
+
[key: string]: string;
|
|
51
|
+
};
|
|
52
|
+
static types(): {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
};
|
|
55
|
+
constructor(map?: {
|
|
56
|
+
[key: string]: any;
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
export declare class GenerateBroadcastNewsResponse extends $tea.Model {
|
|
60
|
+
headers?: {
|
|
61
|
+
[key: string]: string;
|
|
62
|
+
};
|
|
63
|
+
statusCode?: number;
|
|
64
|
+
body?: GenerateBroadcastNewsResponseBody;
|
|
65
|
+
static names(): {
|
|
66
|
+
[key: string]: string;
|
|
67
|
+
};
|
|
68
|
+
static types(): {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
};
|
|
71
|
+
constructor(map?: {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
});
|
|
74
|
+
}
|
|
6
75
|
export declare class ListHotTopicSummariesRequest extends $tea.Model {
|
|
7
76
|
/**
|
|
8
77
|
* @example
|
|
@@ -107,36 +176,19 @@ export declare class ListHotTopicSummariesResponse extends $tea.Model {
|
|
|
107
176
|
[key: string]: any;
|
|
108
177
|
});
|
|
109
178
|
}
|
|
110
|
-
export declare class
|
|
111
|
-
customPrompt?: string;
|
|
112
|
-
extractType?: string;
|
|
179
|
+
export declare class RunCommentGenerationRequest extends $tea.Model {
|
|
113
180
|
/**
|
|
114
181
|
* @example
|
|
115
|
-
*
|
|
116
|
-
* qwen-plus
|
|
182
|
+
* 20
|
|
117
183
|
*/
|
|
118
|
-
|
|
119
|
-
sourceMaterials?: string[];
|
|
120
|
-
static names(): {
|
|
121
|
-
[key: string]: string;
|
|
122
|
-
};
|
|
123
|
-
static types(): {
|
|
124
|
-
[key: string]: any;
|
|
125
|
-
};
|
|
126
|
-
constructor(map?: {
|
|
127
|
-
[key: string]: any;
|
|
128
|
-
});
|
|
129
|
-
}
|
|
130
|
-
export declare class RunMarketingInformationExtractShrinkRequest extends $tea.Model {
|
|
131
|
-
customPrompt?: string;
|
|
132
|
-
extractType?: string;
|
|
184
|
+
length?: string;
|
|
133
185
|
/**
|
|
134
186
|
* @example
|
|
135
|
-
*
|
|
136
|
-
* qwen-plus
|
|
187
|
+
* 10
|
|
137
188
|
*/
|
|
138
|
-
|
|
139
|
-
|
|
189
|
+
numComments?: string;
|
|
190
|
+
sourceMaterial?: string;
|
|
191
|
+
style?: string;
|
|
140
192
|
static names(): {
|
|
141
193
|
[key: string]: string;
|
|
142
194
|
};
|
|
@@ -147,14 +199,10 @@ export declare class RunMarketingInformationExtractShrinkRequest extends $tea.Mo
|
|
|
147
199
|
[key: string]: any;
|
|
148
200
|
});
|
|
149
201
|
}
|
|
150
|
-
export declare class
|
|
151
|
-
/**
|
|
152
|
-
* @example
|
|
153
|
-
* {\\"TimeZone\\": \\"Asia/Shanghai\\", \\"DateTime\\": \\"2024-03-07T17:00:09+08:00\\"}
|
|
154
|
-
*/
|
|
202
|
+
export declare class RunCommentGenerationResponseBody extends $tea.Model {
|
|
155
203
|
end?: boolean;
|
|
156
|
-
header?:
|
|
157
|
-
payload?:
|
|
204
|
+
header?: RunCommentGenerationResponseBodyHeader;
|
|
205
|
+
payload?: RunCommentGenerationResponseBodyPayload;
|
|
158
206
|
static names(): {
|
|
159
207
|
[key: string]: string;
|
|
160
208
|
};
|
|
@@ -165,12 +213,12 @@ export declare class RunMarketingInformationExtractResponseBody extends $tea.Mod
|
|
|
165
213
|
[key: string]: any;
|
|
166
214
|
});
|
|
167
215
|
}
|
|
168
|
-
export declare class
|
|
216
|
+
export declare class RunCommentGenerationResponse extends $tea.Model {
|
|
169
217
|
headers?: {
|
|
170
218
|
[key: string]: string;
|
|
171
219
|
};
|
|
172
220
|
statusCode?: number;
|
|
173
|
-
body?:
|
|
221
|
+
body?: RunCommentGenerationResponseBody;
|
|
174
222
|
static names(): {
|
|
175
223
|
[key: string]: string;
|
|
176
224
|
};
|
|
@@ -181,50 +229,42 @@ export declare class RunMarketingInformationExtractResponse extends $tea.Model {
|
|
|
181
229
|
[key: string]: any;
|
|
182
230
|
});
|
|
183
231
|
}
|
|
184
|
-
export declare class
|
|
185
|
-
|
|
232
|
+
export declare class RunHotTopicChatRequest extends $tea.Model {
|
|
233
|
+
category?: string;
|
|
234
|
+
generateOptions?: string[];
|
|
235
|
+
/**
|
|
236
|
+
* @example
|
|
237
|
+
* 2024-09-13_12
|
|
238
|
+
*/
|
|
239
|
+
hotTopicVersion?: string;
|
|
240
|
+
hotTopics?: string[];
|
|
241
|
+
/**
|
|
242
|
+
* @example
|
|
243
|
+
* 1
|
|
244
|
+
*/
|
|
245
|
+
imageCount?: number;
|
|
246
|
+
/**
|
|
247
|
+
* @example
|
|
248
|
+
* xx
|
|
249
|
+
*/
|
|
250
|
+
modelCustomPromptTemplate?: string;
|
|
186
251
|
/**
|
|
187
252
|
* @example
|
|
188
253
|
* qwen-max
|
|
189
|
-
* qwen-plus
|
|
190
254
|
*/
|
|
191
255
|
modelId?: string;
|
|
192
|
-
sourceMaterial?: string;
|
|
193
|
-
writingType?: string;
|
|
194
|
-
static names(): {
|
|
195
|
-
[key: string]: string;
|
|
196
|
-
};
|
|
197
|
-
static types(): {
|
|
198
|
-
[key: string]: any;
|
|
199
|
-
};
|
|
200
|
-
constructor(map?: {
|
|
201
|
-
[key: string]: any;
|
|
202
|
-
});
|
|
203
|
-
}
|
|
204
|
-
export declare class RunMarketingInformationWritingResponseBody extends $tea.Model {
|
|
205
256
|
/**
|
|
206
257
|
* @example
|
|
207
|
-
*
|
|
258
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5ax
|
|
208
259
|
*/
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
};
|
|
218
|
-
constructor(map?: {
|
|
219
|
-
[key: string]: any;
|
|
220
|
-
});
|
|
221
|
-
}
|
|
222
|
-
export declare class RunMarketingInformationWritingResponse extends $tea.Model {
|
|
223
|
-
headers?: {
|
|
224
|
-
[key: string]: string;
|
|
225
|
-
};
|
|
226
|
-
statusCode?: number;
|
|
227
|
-
body?: RunMarketingInformationWritingResponseBody;
|
|
260
|
+
originalSessionId?: string;
|
|
261
|
+
prompt?: string;
|
|
262
|
+
stepForBroadcastContentConfig?: RunHotTopicChatRequestStepForBroadcastContentConfig;
|
|
263
|
+
/**
|
|
264
|
+
* @example
|
|
265
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
266
|
+
*/
|
|
267
|
+
taskId?: string;
|
|
228
268
|
static names(): {
|
|
229
269
|
[key: string]: string;
|
|
230
270
|
};
|
|
@@ -235,25 +275,42 @@ export declare class RunMarketingInformationWritingResponse extends $tea.Model {
|
|
|
235
275
|
[key: string]: any;
|
|
236
276
|
});
|
|
237
277
|
}
|
|
238
|
-
export declare class
|
|
278
|
+
export declare class RunHotTopicChatShrinkRequest extends $tea.Model {
|
|
279
|
+
category?: string;
|
|
280
|
+
generateOptionsShrink?: string;
|
|
239
281
|
/**
|
|
240
282
|
* @example
|
|
241
|
-
*
|
|
283
|
+
* 2024-09-13_12
|
|
242
284
|
*/
|
|
243
|
-
|
|
285
|
+
hotTopicVersion?: string;
|
|
286
|
+
hotTopicsShrink?: string;
|
|
244
287
|
/**
|
|
245
288
|
* @example
|
|
246
|
-
*
|
|
289
|
+
* 1
|
|
247
290
|
*/
|
|
248
|
-
|
|
291
|
+
imageCount?: number;
|
|
249
292
|
/**
|
|
250
|
-
* @remarks
|
|
251
|
-
* This parameter is required.
|
|
252
|
-
*
|
|
253
293
|
* @example
|
|
254
|
-
*
|
|
294
|
+
* xx
|
|
255
295
|
*/
|
|
256
|
-
|
|
296
|
+
modelCustomPromptTemplate?: string;
|
|
297
|
+
/**
|
|
298
|
+
* @example
|
|
299
|
+
* qwen-max
|
|
300
|
+
*/
|
|
301
|
+
modelId?: string;
|
|
302
|
+
/**
|
|
303
|
+
* @example
|
|
304
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5ax
|
|
305
|
+
*/
|
|
306
|
+
originalSessionId?: string;
|
|
307
|
+
prompt?: string;
|
|
308
|
+
stepForBroadcastContentConfigShrink?: string;
|
|
309
|
+
/**
|
|
310
|
+
* @example
|
|
311
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
312
|
+
*/
|
|
313
|
+
taskId?: string;
|
|
257
314
|
static names(): {
|
|
258
315
|
[key: string]: string;
|
|
259
316
|
};
|
|
@@ -264,10 +321,14 @@ export declare class RunScriptContinueRequest extends $tea.Model {
|
|
|
264
321
|
[key: string]: any;
|
|
265
322
|
});
|
|
266
323
|
}
|
|
267
|
-
export declare class
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
324
|
+
export declare class RunHotTopicChatResponseBody extends $tea.Model {
|
|
325
|
+
header?: RunHotTopicChatResponseBodyHeader;
|
|
326
|
+
payload?: RunHotTopicChatResponseBodyPayload;
|
|
327
|
+
/**
|
|
328
|
+
* @example
|
|
329
|
+
* 04DA1A52-4E51-56CB-BA64-FDDA0B53BAE8
|
|
330
|
+
*/
|
|
331
|
+
requestId?: string;
|
|
271
332
|
static names(): {
|
|
272
333
|
[key: string]: string;
|
|
273
334
|
};
|
|
@@ -278,12 +339,12 @@ export declare class RunScriptContinueResponseBody extends $tea.Model {
|
|
|
278
339
|
[key: string]: any;
|
|
279
340
|
});
|
|
280
341
|
}
|
|
281
|
-
export declare class
|
|
342
|
+
export declare class RunHotTopicChatResponse extends $tea.Model {
|
|
282
343
|
headers?: {
|
|
283
344
|
[key: string]: string;
|
|
284
345
|
};
|
|
285
346
|
statusCode?: number;
|
|
286
|
-
body?:
|
|
347
|
+
body?: RunHotTopicChatResponseBody;
|
|
287
348
|
static names(): {
|
|
288
349
|
[key: string]: string;
|
|
289
350
|
};
|
|
@@ -294,37 +355,60 @@ export declare class RunScriptContinueResponse extends $tea.Model {
|
|
|
294
355
|
[key: string]: any;
|
|
295
356
|
});
|
|
296
357
|
}
|
|
297
|
-
export declare class
|
|
358
|
+
export declare class RunHotTopicSummaryRequest extends $tea.Model {
|
|
298
359
|
/**
|
|
360
|
+
* @remarks
|
|
361
|
+
* This parameter is required.
|
|
362
|
+
*
|
|
299
363
|
* @example
|
|
300
|
-
*
|
|
364
|
+
* 2024-10-16_8
|
|
301
365
|
*/
|
|
302
|
-
|
|
303
|
-
dialogueInScene?: boolean;
|
|
304
|
-
plotConflict?: boolean;
|
|
366
|
+
hotTopicVersion?: string;
|
|
305
367
|
/**
|
|
306
|
-
* @
|
|
307
|
-
*
|
|
368
|
+
* @remarks
|
|
369
|
+
* This parameter is required.
|
|
308
370
|
*/
|
|
309
|
-
|
|
371
|
+
stepForCustomSummaryStyleConfig?: RunHotTopicSummaryRequestStepForCustomSummaryStyleConfig;
|
|
310
372
|
/**
|
|
373
|
+
* @remarks
|
|
374
|
+
* This parameter is required.
|
|
375
|
+
*
|
|
311
376
|
* @example
|
|
312
|
-
*
|
|
377
|
+
* xxxxx
|
|
313
378
|
*/
|
|
314
|
-
|
|
379
|
+
topicIds?: string[];
|
|
380
|
+
static names(): {
|
|
381
|
+
[key: string]: string;
|
|
382
|
+
};
|
|
383
|
+
static types(): {
|
|
384
|
+
[key: string]: any;
|
|
385
|
+
};
|
|
386
|
+
constructor(map?: {
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
});
|
|
389
|
+
}
|
|
390
|
+
export declare class RunHotTopicSummaryShrinkRequest extends $tea.Model {
|
|
315
391
|
/**
|
|
316
392
|
* @remarks
|
|
317
393
|
* This parameter is required.
|
|
318
394
|
*
|
|
319
395
|
* @example
|
|
320
|
-
*
|
|
396
|
+
* 2024-10-16_8
|
|
321
397
|
*/
|
|
322
|
-
|
|
398
|
+
hotTopicVersion?: string;
|
|
399
|
+
/**
|
|
400
|
+
* @remarks
|
|
401
|
+
* This parameter is required.
|
|
402
|
+
*/
|
|
403
|
+
stepForCustomSummaryStyleConfigShrink?: string;
|
|
323
404
|
/**
|
|
405
|
+
* @remarks
|
|
406
|
+
* This parameter is required.
|
|
407
|
+
*
|
|
324
408
|
* @example
|
|
325
|
-
*
|
|
409
|
+
* xxxxx
|
|
326
410
|
*/
|
|
327
|
-
|
|
411
|
+
topicIdsShrink?: string;
|
|
328
412
|
static names(): {
|
|
329
413
|
[key: string]: string;
|
|
330
414
|
};
|
|
@@ -335,10 +419,17 @@ export declare class RunScriptPlanningRequest extends $tea.Model {
|
|
|
335
419
|
[key: string]: any;
|
|
336
420
|
});
|
|
337
421
|
}
|
|
338
|
-
export declare class
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
422
|
+
export declare class RunHotTopicSummaryResponseBody extends $tea.Model {
|
|
423
|
+
header?: RunHotTopicSummaryResponseBodyHeader;
|
|
424
|
+
payload?: RunHotTopicSummaryResponseBodyPayload;
|
|
425
|
+
/**
|
|
426
|
+
* @remarks
|
|
427
|
+
* Id of the request
|
|
428
|
+
*
|
|
429
|
+
* @example
|
|
430
|
+
* 5D0E915E-655D-59A8-894F-93873F73AAE5
|
|
431
|
+
*/
|
|
432
|
+
requestId?: string;
|
|
342
433
|
static names(): {
|
|
343
434
|
[key: string]: string;
|
|
344
435
|
};
|
|
@@ -349,12 +440,12 @@ export declare class RunScriptPlanningResponseBody extends $tea.Model {
|
|
|
349
440
|
[key: string]: any;
|
|
350
441
|
});
|
|
351
442
|
}
|
|
352
|
-
export declare class
|
|
443
|
+
export declare class RunHotTopicSummaryResponse extends $tea.Model {
|
|
353
444
|
headers?: {
|
|
354
445
|
[key: string]: string;
|
|
355
446
|
};
|
|
356
447
|
statusCode?: number;
|
|
357
|
-
body?:
|
|
448
|
+
body?: RunHotTopicSummaryResponseBody;
|
|
358
449
|
static names(): {
|
|
359
450
|
[key: string]: string;
|
|
360
451
|
};
|
|
@@ -365,7 +456,265 @@ export declare class RunScriptPlanningResponse extends $tea.Model {
|
|
|
365
456
|
[key: string]: any;
|
|
366
457
|
});
|
|
367
458
|
}
|
|
368
|
-
export declare class
|
|
459
|
+
export declare class RunMarketingInformationExtractRequest extends $tea.Model {
|
|
460
|
+
customPrompt?: string;
|
|
461
|
+
extractType?: string;
|
|
462
|
+
/**
|
|
463
|
+
* @example
|
|
464
|
+
* qwen-max
|
|
465
|
+
* qwen-plus
|
|
466
|
+
*/
|
|
467
|
+
modelId?: string;
|
|
468
|
+
sourceMaterials?: string[];
|
|
469
|
+
static names(): {
|
|
470
|
+
[key: string]: string;
|
|
471
|
+
};
|
|
472
|
+
static types(): {
|
|
473
|
+
[key: string]: any;
|
|
474
|
+
};
|
|
475
|
+
constructor(map?: {
|
|
476
|
+
[key: string]: any;
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
export declare class RunMarketingInformationExtractShrinkRequest extends $tea.Model {
|
|
480
|
+
customPrompt?: string;
|
|
481
|
+
extractType?: string;
|
|
482
|
+
/**
|
|
483
|
+
* @example
|
|
484
|
+
* qwen-max
|
|
485
|
+
* qwen-plus
|
|
486
|
+
*/
|
|
487
|
+
modelId?: string;
|
|
488
|
+
sourceMaterialsShrink?: string;
|
|
489
|
+
static names(): {
|
|
490
|
+
[key: string]: string;
|
|
491
|
+
};
|
|
492
|
+
static types(): {
|
|
493
|
+
[key: string]: any;
|
|
494
|
+
};
|
|
495
|
+
constructor(map?: {
|
|
496
|
+
[key: string]: any;
|
|
497
|
+
});
|
|
498
|
+
}
|
|
499
|
+
export declare class RunMarketingInformationExtractResponseBody extends $tea.Model {
|
|
500
|
+
/**
|
|
501
|
+
* @example
|
|
502
|
+
* {\\"TimeZone\\": \\"Asia/Shanghai\\", \\"DateTime\\": \\"2024-03-07T17:00:09+08:00\\"}
|
|
503
|
+
*/
|
|
504
|
+
end?: boolean;
|
|
505
|
+
header?: RunMarketingInformationExtractResponseBodyHeader;
|
|
506
|
+
payload?: RunMarketingInformationExtractResponseBodyPayload;
|
|
507
|
+
static names(): {
|
|
508
|
+
[key: string]: string;
|
|
509
|
+
};
|
|
510
|
+
static types(): {
|
|
511
|
+
[key: string]: any;
|
|
512
|
+
};
|
|
513
|
+
constructor(map?: {
|
|
514
|
+
[key: string]: any;
|
|
515
|
+
});
|
|
516
|
+
}
|
|
517
|
+
export declare class RunMarketingInformationExtractResponse extends $tea.Model {
|
|
518
|
+
headers?: {
|
|
519
|
+
[key: string]: string;
|
|
520
|
+
};
|
|
521
|
+
statusCode?: number;
|
|
522
|
+
body?: RunMarketingInformationExtractResponseBody;
|
|
523
|
+
static names(): {
|
|
524
|
+
[key: string]: string;
|
|
525
|
+
};
|
|
526
|
+
static types(): {
|
|
527
|
+
[key: string]: any;
|
|
528
|
+
};
|
|
529
|
+
constructor(map?: {
|
|
530
|
+
[key: string]: any;
|
|
531
|
+
});
|
|
532
|
+
}
|
|
533
|
+
export declare class RunMarketingInformationWritingRequest extends $tea.Model {
|
|
534
|
+
customPrompt?: string;
|
|
535
|
+
/**
|
|
536
|
+
* @example
|
|
537
|
+
* qwen-max
|
|
538
|
+
* qwen-plus
|
|
539
|
+
*/
|
|
540
|
+
modelId?: string;
|
|
541
|
+
sourceMaterial?: string;
|
|
542
|
+
writingType?: string;
|
|
543
|
+
static names(): {
|
|
544
|
+
[key: string]: string;
|
|
545
|
+
};
|
|
546
|
+
static types(): {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
};
|
|
549
|
+
constructor(map?: {
|
|
550
|
+
[key: string]: any;
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
export declare class RunMarketingInformationWritingResponseBody extends $tea.Model {
|
|
554
|
+
/**
|
|
555
|
+
* @example
|
|
556
|
+
* 2024-06-21T10:29:52+08:00
|
|
557
|
+
*/
|
|
558
|
+
end?: boolean;
|
|
559
|
+
header?: RunMarketingInformationWritingResponseBodyHeader;
|
|
560
|
+
payload?: RunMarketingInformationWritingResponseBodyPayload;
|
|
561
|
+
static names(): {
|
|
562
|
+
[key: string]: string;
|
|
563
|
+
};
|
|
564
|
+
static types(): {
|
|
565
|
+
[key: string]: any;
|
|
566
|
+
};
|
|
567
|
+
constructor(map?: {
|
|
568
|
+
[key: string]: any;
|
|
569
|
+
});
|
|
570
|
+
}
|
|
571
|
+
export declare class RunMarketingInformationWritingResponse extends $tea.Model {
|
|
572
|
+
headers?: {
|
|
573
|
+
[key: string]: string;
|
|
574
|
+
};
|
|
575
|
+
statusCode?: number;
|
|
576
|
+
body?: RunMarketingInformationWritingResponseBody;
|
|
577
|
+
static names(): {
|
|
578
|
+
[key: string]: string;
|
|
579
|
+
};
|
|
580
|
+
static types(): {
|
|
581
|
+
[key: string]: any;
|
|
582
|
+
};
|
|
583
|
+
constructor(map?: {
|
|
584
|
+
[key: string]: any;
|
|
585
|
+
});
|
|
586
|
+
}
|
|
587
|
+
export declare class RunScriptContinueRequest extends $tea.Model {
|
|
588
|
+
/**
|
|
589
|
+
* @example
|
|
590
|
+
* 一队全副武装的执法人员和消防员闯入了一间明显已被遗弃多日、门窗紧闭并用胶带封死的公寓,面对着屋内令人作呕的恶臭和门厅里的混乱场面,他们似乎在寻找某种隐藏的真相或危险源,而一封日期为16号的信件成为了揭开谜团的关键线索,随着便衣探员深入探索,一系列封闭的房间暗示着这里曾发生过不为人知的秘密事件。
|
|
591
|
+
*/
|
|
592
|
+
scriptSummary?: string;
|
|
593
|
+
/**
|
|
594
|
+
* @example
|
|
595
|
+
* 悬疑,都市,惊悚
|
|
596
|
+
*/
|
|
597
|
+
scriptTypeKeyword?: string;
|
|
598
|
+
/**
|
|
599
|
+
* @remarks
|
|
600
|
+
* This parameter is required.
|
|
601
|
+
*
|
|
602
|
+
* @example
|
|
603
|
+
* 门厅一片狼藉。朝向天井的窗户开着。公寓门突然被撞开了。\n一名便衣探员、两名穿制服的警察和几位消防员———也身着工作服———进来,四下张望。他们都戴着手套以及盖住口鼻的面罩。在他们身后,门房和他妻子也挤进门厅。他们都捂着鼻子。门房的另一只手里拿着一叠信件和促销广告单。他们身后,跟着一位女邻居。\n便衣探员(对门房和邻居):请在外面等候。\n他向一名警察示意,警察正忙着把好奇的旁观者请出门外。\n警察(对门房,指着那一叠信件):最近的一封是哪天的?\n门房(查对信件):最近的一封似乎是16号的......等一下......\n便衣探员想打开左侧的门,却是徒劳。门用胶带封上了。\n便衣探员(对消防员):你来试一下好吗?\n消防员摆弄门的时候,便衣探员进了卧室隔壁的餐厅。他迅速打开窗,转身,想经过对开门进左侧的房间。这两扇门也锁着,门缝被贴上了胶带。他右转进入起居室,也打开了窗户
|
|
604
|
+
*/
|
|
605
|
+
userProvidedContent?: string;
|
|
606
|
+
static names(): {
|
|
607
|
+
[key: string]: string;
|
|
608
|
+
};
|
|
609
|
+
static types(): {
|
|
610
|
+
[key: string]: any;
|
|
611
|
+
};
|
|
612
|
+
constructor(map?: {
|
|
613
|
+
[key: string]: any;
|
|
614
|
+
});
|
|
615
|
+
}
|
|
616
|
+
export declare class RunScriptContinueResponseBody extends $tea.Model {
|
|
617
|
+
end?: boolean;
|
|
618
|
+
header?: RunScriptContinueResponseBodyHeader;
|
|
619
|
+
payload?: RunScriptContinueResponseBodyPayload;
|
|
620
|
+
static names(): {
|
|
621
|
+
[key: string]: string;
|
|
622
|
+
};
|
|
623
|
+
static types(): {
|
|
624
|
+
[key: string]: any;
|
|
625
|
+
};
|
|
626
|
+
constructor(map?: {
|
|
627
|
+
[key: string]: any;
|
|
628
|
+
});
|
|
629
|
+
}
|
|
630
|
+
export declare class RunScriptContinueResponse extends $tea.Model {
|
|
631
|
+
headers?: {
|
|
632
|
+
[key: string]: string;
|
|
633
|
+
};
|
|
634
|
+
statusCode?: number;
|
|
635
|
+
body?: RunScriptContinueResponseBody;
|
|
636
|
+
static names(): {
|
|
637
|
+
[key: string]: string;
|
|
638
|
+
};
|
|
639
|
+
static types(): {
|
|
640
|
+
[key: string]: any;
|
|
641
|
+
};
|
|
642
|
+
constructor(map?: {
|
|
643
|
+
[key: string]: any;
|
|
644
|
+
});
|
|
645
|
+
}
|
|
646
|
+
export declare class RunScriptPlanningRequest extends $tea.Model {
|
|
647
|
+
/**
|
|
648
|
+
* @example
|
|
649
|
+
* 故事尽可能狗血
|
|
650
|
+
*/
|
|
651
|
+
additionalNote?: string;
|
|
652
|
+
dialogueInScene?: boolean;
|
|
653
|
+
plotConflict?: boolean;
|
|
654
|
+
/**
|
|
655
|
+
* @example
|
|
656
|
+
* 都市战神
|
|
657
|
+
*/
|
|
658
|
+
scriptName?: string;
|
|
659
|
+
/**
|
|
660
|
+
* @example
|
|
661
|
+
* 3
|
|
662
|
+
*/
|
|
663
|
+
scriptShotCount?: number;
|
|
664
|
+
/**
|
|
665
|
+
* @remarks
|
|
666
|
+
* This parameter is required.
|
|
667
|
+
*
|
|
668
|
+
* @example
|
|
669
|
+
* 在一个宁静的小镇上,每个家庭都在同一天收到一个神秘的、没有标记的包裹。
|
|
670
|
+
*/
|
|
671
|
+
scriptSummary?: string;
|
|
672
|
+
/**
|
|
673
|
+
* @example
|
|
674
|
+
* 现代,都市,爱情,玄幻
|
|
675
|
+
*/
|
|
676
|
+
scriptTypeKeyword?: string;
|
|
677
|
+
static names(): {
|
|
678
|
+
[key: string]: string;
|
|
679
|
+
};
|
|
680
|
+
static types(): {
|
|
681
|
+
[key: string]: any;
|
|
682
|
+
};
|
|
683
|
+
constructor(map?: {
|
|
684
|
+
[key: string]: any;
|
|
685
|
+
});
|
|
686
|
+
}
|
|
687
|
+
export declare class RunScriptPlanningResponseBody extends $tea.Model {
|
|
688
|
+
end?: boolean;
|
|
689
|
+
header?: RunScriptPlanningResponseBodyHeader;
|
|
690
|
+
payload?: RunScriptPlanningResponseBodyPayload;
|
|
691
|
+
static names(): {
|
|
692
|
+
[key: string]: string;
|
|
693
|
+
};
|
|
694
|
+
static types(): {
|
|
695
|
+
[key: string]: any;
|
|
696
|
+
};
|
|
697
|
+
constructor(map?: {
|
|
698
|
+
[key: string]: any;
|
|
699
|
+
});
|
|
700
|
+
}
|
|
701
|
+
export declare class RunScriptPlanningResponse extends $tea.Model {
|
|
702
|
+
headers?: {
|
|
703
|
+
[key: string]: string;
|
|
704
|
+
};
|
|
705
|
+
statusCode?: number;
|
|
706
|
+
body?: RunScriptPlanningResponseBody;
|
|
707
|
+
static names(): {
|
|
708
|
+
[key: string]: string;
|
|
709
|
+
};
|
|
710
|
+
static types(): {
|
|
711
|
+
[key: string]: any;
|
|
712
|
+
};
|
|
713
|
+
constructor(map?: {
|
|
714
|
+
[key: string]: any;
|
|
715
|
+
});
|
|
716
|
+
}
|
|
717
|
+
export declare class RunStyleWritingRequest extends $tea.Model {
|
|
369
718
|
/**
|
|
370
719
|
* @remarks
|
|
371
720
|
* This parameter is required.
|
|
@@ -419,18 +768,492 @@ export declare class RunStyleWritingShrinkRequest extends $tea.Model {
|
|
|
419
768
|
[key: string]: any;
|
|
420
769
|
});
|
|
421
770
|
}
|
|
422
|
-
export declare class RunStyleWritingResponseBody extends $tea.Model {
|
|
771
|
+
export declare class RunStyleWritingResponseBody extends $tea.Model {
|
|
772
|
+
/**
|
|
773
|
+
* @example
|
|
774
|
+
* true
|
|
775
|
+
*/
|
|
776
|
+
end?: boolean;
|
|
777
|
+
/**
|
|
778
|
+
* @example
|
|
779
|
+
* {"event":"task-progress-start-generating","sessionId":"3cd10828-0e42-471c-8f1a-931cde20b035","taskId":"d3be9981-ca2d-4e17-bf31-1c0a628e9f99","traceId":"66bef4a7f5d61ff3c43f3b710574e175"}
|
|
780
|
+
*/
|
|
781
|
+
header?: RunStyleWritingResponseBodyHeader;
|
|
782
|
+
payload?: RunStyleWritingResponseBodyPayload;
|
|
783
|
+
static names(): {
|
|
784
|
+
[key: string]: string;
|
|
785
|
+
};
|
|
786
|
+
static types(): {
|
|
787
|
+
[key: string]: any;
|
|
788
|
+
};
|
|
789
|
+
constructor(map?: {
|
|
790
|
+
[key: string]: any;
|
|
791
|
+
});
|
|
792
|
+
}
|
|
793
|
+
export declare class RunStyleWritingResponse extends $tea.Model {
|
|
794
|
+
headers?: {
|
|
795
|
+
[key: string]: string;
|
|
796
|
+
};
|
|
797
|
+
statusCode?: number;
|
|
798
|
+
body?: RunStyleWritingResponseBody;
|
|
799
|
+
static names(): {
|
|
800
|
+
[key: string]: string;
|
|
801
|
+
};
|
|
802
|
+
static types(): {
|
|
803
|
+
[key: string]: any;
|
|
804
|
+
};
|
|
805
|
+
constructor(map?: {
|
|
806
|
+
[key: string]: any;
|
|
807
|
+
});
|
|
808
|
+
}
|
|
809
|
+
export declare class RunVideoAnalysisRequest extends $tea.Model {
|
|
810
|
+
generateOptions?: string[];
|
|
811
|
+
modelCustomPromptTemplate?: string;
|
|
812
|
+
/**
|
|
813
|
+
* @example
|
|
814
|
+
* PlotDetail
|
|
815
|
+
*/
|
|
816
|
+
modelCustomPromptTemplateId?: string;
|
|
817
|
+
/**
|
|
818
|
+
* @example
|
|
819
|
+
* qwen-max
|
|
820
|
+
*/
|
|
821
|
+
modelId?: string;
|
|
822
|
+
/**
|
|
823
|
+
* @example
|
|
824
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5ax
|
|
825
|
+
*/
|
|
826
|
+
originalSessionId?: string;
|
|
827
|
+
snapshotInterval?: number;
|
|
828
|
+
/**
|
|
829
|
+
* @example
|
|
830
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
831
|
+
*/
|
|
832
|
+
taskId?: string;
|
|
833
|
+
videoExtraInfo?: string;
|
|
834
|
+
videoModelCustomPromptTemplate?: string;
|
|
835
|
+
/**
|
|
836
|
+
* @example
|
|
837
|
+
* qwen-vl-max
|
|
838
|
+
*/
|
|
839
|
+
videoModelId?: string;
|
|
840
|
+
/**
|
|
841
|
+
* @example
|
|
842
|
+
* http://xxxx.mp4
|
|
843
|
+
*/
|
|
844
|
+
videoUrl?: string;
|
|
845
|
+
static names(): {
|
|
846
|
+
[key: string]: string;
|
|
847
|
+
};
|
|
848
|
+
static types(): {
|
|
849
|
+
[key: string]: any;
|
|
850
|
+
};
|
|
851
|
+
constructor(map?: {
|
|
852
|
+
[key: string]: any;
|
|
853
|
+
});
|
|
854
|
+
}
|
|
855
|
+
export declare class RunVideoAnalysisShrinkRequest extends $tea.Model {
|
|
856
|
+
generateOptionsShrink?: string;
|
|
857
|
+
modelCustomPromptTemplate?: string;
|
|
858
|
+
/**
|
|
859
|
+
* @example
|
|
860
|
+
* PlotDetail
|
|
861
|
+
*/
|
|
862
|
+
modelCustomPromptTemplateId?: string;
|
|
863
|
+
/**
|
|
864
|
+
* @example
|
|
865
|
+
* qwen-max
|
|
866
|
+
*/
|
|
867
|
+
modelId?: string;
|
|
868
|
+
/**
|
|
869
|
+
* @example
|
|
870
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5ax
|
|
871
|
+
*/
|
|
872
|
+
originalSessionId?: string;
|
|
873
|
+
snapshotInterval?: number;
|
|
874
|
+
/**
|
|
875
|
+
* @example
|
|
876
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
877
|
+
*/
|
|
878
|
+
taskId?: string;
|
|
879
|
+
videoExtraInfo?: string;
|
|
880
|
+
videoModelCustomPromptTemplate?: string;
|
|
881
|
+
/**
|
|
882
|
+
* @example
|
|
883
|
+
* qwen-vl-max
|
|
884
|
+
*/
|
|
885
|
+
videoModelId?: string;
|
|
886
|
+
/**
|
|
887
|
+
* @example
|
|
888
|
+
* http://xxxx.mp4
|
|
889
|
+
*/
|
|
890
|
+
videoUrl?: string;
|
|
891
|
+
static names(): {
|
|
892
|
+
[key: string]: string;
|
|
893
|
+
};
|
|
894
|
+
static types(): {
|
|
895
|
+
[key: string]: any;
|
|
896
|
+
};
|
|
897
|
+
constructor(map?: {
|
|
898
|
+
[key: string]: any;
|
|
899
|
+
});
|
|
900
|
+
}
|
|
901
|
+
export declare class RunVideoAnalysisResponseBody extends $tea.Model {
|
|
902
|
+
header?: RunVideoAnalysisResponseBodyHeader;
|
|
903
|
+
payload?: RunVideoAnalysisResponseBodyPayload;
|
|
904
|
+
/**
|
|
905
|
+
* @example
|
|
906
|
+
* 117F5ABE-CF02-5502-9A3F-E56BC9081A64
|
|
907
|
+
*/
|
|
908
|
+
requestId?: string;
|
|
909
|
+
static names(): {
|
|
910
|
+
[key: string]: string;
|
|
911
|
+
};
|
|
912
|
+
static types(): {
|
|
913
|
+
[key: string]: any;
|
|
914
|
+
};
|
|
915
|
+
constructor(map?: {
|
|
916
|
+
[key: string]: any;
|
|
917
|
+
});
|
|
918
|
+
}
|
|
919
|
+
export declare class RunVideoAnalysisResponse extends $tea.Model {
|
|
920
|
+
headers?: {
|
|
921
|
+
[key: string]: string;
|
|
922
|
+
};
|
|
923
|
+
statusCode?: number;
|
|
924
|
+
body?: RunVideoAnalysisResponseBody;
|
|
925
|
+
static names(): {
|
|
926
|
+
[key: string]: string;
|
|
927
|
+
};
|
|
928
|
+
static types(): {
|
|
929
|
+
[key: string]: any;
|
|
930
|
+
};
|
|
931
|
+
constructor(map?: {
|
|
932
|
+
[key: string]: any;
|
|
933
|
+
});
|
|
934
|
+
}
|
|
935
|
+
export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImages extends $tea.Model {
|
|
936
|
+
/**
|
|
937
|
+
* @example
|
|
938
|
+
* http://xxx.com/xxx.jpeg
|
|
939
|
+
*/
|
|
940
|
+
url?: string;
|
|
941
|
+
static names(): {
|
|
942
|
+
[key: string]: string;
|
|
943
|
+
};
|
|
944
|
+
static types(): {
|
|
945
|
+
[key: string]: any;
|
|
946
|
+
};
|
|
947
|
+
constructor(map?: {
|
|
948
|
+
[key: string]: any;
|
|
949
|
+
});
|
|
950
|
+
}
|
|
951
|
+
export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummaries extends $tea.Model {
|
|
952
|
+
category?: string;
|
|
953
|
+
hotTopic?: string;
|
|
954
|
+
/**
|
|
955
|
+
* @example
|
|
956
|
+
* 2024-09-13_08
|
|
957
|
+
*/
|
|
958
|
+
hotTopicVersion?: string;
|
|
959
|
+
/**
|
|
960
|
+
* @example
|
|
961
|
+
* 1000000
|
|
962
|
+
*/
|
|
963
|
+
hotValue?: number;
|
|
964
|
+
/**
|
|
965
|
+
* @example
|
|
966
|
+
* 1458tb3bjo7531kap42a
|
|
967
|
+
*/
|
|
968
|
+
id?: string;
|
|
969
|
+
images?: GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImages[];
|
|
970
|
+
/**
|
|
971
|
+
* @example
|
|
972
|
+
* xxx
|
|
973
|
+
*/
|
|
974
|
+
textSummary?: string;
|
|
975
|
+
static names(): {
|
|
976
|
+
[key: string]: string;
|
|
977
|
+
};
|
|
978
|
+
static types(): {
|
|
979
|
+
[key: string]: any;
|
|
980
|
+
};
|
|
981
|
+
constructor(map?: {
|
|
982
|
+
[key: string]: any;
|
|
983
|
+
});
|
|
984
|
+
}
|
|
985
|
+
export declare class GenerateBroadcastNewsResponseBodyDataUsage extends $tea.Model {
|
|
986
|
+
/**
|
|
987
|
+
* @example
|
|
988
|
+
* 1
|
|
989
|
+
*/
|
|
990
|
+
inputTokens?: number;
|
|
991
|
+
/**
|
|
992
|
+
* @example
|
|
993
|
+
* 2
|
|
994
|
+
*/
|
|
995
|
+
outputTokens?: number;
|
|
996
|
+
/**
|
|
997
|
+
* @example
|
|
998
|
+
* 3
|
|
999
|
+
*/
|
|
1000
|
+
totalTokens?: number;
|
|
1001
|
+
static names(): {
|
|
1002
|
+
[key: string]: string;
|
|
1003
|
+
};
|
|
1004
|
+
static types(): {
|
|
1005
|
+
[key: string]: any;
|
|
1006
|
+
};
|
|
1007
|
+
constructor(map?: {
|
|
1008
|
+
[key: string]: any;
|
|
1009
|
+
});
|
|
1010
|
+
}
|
|
1011
|
+
export declare class GenerateBroadcastNewsResponseBodyData extends $tea.Model {
|
|
1012
|
+
hotTopicSummaries?: GenerateBroadcastNewsResponseBodyDataHotTopicSummaries[];
|
|
1013
|
+
/**
|
|
1014
|
+
* @example
|
|
1015
|
+
* 2bb0ea82dafd48a8817fadc4c90e2b52
|
|
1016
|
+
*/
|
|
1017
|
+
sessionId?: string;
|
|
1018
|
+
/**
|
|
1019
|
+
* @example
|
|
1020
|
+
* 3feb69ed02d9b1a17d0f1a942675d300
|
|
1021
|
+
*/
|
|
1022
|
+
taskId?: string;
|
|
1023
|
+
text?: string;
|
|
1024
|
+
usage?: GenerateBroadcastNewsResponseBodyDataUsage;
|
|
1025
|
+
static names(): {
|
|
1026
|
+
[key: string]: string;
|
|
1027
|
+
};
|
|
1028
|
+
static types(): {
|
|
1029
|
+
[key: string]: any;
|
|
1030
|
+
};
|
|
1031
|
+
constructor(map?: {
|
|
1032
|
+
[key: string]: any;
|
|
1033
|
+
});
|
|
1034
|
+
}
|
|
1035
|
+
export declare class ListHotTopicSummariesResponseBodyDataNewsComments extends $tea.Model {
|
|
1036
|
+
/**
|
|
1037
|
+
* @example
|
|
1038
|
+
* xx
|
|
1039
|
+
*/
|
|
1040
|
+
text?: string;
|
|
1041
|
+
static names(): {
|
|
1042
|
+
[key: string]: string;
|
|
1043
|
+
};
|
|
1044
|
+
static types(): {
|
|
1045
|
+
[key: string]: any;
|
|
1046
|
+
};
|
|
1047
|
+
constructor(map?: {
|
|
1048
|
+
[key: string]: any;
|
|
1049
|
+
});
|
|
1050
|
+
}
|
|
1051
|
+
export declare class ListHotTopicSummariesResponseBodyDataNews extends $tea.Model {
|
|
1052
|
+
comments?: ListHotTopicSummariesResponseBodyDataNewsComments[];
|
|
1053
|
+
/**
|
|
1054
|
+
* @example
|
|
1055
|
+
* xx
|
|
1056
|
+
*/
|
|
1057
|
+
content?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* @example
|
|
1060
|
+
* 2024-09-10 15:32:00
|
|
1061
|
+
*/
|
|
1062
|
+
pubTime?: string;
|
|
1063
|
+
/**
|
|
1064
|
+
* @example
|
|
1065
|
+
* xx
|
|
1066
|
+
*/
|
|
1067
|
+
title?: string;
|
|
1068
|
+
/**
|
|
1069
|
+
* @remarks
|
|
1070
|
+
* url
|
|
1071
|
+
*
|
|
1072
|
+
* @example
|
|
1073
|
+
* http://xxx
|
|
1074
|
+
*/
|
|
1075
|
+
url?: string;
|
|
1076
|
+
static names(): {
|
|
1077
|
+
[key: string]: string;
|
|
1078
|
+
};
|
|
1079
|
+
static types(): {
|
|
1080
|
+
[key: string]: any;
|
|
1081
|
+
};
|
|
1082
|
+
constructor(map?: {
|
|
1083
|
+
[key: string]: any;
|
|
1084
|
+
});
|
|
1085
|
+
}
|
|
1086
|
+
export declare class ListHotTopicSummariesResponseBodyDataSummarySummaries extends $tea.Model {
|
|
1087
|
+
/**
|
|
1088
|
+
* @example
|
|
1089
|
+
* xx
|
|
1090
|
+
*/
|
|
1091
|
+
summary?: string;
|
|
1092
|
+
/**
|
|
1093
|
+
* @example
|
|
1094
|
+
* xx
|
|
1095
|
+
*/
|
|
1096
|
+
title?: string;
|
|
1097
|
+
static names(): {
|
|
1098
|
+
[key: string]: string;
|
|
1099
|
+
};
|
|
1100
|
+
static types(): {
|
|
1101
|
+
[key: string]: any;
|
|
1102
|
+
};
|
|
1103
|
+
constructor(map?: {
|
|
1104
|
+
[key: string]: any;
|
|
1105
|
+
});
|
|
1106
|
+
}
|
|
1107
|
+
export declare class ListHotTopicSummariesResponseBodyDataSummary extends $tea.Model {
|
|
1108
|
+
summaries?: ListHotTopicSummariesResponseBodyDataSummarySummaries[];
|
|
1109
|
+
static names(): {
|
|
1110
|
+
[key: string]: string;
|
|
1111
|
+
};
|
|
1112
|
+
static types(): {
|
|
1113
|
+
[key: string]: any;
|
|
1114
|
+
};
|
|
1115
|
+
constructor(map?: {
|
|
1116
|
+
[key: string]: any;
|
|
1117
|
+
});
|
|
1118
|
+
}
|
|
1119
|
+
export declare class ListHotTopicSummariesResponseBodyData extends $tea.Model {
|
|
1120
|
+
category?: string;
|
|
1121
|
+
/**
|
|
1122
|
+
* @example
|
|
1123
|
+
* xx
|
|
1124
|
+
*/
|
|
1125
|
+
hotTopic?: string;
|
|
1126
|
+
/**
|
|
1127
|
+
* @example
|
|
1128
|
+
* 2024-09-13_12
|
|
1129
|
+
*/
|
|
1130
|
+
hotTopicVersion?: string;
|
|
1131
|
+
/**
|
|
1132
|
+
* @example
|
|
1133
|
+
* 1000000
|
|
1134
|
+
*/
|
|
1135
|
+
hotValue?: number;
|
|
1136
|
+
/**
|
|
1137
|
+
* @example
|
|
1138
|
+
* db5dc5b3d8954a30b65ba700c9dda3bb
|
|
1139
|
+
*/
|
|
1140
|
+
id?: string;
|
|
1141
|
+
news?: ListHotTopicSummariesResponseBodyDataNews[];
|
|
1142
|
+
summary?: ListHotTopicSummariesResponseBodyDataSummary;
|
|
1143
|
+
/**
|
|
1144
|
+
* @example
|
|
1145
|
+
* xx
|
|
1146
|
+
*/
|
|
1147
|
+
textSummary?: string;
|
|
1148
|
+
static names(): {
|
|
1149
|
+
[key: string]: string;
|
|
1150
|
+
};
|
|
1151
|
+
static types(): {
|
|
1152
|
+
[key: string]: any;
|
|
1153
|
+
};
|
|
1154
|
+
constructor(map?: {
|
|
1155
|
+
[key: string]: any;
|
|
1156
|
+
});
|
|
1157
|
+
}
|
|
1158
|
+
export declare class RunCommentGenerationResponseBodyHeader extends $tea.Model {
|
|
1159
|
+
/**
|
|
1160
|
+
* @example
|
|
1161
|
+
* result-generated
|
|
1162
|
+
*/
|
|
1163
|
+
event?: string;
|
|
1164
|
+
eventInfo?: string;
|
|
1165
|
+
/**
|
|
1166
|
+
* @example
|
|
1167
|
+
* F8A35034-EDCF-5C50-95A5-1044316F36E3
|
|
1168
|
+
*/
|
|
1169
|
+
requestId?: string;
|
|
1170
|
+
/**
|
|
1171
|
+
* @example
|
|
1172
|
+
* tcm9xac9dsfbfgm8hf5k94l3cqybwh9o3mn0iuyytdgd9qoejxf1crxsdvuvr8fu0zuhbe8anhdaoeif2wbkmebagnezh23cuhkiazx2tmjh4eml791eak7t95sshvtkz14bh2lnbktzvdhialzd8reoaem0pktw41slinwyoabe75xlnxsqb5eo1i6ly70
|
|
1173
|
+
*/
|
|
1174
|
+
sessionId?: string;
|
|
1175
|
+
/**
|
|
1176
|
+
* @example
|
|
1177
|
+
* task-fu1918oghtodbis3chgpfr
|
|
1178
|
+
*/
|
|
1179
|
+
taskId?: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* @example
|
|
1182
|
+
* 21507c3517074446017046500ed5f1
|
|
1183
|
+
*/
|
|
1184
|
+
traceId?: string;
|
|
1185
|
+
static names(): {
|
|
1186
|
+
[key: string]: string;
|
|
1187
|
+
};
|
|
1188
|
+
static types(): {
|
|
1189
|
+
[key: string]: any;
|
|
1190
|
+
};
|
|
1191
|
+
constructor(map?: {
|
|
1192
|
+
[key: string]: any;
|
|
1193
|
+
});
|
|
1194
|
+
}
|
|
1195
|
+
export declare class RunCommentGenerationResponseBodyPayloadOutput extends $tea.Model {
|
|
1196
|
+
text?: string;
|
|
1197
|
+
static names(): {
|
|
1198
|
+
[key: string]: string;
|
|
1199
|
+
};
|
|
1200
|
+
static types(): {
|
|
1201
|
+
[key: string]: any;
|
|
1202
|
+
};
|
|
1203
|
+
constructor(map?: {
|
|
1204
|
+
[key: string]: any;
|
|
1205
|
+
});
|
|
1206
|
+
}
|
|
1207
|
+
export declare class RunCommentGenerationResponseBodyPayloadUsage extends $tea.Model {
|
|
1208
|
+
/**
|
|
1209
|
+
* @example
|
|
1210
|
+
* 100
|
|
1211
|
+
*/
|
|
1212
|
+
inputTokens?: number;
|
|
1213
|
+
/**
|
|
1214
|
+
* @example
|
|
1215
|
+
* 100
|
|
1216
|
+
*/
|
|
1217
|
+
outputTokens?: number;
|
|
1218
|
+
/**
|
|
1219
|
+
* @example
|
|
1220
|
+
* 200
|
|
1221
|
+
*/
|
|
1222
|
+
totalTokens?: number;
|
|
1223
|
+
static names(): {
|
|
1224
|
+
[key: string]: string;
|
|
1225
|
+
};
|
|
1226
|
+
static types(): {
|
|
1227
|
+
[key: string]: any;
|
|
1228
|
+
};
|
|
1229
|
+
constructor(map?: {
|
|
1230
|
+
[key: string]: any;
|
|
1231
|
+
});
|
|
1232
|
+
}
|
|
1233
|
+
export declare class RunCommentGenerationResponseBodyPayload extends $tea.Model {
|
|
1234
|
+
output?: RunCommentGenerationResponseBodyPayloadOutput;
|
|
1235
|
+
usage?: RunCommentGenerationResponseBodyPayloadUsage;
|
|
1236
|
+
static names(): {
|
|
1237
|
+
[key: string]: string;
|
|
1238
|
+
};
|
|
1239
|
+
static types(): {
|
|
1240
|
+
[key: string]: any;
|
|
1241
|
+
};
|
|
1242
|
+
constructor(map?: {
|
|
1243
|
+
[key: string]: any;
|
|
1244
|
+
});
|
|
1245
|
+
}
|
|
1246
|
+
export declare class RunHotTopicChatRequestStepForBroadcastContentConfigCustomHotValueWeights extends $tea.Model {
|
|
423
1247
|
/**
|
|
424
1248
|
* @example
|
|
425
|
-
*
|
|
1249
|
+
* comments
|
|
426
1250
|
*/
|
|
427
|
-
|
|
1251
|
+
dimension?: string;
|
|
428
1252
|
/**
|
|
429
1253
|
* @example
|
|
430
|
-
*
|
|
1254
|
+
* 1
|
|
431
1255
|
*/
|
|
432
|
-
|
|
433
|
-
payload?: RunStyleWritingResponseBodyPayload;
|
|
1256
|
+
weight?: number;
|
|
434
1257
|
static names(): {
|
|
435
1258
|
[key: string]: string;
|
|
436
1259
|
};
|
|
@@ -441,12 +1264,14 @@ export declare class RunStyleWritingResponseBody extends $tea.Model {
|
|
|
441
1264
|
[key: string]: any;
|
|
442
1265
|
});
|
|
443
1266
|
}
|
|
444
|
-
export declare class
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
1267
|
+
export declare class RunHotTopicChatRequestStepForBroadcastContentConfig extends $tea.Model {
|
|
1268
|
+
categories?: string[];
|
|
1269
|
+
customHotValueWeights?: RunHotTopicChatRequestStepForBroadcastContentConfigCustomHotValueWeights[];
|
|
1270
|
+
/**
|
|
1271
|
+
* @example
|
|
1272
|
+
* 20
|
|
1273
|
+
*/
|
|
1274
|
+
topicCount?: number;
|
|
450
1275
|
static names(): {
|
|
451
1276
|
[key: string]: string;
|
|
452
1277
|
};
|
|
@@ -457,40 +1282,42 @@ export declare class RunStyleWritingResponse extends $tea.Model {
|
|
|
457
1282
|
[key: string]: any;
|
|
458
1283
|
});
|
|
459
1284
|
}
|
|
460
|
-
export declare class
|
|
461
|
-
generateOptions?: string[];
|
|
462
|
-
modelCustomPromptTemplate?: string;
|
|
1285
|
+
export declare class RunHotTopicChatResponseBodyHeader extends $tea.Model {
|
|
463
1286
|
/**
|
|
464
1287
|
* @example
|
|
465
|
-
*
|
|
1288
|
+
* InvalidParam
|
|
466
1289
|
*/
|
|
467
|
-
|
|
1290
|
+
errorCode?: string;
|
|
468
1291
|
/**
|
|
469
1292
|
* @example
|
|
470
|
-
*
|
|
1293
|
+
* xx
|
|
471
1294
|
*/
|
|
472
|
-
|
|
1295
|
+
errorMessage?: string;
|
|
473
1296
|
/**
|
|
474
1297
|
* @example
|
|
475
|
-
*
|
|
1298
|
+
* task-finished
|
|
476
1299
|
*/
|
|
477
|
-
|
|
1300
|
+
event?: string;
|
|
478
1301
|
/**
|
|
479
1302
|
* @example
|
|
480
|
-
*
|
|
1303
|
+
* xx
|
|
481
1304
|
*/
|
|
482
|
-
|
|
483
|
-
videoModelCustomPromptTemplate?: string;
|
|
1305
|
+
eventInfo?: string;
|
|
484
1306
|
/**
|
|
485
1307
|
* @example
|
|
486
|
-
*
|
|
1308
|
+
* xxx
|
|
487
1309
|
*/
|
|
488
|
-
|
|
1310
|
+
sessionId?: string;
|
|
489
1311
|
/**
|
|
490
1312
|
* @example
|
|
491
|
-
*
|
|
1313
|
+
* d3be9981-ca2d-4e17-bf31-1c0a628e9f99
|
|
492
1314
|
*/
|
|
493
|
-
|
|
1315
|
+
taskId?: string;
|
|
1316
|
+
/**
|
|
1317
|
+
* @example
|
|
1318
|
+
* 2150451a17191950923411783e2927
|
|
1319
|
+
*/
|
|
1320
|
+
traceId?: string;
|
|
494
1321
|
static names(): {
|
|
495
1322
|
[key: string]: string;
|
|
496
1323
|
};
|
|
@@ -501,40 +1328,35 @@ export declare class RunVideoAnalysisRequest extends $tea.Model {
|
|
|
501
1328
|
[key: string]: any;
|
|
502
1329
|
});
|
|
503
1330
|
}
|
|
504
|
-
export declare class
|
|
505
|
-
generateOptionsShrink?: string;
|
|
506
|
-
modelCustomPromptTemplate?: string;
|
|
507
|
-
/**
|
|
508
|
-
* @example
|
|
509
|
-
* PlotDetail
|
|
510
|
-
*/
|
|
511
|
-
modelCustomPromptTemplateId?: string;
|
|
1331
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutputArticles extends $tea.Model {
|
|
512
1332
|
/**
|
|
513
1333
|
* @example
|
|
514
|
-
*
|
|
1334
|
+
* xxx
|
|
515
1335
|
*/
|
|
516
|
-
|
|
1336
|
+
content?: string;
|
|
517
1337
|
/**
|
|
518
1338
|
* @example
|
|
519
|
-
*
|
|
1339
|
+
* 2024-09-22 16:45:06
|
|
520
1340
|
*/
|
|
521
|
-
|
|
1341
|
+
pubTime?: string;
|
|
1342
|
+
score?: number;
|
|
1343
|
+
searchSourceName?: string;
|
|
1344
|
+
select?: boolean;
|
|
522
1345
|
/**
|
|
523
1346
|
* @example
|
|
524
|
-
*
|
|
1347
|
+
* xx
|
|
525
1348
|
*/
|
|
526
|
-
|
|
527
|
-
videoModelCustomPromptTemplate?: string;
|
|
1349
|
+
summary?: string;
|
|
528
1350
|
/**
|
|
529
1351
|
* @example
|
|
530
|
-
*
|
|
1352
|
+
* test
|
|
531
1353
|
*/
|
|
532
|
-
|
|
1354
|
+
title?: string;
|
|
533
1355
|
/**
|
|
534
1356
|
* @example
|
|
535
|
-
* http://
|
|
1357
|
+
* http://xxx
|
|
536
1358
|
*/
|
|
537
|
-
|
|
1359
|
+
url?: string;
|
|
538
1360
|
static names(): {
|
|
539
1361
|
[key: string]: string;
|
|
540
1362
|
};
|
|
@@ -545,14 +1367,27 @@ export declare class RunVideoAnalysisShrinkRequest extends $tea.Model {
|
|
|
545
1367
|
[key: string]: any;
|
|
546
1368
|
});
|
|
547
1369
|
}
|
|
548
|
-
export declare class
|
|
549
|
-
header?: RunVideoAnalysisResponseBodyHeader;
|
|
550
|
-
payload?: RunVideoAnalysisResponseBodyPayload;
|
|
1370
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutputHotTopicSummaries extends $tea.Model {
|
|
551
1371
|
/**
|
|
552
1372
|
* @example
|
|
553
|
-
*
|
|
1373
|
+
* 100000
|
|
554
1374
|
*/
|
|
555
|
-
|
|
1375
|
+
customHotValue?: number;
|
|
1376
|
+
/**
|
|
1377
|
+
* @example
|
|
1378
|
+
* xx
|
|
1379
|
+
*/
|
|
1380
|
+
hotTopic?: string;
|
|
1381
|
+
/**
|
|
1382
|
+
* @example
|
|
1383
|
+
* 2024-09-13_08
|
|
1384
|
+
*/
|
|
1385
|
+
hotTopicVersion?: string;
|
|
1386
|
+
/**
|
|
1387
|
+
* @example
|
|
1388
|
+
* 100000
|
|
1389
|
+
*/
|
|
1390
|
+
hotValue?: number;
|
|
556
1391
|
static names(): {
|
|
557
1392
|
[key: string]: string;
|
|
558
1393
|
};
|
|
@@ -563,12 +1398,18 @@ export declare class RunVideoAnalysisResponseBody extends $tea.Model {
|
|
|
563
1398
|
[key: string]: any;
|
|
564
1399
|
});
|
|
565
1400
|
}
|
|
566
|
-
export declare class
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
1401
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutputMultimodalMedias extends $tea.Model {
|
|
1402
|
+
/**
|
|
1403
|
+
* @example
|
|
1404
|
+
* http://xxxx
|
|
1405
|
+
*/
|
|
1406
|
+
fileUrl?: string;
|
|
1407
|
+
/**
|
|
1408
|
+
* @example
|
|
1409
|
+
* image
|
|
1410
|
+
*/
|
|
1411
|
+
mediaType?: string;
|
|
1412
|
+
sortScore?: number;
|
|
572
1413
|
static names(): {
|
|
573
1414
|
[key: string]: string;
|
|
574
1415
|
};
|
|
@@ -579,7 +1420,12 @@ export declare class RunVideoAnalysisResponse extends $tea.Model {
|
|
|
579
1420
|
[key: string]: any;
|
|
580
1421
|
});
|
|
581
1422
|
}
|
|
582
|
-
export declare class
|
|
1423
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutput extends $tea.Model {
|
|
1424
|
+
articles?: RunHotTopicChatResponseBodyPayloadOutputArticles[];
|
|
1425
|
+
hotTopicSummaries?: RunHotTopicChatResponseBodyPayloadOutputHotTopicSummaries[];
|
|
1426
|
+
multimodalMedias?: RunHotTopicChatResponseBodyPayloadOutputMultimodalMedias[];
|
|
1427
|
+
recommendQueries?: string[];
|
|
1428
|
+
searchQuery?: string;
|
|
583
1429
|
/**
|
|
584
1430
|
* @example
|
|
585
1431
|
* xx
|
|
@@ -595,31 +1441,64 @@ export declare class ListHotTopicSummariesResponseBodyDataNewsComments extends $
|
|
|
595
1441
|
[key: string]: any;
|
|
596
1442
|
});
|
|
597
1443
|
}
|
|
598
|
-
export declare class
|
|
599
|
-
comments?: ListHotTopicSummariesResponseBodyDataNewsComments[];
|
|
1444
|
+
export declare class RunHotTopicChatResponseBodyPayloadUsage extends $tea.Model {
|
|
600
1445
|
/**
|
|
601
1446
|
* @example
|
|
602
|
-
*
|
|
1447
|
+
* 100
|
|
603
1448
|
*/
|
|
604
|
-
|
|
1449
|
+
inputTokens?: number;
|
|
605
1450
|
/**
|
|
606
1451
|
* @example
|
|
607
|
-
*
|
|
1452
|
+
* 100
|
|
608
1453
|
*/
|
|
609
|
-
|
|
1454
|
+
outputTokens?: number;
|
|
610
1455
|
/**
|
|
611
1456
|
* @example
|
|
612
|
-
*
|
|
1457
|
+
* 200
|
|
613
1458
|
*/
|
|
614
|
-
|
|
1459
|
+
totalTokens?: number;
|
|
1460
|
+
static names(): {
|
|
1461
|
+
[key: string]: string;
|
|
1462
|
+
};
|
|
1463
|
+
static types(): {
|
|
1464
|
+
[key: string]: any;
|
|
1465
|
+
};
|
|
1466
|
+
constructor(map?: {
|
|
1467
|
+
[key: string]: any;
|
|
1468
|
+
});
|
|
1469
|
+
}
|
|
1470
|
+
export declare class RunHotTopicChatResponseBodyPayload extends $tea.Model {
|
|
1471
|
+
output?: RunHotTopicChatResponseBodyPayloadOutput;
|
|
1472
|
+
usage?: RunHotTopicChatResponseBodyPayloadUsage;
|
|
1473
|
+
static names(): {
|
|
1474
|
+
[key: string]: string;
|
|
1475
|
+
};
|
|
1476
|
+
static types(): {
|
|
1477
|
+
[key: string]: any;
|
|
1478
|
+
};
|
|
1479
|
+
constructor(map?: {
|
|
1480
|
+
[key: string]: any;
|
|
1481
|
+
});
|
|
1482
|
+
}
|
|
1483
|
+
export declare class RunHotTopicSummaryRequestStepForCustomSummaryStyleConfig extends $tea.Model {
|
|
1484
|
+
/**
|
|
1485
|
+
* @example
|
|
1486
|
+
* 2
|
|
1487
|
+
*/
|
|
1488
|
+
summaryImageCount?: number;
|
|
615
1489
|
/**
|
|
616
1490
|
* @remarks
|
|
617
|
-
*
|
|
1491
|
+
* This parameter is required.
|
|
618
1492
|
*
|
|
619
1493
|
* @example
|
|
620
|
-
*
|
|
1494
|
+
* qwen-max
|
|
621
1495
|
*/
|
|
622
|
-
|
|
1496
|
+
summaryModel?: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* @example
|
|
1499
|
+
* xxxx
|
|
1500
|
+
*/
|
|
1501
|
+
summaryPrompt?: string;
|
|
623
1502
|
static names(): {
|
|
624
1503
|
[key: string]: string;
|
|
625
1504
|
};
|
|
@@ -630,17 +1509,37 @@ export declare class ListHotTopicSummariesResponseBodyDataNews extends $tea.Mode
|
|
|
630
1509
|
[key: string]: any;
|
|
631
1510
|
});
|
|
632
1511
|
}
|
|
633
|
-
export declare class
|
|
1512
|
+
export declare class RunHotTopicSummaryResponseBodyHeader extends $tea.Model {
|
|
634
1513
|
/**
|
|
635
1514
|
* @example
|
|
636
|
-
*
|
|
1515
|
+
* AccessForbidden
|
|
637
1516
|
*/
|
|
638
|
-
|
|
1517
|
+
errorCode?: string;
|
|
639
1518
|
/**
|
|
640
1519
|
* @example
|
|
641
|
-
*
|
|
1520
|
+
* 错误信息
|
|
642
1521
|
*/
|
|
643
|
-
|
|
1522
|
+
errorMessage?: string;
|
|
1523
|
+
/**
|
|
1524
|
+
* @example
|
|
1525
|
+
* task-finished
|
|
1526
|
+
*/
|
|
1527
|
+
event?: string;
|
|
1528
|
+
/**
|
|
1529
|
+
* @example
|
|
1530
|
+
* xxxx
|
|
1531
|
+
*/
|
|
1532
|
+
sessionId?: string;
|
|
1533
|
+
/**
|
|
1534
|
+
* @example
|
|
1535
|
+
* xxxx
|
|
1536
|
+
*/
|
|
1537
|
+
taskId?: string;
|
|
1538
|
+
/**
|
|
1539
|
+
* @example
|
|
1540
|
+
* xxxxx
|
|
1541
|
+
*/
|
|
1542
|
+
traceId?: string;
|
|
644
1543
|
static names(): {
|
|
645
1544
|
[key: string]: string;
|
|
646
1545
|
};
|
|
@@ -651,8 +1550,9 @@ export declare class ListHotTopicSummariesResponseBodyDataSummarySummaries exten
|
|
|
651
1550
|
[key: string]: any;
|
|
652
1551
|
});
|
|
653
1552
|
}
|
|
654
|
-
export declare class
|
|
655
|
-
|
|
1553
|
+
export declare class RunHotTopicSummaryResponseBodyPayloadOutput extends $tea.Model {
|
|
1554
|
+
text?: string;
|
|
1555
|
+
topicId?: string;
|
|
656
1556
|
static names(): {
|
|
657
1557
|
[key: string]: string;
|
|
658
1558
|
};
|
|
@@ -663,35 +1563,35 @@ export declare class ListHotTopicSummariesResponseBodyDataSummary extends $tea.M
|
|
|
663
1563
|
[key: string]: any;
|
|
664
1564
|
});
|
|
665
1565
|
}
|
|
666
|
-
export declare class
|
|
667
|
-
category?: string;
|
|
668
|
-
/**
|
|
669
|
-
* @example
|
|
670
|
-
* xx
|
|
671
|
-
*/
|
|
672
|
-
hotTopic?: string;
|
|
673
|
-
/**
|
|
674
|
-
* @example
|
|
675
|
-
* 2024-09-13_12
|
|
676
|
-
*/
|
|
677
|
-
hotTopicVersion?: string;
|
|
1566
|
+
export declare class RunHotTopicSummaryResponseBodyPayloadUsage extends $tea.Model {
|
|
678
1567
|
/**
|
|
679
1568
|
* @example
|
|
680
|
-
*
|
|
1569
|
+
* 100
|
|
681
1570
|
*/
|
|
682
|
-
|
|
1571
|
+
inputTokens?: number;
|
|
683
1572
|
/**
|
|
684
1573
|
* @example
|
|
685
|
-
*
|
|
1574
|
+
* 100
|
|
686
1575
|
*/
|
|
687
|
-
|
|
688
|
-
news?: ListHotTopicSummariesResponseBodyDataNews[];
|
|
689
|
-
summary?: ListHotTopicSummariesResponseBodyDataSummary;
|
|
1576
|
+
outputTokens?: number;
|
|
690
1577
|
/**
|
|
691
1578
|
* @example
|
|
692
|
-
*
|
|
1579
|
+
* 200
|
|
693
1580
|
*/
|
|
694
|
-
|
|
1581
|
+
totalTokens?: number;
|
|
1582
|
+
static names(): {
|
|
1583
|
+
[key: string]: string;
|
|
1584
|
+
};
|
|
1585
|
+
static types(): {
|
|
1586
|
+
[key: string]: any;
|
|
1587
|
+
};
|
|
1588
|
+
constructor(map?: {
|
|
1589
|
+
[key: string]: any;
|
|
1590
|
+
});
|
|
1591
|
+
}
|
|
1592
|
+
export declare class RunHotTopicSummaryResponseBodyPayload extends $tea.Model {
|
|
1593
|
+
output?: RunHotTopicSummaryResponseBodyPayloadOutput;
|
|
1594
|
+
usage?: RunHotTopicSummaryResponseBodyPayloadUsage;
|
|
695
1595
|
static names(): {
|
|
696
1596
|
[key: string]: string;
|
|
697
1597
|
};
|
|
@@ -1577,6 +2477,24 @@ export default class Client extends OpenApi {
|
|
|
1577
2477
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1578
2478
|
[key: string]: string;
|
|
1579
2479
|
}, endpoint: string): string;
|
|
2480
|
+
/**
|
|
2481
|
+
* 新闻播报-抽取分类获取播报热点
|
|
2482
|
+
*
|
|
2483
|
+
* @param request - GenerateBroadcastNewsRequest
|
|
2484
|
+
* @param headers - map
|
|
2485
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2486
|
+
* @returns GenerateBroadcastNewsResponse
|
|
2487
|
+
*/
|
|
2488
|
+
generateBroadcastNewsWithOptions(workspaceId: string, request: GenerateBroadcastNewsRequest, headers: {
|
|
2489
|
+
[key: string]: string;
|
|
2490
|
+
}, runtime: $Util.RuntimeOptions): Promise<GenerateBroadcastNewsResponse>;
|
|
2491
|
+
/**
|
|
2492
|
+
* 新闻播报-抽取分类获取播报热点
|
|
2493
|
+
*
|
|
2494
|
+
* @param request - GenerateBroadcastNewsRequest
|
|
2495
|
+
* @returns GenerateBroadcastNewsResponse
|
|
2496
|
+
*/
|
|
2497
|
+
generateBroadcastNews(workspaceId: string, request: GenerateBroadcastNewsRequest): Promise<GenerateBroadcastNewsResponse>;
|
|
1580
2498
|
/**
|
|
1581
2499
|
* 轻应用-新闻播报-获取热点话题摘要列表
|
|
1582
2500
|
*
|
|
@@ -1595,6 +2513,60 @@ export default class Client extends OpenApi {
|
|
|
1595
2513
|
* @returns ListHotTopicSummariesResponse
|
|
1596
2514
|
*/
|
|
1597
2515
|
listHotTopicSummaries(workspaceId: string, request: ListHotTopicSummariesRequest): Promise<ListHotTopicSummariesResponse>;
|
|
2516
|
+
/**
|
|
2517
|
+
* 评论生成服务
|
|
2518
|
+
*
|
|
2519
|
+
* @param request - RunCommentGenerationRequest
|
|
2520
|
+
* @param headers - map
|
|
2521
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2522
|
+
* @returns RunCommentGenerationResponse
|
|
2523
|
+
*/
|
|
2524
|
+
runCommentGenerationWithOptions(workspaceId: string, request: RunCommentGenerationRequest, headers: {
|
|
2525
|
+
[key: string]: string;
|
|
2526
|
+
}, runtime: $Util.RuntimeOptions): Promise<RunCommentGenerationResponse>;
|
|
2527
|
+
/**
|
|
2528
|
+
* 评论生成服务
|
|
2529
|
+
*
|
|
2530
|
+
* @param request - RunCommentGenerationRequest
|
|
2531
|
+
* @returns RunCommentGenerationResponse
|
|
2532
|
+
*/
|
|
2533
|
+
runCommentGeneration(workspaceId: string, request: RunCommentGenerationRequest): Promise<RunCommentGenerationResponse>;
|
|
2534
|
+
/**
|
|
2535
|
+
* 轻应用-热点播报-问答
|
|
2536
|
+
*
|
|
2537
|
+
* @param tmpReq - RunHotTopicChatRequest
|
|
2538
|
+
* @param headers - map
|
|
2539
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2540
|
+
* @returns RunHotTopicChatResponse
|
|
2541
|
+
*/
|
|
2542
|
+
runHotTopicChatWithOptions(workspaceId: string, tmpReq: RunHotTopicChatRequest, headers: {
|
|
2543
|
+
[key: string]: string;
|
|
2544
|
+
}, runtime: $Util.RuntimeOptions): Promise<RunHotTopicChatResponse>;
|
|
2545
|
+
/**
|
|
2546
|
+
* 轻应用-热点播报-问答
|
|
2547
|
+
*
|
|
2548
|
+
* @param request - RunHotTopicChatRequest
|
|
2549
|
+
* @returns RunHotTopicChatResponse
|
|
2550
|
+
*/
|
|
2551
|
+
runHotTopicChat(workspaceId: string, request: RunHotTopicChatRequest): Promise<RunHotTopicChatResponse>;
|
|
2552
|
+
/**
|
|
2553
|
+
* 轻应用-热点播报-热点摘要生成
|
|
2554
|
+
*
|
|
2555
|
+
* @param tmpReq - RunHotTopicSummaryRequest
|
|
2556
|
+
* @param headers - map
|
|
2557
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2558
|
+
* @returns RunHotTopicSummaryResponse
|
|
2559
|
+
*/
|
|
2560
|
+
runHotTopicSummaryWithOptions(workspaceId: string, tmpReq: RunHotTopicSummaryRequest, headers: {
|
|
2561
|
+
[key: string]: string;
|
|
2562
|
+
}, runtime: $Util.RuntimeOptions): Promise<RunHotTopicSummaryResponse>;
|
|
2563
|
+
/**
|
|
2564
|
+
* 轻应用-热点播报-热点摘要生成
|
|
2565
|
+
*
|
|
2566
|
+
* @param request - RunHotTopicSummaryRequest
|
|
2567
|
+
* @returns RunHotTopicSummaryResponse
|
|
2568
|
+
*/
|
|
2569
|
+
runHotTopicSummary(workspaceId: string, request: RunHotTopicSummaryRequest): Promise<RunHotTopicSummaryResponse>;
|
|
1598
2570
|
/**
|
|
1599
2571
|
* 营销信息抽取服务
|
|
1600
2572
|
*
|