@alicloud/quanmiaolightapp20240801 1.4.0 → 1.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 +761 -136
- package/dist/client.js +653 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1527 -464
package/dist/client.d.ts
CHANGED
|
@@ -229,6 +229,233 @@ export declare class RunCommentGenerationResponse extends $tea.Model {
|
|
|
229
229
|
[key: string]: any;
|
|
230
230
|
});
|
|
231
231
|
}
|
|
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;
|
|
251
|
+
/**
|
|
252
|
+
* @example
|
|
253
|
+
* qwen-max
|
|
254
|
+
*/
|
|
255
|
+
modelId?: string;
|
|
256
|
+
/**
|
|
257
|
+
* @example
|
|
258
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5ax
|
|
259
|
+
*/
|
|
260
|
+
originalSessionId?: string;
|
|
261
|
+
prompt?: string;
|
|
262
|
+
stepForBroadcastContentConfig?: RunHotTopicChatRequestStepForBroadcastContentConfig;
|
|
263
|
+
/**
|
|
264
|
+
* @example
|
|
265
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
266
|
+
*/
|
|
267
|
+
taskId?: string;
|
|
268
|
+
static names(): {
|
|
269
|
+
[key: string]: string;
|
|
270
|
+
};
|
|
271
|
+
static types(): {
|
|
272
|
+
[key: string]: any;
|
|
273
|
+
};
|
|
274
|
+
constructor(map?: {
|
|
275
|
+
[key: string]: any;
|
|
276
|
+
});
|
|
277
|
+
}
|
|
278
|
+
export declare class RunHotTopicChatShrinkRequest extends $tea.Model {
|
|
279
|
+
category?: string;
|
|
280
|
+
generateOptionsShrink?: string;
|
|
281
|
+
/**
|
|
282
|
+
* @example
|
|
283
|
+
* 2024-09-13_12
|
|
284
|
+
*/
|
|
285
|
+
hotTopicVersion?: string;
|
|
286
|
+
hotTopicsShrink?: string;
|
|
287
|
+
/**
|
|
288
|
+
* @example
|
|
289
|
+
* 1
|
|
290
|
+
*/
|
|
291
|
+
imageCount?: number;
|
|
292
|
+
/**
|
|
293
|
+
* @example
|
|
294
|
+
* xx
|
|
295
|
+
*/
|
|
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;
|
|
314
|
+
static names(): {
|
|
315
|
+
[key: string]: string;
|
|
316
|
+
};
|
|
317
|
+
static types(): {
|
|
318
|
+
[key: string]: any;
|
|
319
|
+
};
|
|
320
|
+
constructor(map?: {
|
|
321
|
+
[key: string]: any;
|
|
322
|
+
});
|
|
323
|
+
}
|
|
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;
|
|
332
|
+
static names(): {
|
|
333
|
+
[key: string]: string;
|
|
334
|
+
};
|
|
335
|
+
static types(): {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
};
|
|
338
|
+
constructor(map?: {
|
|
339
|
+
[key: string]: any;
|
|
340
|
+
});
|
|
341
|
+
}
|
|
342
|
+
export declare class RunHotTopicChatResponse extends $tea.Model {
|
|
343
|
+
headers?: {
|
|
344
|
+
[key: string]: string;
|
|
345
|
+
};
|
|
346
|
+
statusCode?: number;
|
|
347
|
+
body?: RunHotTopicChatResponseBody;
|
|
348
|
+
static names(): {
|
|
349
|
+
[key: string]: string;
|
|
350
|
+
};
|
|
351
|
+
static types(): {
|
|
352
|
+
[key: string]: any;
|
|
353
|
+
};
|
|
354
|
+
constructor(map?: {
|
|
355
|
+
[key: string]: any;
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
export declare class RunHotTopicSummaryRequest extends $tea.Model {
|
|
359
|
+
/**
|
|
360
|
+
* @remarks
|
|
361
|
+
* This parameter is required.
|
|
362
|
+
*
|
|
363
|
+
* @example
|
|
364
|
+
* 2024-10-16_8
|
|
365
|
+
*/
|
|
366
|
+
hotTopicVersion?: string;
|
|
367
|
+
/**
|
|
368
|
+
* @remarks
|
|
369
|
+
* This parameter is required.
|
|
370
|
+
*/
|
|
371
|
+
stepForCustomSummaryStyleConfig?: RunHotTopicSummaryRequestStepForCustomSummaryStyleConfig;
|
|
372
|
+
/**
|
|
373
|
+
* @remarks
|
|
374
|
+
* This parameter is required.
|
|
375
|
+
*
|
|
376
|
+
* @example
|
|
377
|
+
* xxxxx
|
|
378
|
+
*/
|
|
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 {
|
|
391
|
+
/**
|
|
392
|
+
* @remarks
|
|
393
|
+
* This parameter is required.
|
|
394
|
+
*
|
|
395
|
+
* @example
|
|
396
|
+
* 2024-10-16_8
|
|
397
|
+
*/
|
|
398
|
+
hotTopicVersion?: string;
|
|
399
|
+
/**
|
|
400
|
+
* @remarks
|
|
401
|
+
* This parameter is required.
|
|
402
|
+
*/
|
|
403
|
+
stepForCustomSummaryStyleConfigShrink?: string;
|
|
404
|
+
/**
|
|
405
|
+
* @remarks
|
|
406
|
+
* This parameter is required.
|
|
407
|
+
*
|
|
408
|
+
* @example
|
|
409
|
+
* xxxxx
|
|
410
|
+
*/
|
|
411
|
+
topicIdsShrink?: string;
|
|
412
|
+
static names(): {
|
|
413
|
+
[key: string]: string;
|
|
414
|
+
};
|
|
415
|
+
static types(): {
|
|
416
|
+
[key: string]: any;
|
|
417
|
+
};
|
|
418
|
+
constructor(map?: {
|
|
419
|
+
[key: string]: any;
|
|
420
|
+
});
|
|
421
|
+
}
|
|
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;
|
|
433
|
+
static names(): {
|
|
434
|
+
[key: string]: string;
|
|
435
|
+
};
|
|
436
|
+
static types(): {
|
|
437
|
+
[key: string]: any;
|
|
438
|
+
};
|
|
439
|
+
constructor(map?: {
|
|
440
|
+
[key: string]: any;
|
|
441
|
+
});
|
|
442
|
+
}
|
|
443
|
+
export declare class RunHotTopicSummaryResponse extends $tea.Model {
|
|
444
|
+
headers?: {
|
|
445
|
+
[key: string]: string;
|
|
446
|
+
};
|
|
447
|
+
statusCode?: number;
|
|
448
|
+
body?: RunHotTopicSummaryResponseBody;
|
|
449
|
+
static names(): {
|
|
450
|
+
[key: string]: string;
|
|
451
|
+
};
|
|
452
|
+
static types(): {
|
|
453
|
+
[key: string]: any;
|
|
454
|
+
};
|
|
455
|
+
constructor(map?: {
|
|
456
|
+
[key: string]: any;
|
|
457
|
+
});
|
|
458
|
+
}
|
|
232
459
|
export declare class RunMarketingInformationExtractRequest extends $tea.Model {
|
|
233
460
|
customPrompt?: string;
|
|
234
461
|
extractType?: string;
|
|
@@ -304,13 +531,16 @@ export declare class RunMarketingInformationExtractResponse extends $tea.Model {
|
|
|
304
531
|
});
|
|
305
532
|
}
|
|
306
533
|
export declare class RunMarketingInformationWritingRequest extends $tea.Model {
|
|
534
|
+
customLimitation?: string;
|
|
307
535
|
customPrompt?: string;
|
|
536
|
+
inputExample?: string;
|
|
308
537
|
/**
|
|
309
538
|
* @example
|
|
310
539
|
* qwen-max
|
|
311
540
|
* qwen-plus
|
|
312
541
|
*/
|
|
313
542
|
modelId?: string;
|
|
543
|
+
outputExample?: string;
|
|
314
544
|
sourceMaterial?: string;
|
|
315
545
|
writingType?: string;
|
|
316
546
|
static names(): {
|
|
@@ -614,7 +844,347 @@ export declare class RunVideoAnalysisRequest extends $tea.Model {
|
|
|
614
844
|
* @example
|
|
615
845
|
* http://xxxx.mp4
|
|
616
846
|
*/
|
|
617
|
-
videoUrl?: string;
|
|
847
|
+
videoUrl?: string;
|
|
848
|
+
static names(): {
|
|
849
|
+
[key: string]: string;
|
|
850
|
+
};
|
|
851
|
+
static types(): {
|
|
852
|
+
[key: string]: any;
|
|
853
|
+
};
|
|
854
|
+
constructor(map?: {
|
|
855
|
+
[key: string]: any;
|
|
856
|
+
});
|
|
857
|
+
}
|
|
858
|
+
export declare class RunVideoAnalysisShrinkRequest extends $tea.Model {
|
|
859
|
+
generateOptionsShrink?: string;
|
|
860
|
+
modelCustomPromptTemplate?: string;
|
|
861
|
+
/**
|
|
862
|
+
* @example
|
|
863
|
+
* PlotDetail
|
|
864
|
+
*/
|
|
865
|
+
modelCustomPromptTemplateId?: string;
|
|
866
|
+
/**
|
|
867
|
+
* @example
|
|
868
|
+
* qwen-max
|
|
869
|
+
*/
|
|
870
|
+
modelId?: string;
|
|
871
|
+
/**
|
|
872
|
+
* @example
|
|
873
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5ax
|
|
874
|
+
*/
|
|
875
|
+
originalSessionId?: string;
|
|
876
|
+
snapshotInterval?: number;
|
|
877
|
+
/**
|
|
878
|
+
* @example
|
|
879
|
+
* a3d1c2ac-f086-4a21-9069-f5631542f5a2
|
|
880
|
+
*/
|
|
881
|
+
taskId?: string;
|
|
882
|
+
videoExtraInfo?: string;
|
|
883
|
+
videoModelCustomPromptTemplate?: string;
|
|
884
|
+
/**
|
|
885
|
+
* @example
|
|
886
|
+
* qwen-vl-max
|
|
887
|
+
*/
|
|
888
|
+
videoModelId?: string;
|
|
889
|
+
/**
|
|
890
|
+
* @example
|
|
891
|
+
* http://xxxx.mp4
|
|
892
|
+
*/
|
|
893
|
+
videoUrl?: string;
|
|
894
|
+
static names(): {
|
|
895
|
+
[key: string]: string;
|
|
896
|
+
};
|
|
897
|
+
static types(): {
|
|
898
|
+
[key: string]: any;
|
|
899
|
+
};
|
|
900
|
+
constructor(map?: {
|
|
901
|
+
[key: string]: any;
|
|
902
|
+
});
|
|
903
|
+
}
|
|
904
|
+
export declare class RunVideoAnalysisResponseBody extends $tea.Model {
|
|
905
|
+
header?: RunVideoAnalysisResponseBodyHeader;
|
|
906
|
+
payload?: RunVideoAnalysisResponseBodyPayload;
|
|
907
|
+
/**
|
|
908
|
+
* @example
|
|
909
|
+
* 117F5ABE-CF02-5502-9A3F-E56BC9081A64
|
|
910
|
+
*/
|
|
911
|
+
requestId?: string;
|
|
912
|
+
static names(): {
|
|
913
|
+
[key: string]: string;
|
|
914
|
+
};
|
|
915
|
+
static types(): {
|
|
916
|
+
[key: string]: any;
|
|
917
|
+
};
|
|
918
|
+
constructor(map?: {
|
|
919
|
+
[key: string]: any;
|
|
920
|
+
});
|
|
921
|
+
}
|
|
922
|
+
export declare class RunVideoAnalysisResponse extends $tea.Model {
|
|
923
|
+
headers?: {
|
|
924
|
+
[key: string]: string;
|
|
925
|
+
};
|
|
926
|
+
statusCode?: number;
|
|
927
|
+
body?: RunVideoAnalysisResponseBody;
|
|
928
|
+
static names(): {
|
|
929
|
+
[key: string]: string;
|
|
930
|
+
};
|
|
931
|
+
static types(): {
|
|
932
|
+
[key: string]: any;
|
|
933
|
+
};
|
|
934
|
+
constructor(map?: {
|
|
935
|
+
[key: string]: any;
|
|
936
|
+
});
|
|
937
|
+
}
|
|
938
|
+
export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImages extends $tea.Model {
|
|
939
|
+
/**
|
|
940
|
+
* @example
|
|
941
|
+
* http://xxx.com/xxx.jpeg
|
|
942
|
+
*/
|
|
943
|
+
url?: string;
|
|
944
|
+
static names(): {
|
|
945
|
+
[key: string]: string;
|
|
946
|
+
};
|
|
947
|
+
static types(): {
|
|
948
|
+
[key: string]: any;
|
|
949
|
+
};
|
|
950
|
+
constructor(map?: {
|
|
951
|
+
[key: string]: any;
|
|
952
|
+
});
|
|
953
|
+
}
|
|
954
|
+
export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummaries extends $tea.Model {
|
|
955
|
+
category?: string;
|
|
956
|
+
hotTopic?: string;
|
|
957
|
+
/**
|
|
958
|
+
* @example
|
|
959
|
+
* 2024-09-13_08
|
|
960
|
+
*/
|
|
961
|
+
hotTopicVersion?: string;
|
|
962
|
+
/**
|
|
963
|
+
* @example
|
|
964
|
+
* 1000000
|
|
965
|
+
*/
|
|
966
|
+
hotValue?: number;
|
|
967
|
+
/**
|
|
968
|
+
* @example
|
|
969
|
+
* 1458tb3bjo7531kap42a
|
|
970
|
+
*/
|
|
971
|
+
id?: string;
|
|
972
|
+
images?: GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImages[];
|
|
973
|
+
/**
|
|
974
|
+
* @example
|
|
975
|
+
* xxx
|
|
976
|
+
*/
|
|
977
|
+
textSummary?: string;
|
|
978
|
+
static names(): {
|
|
979
|
+
[key: string]: string;
|
|
980
|
+
};
|
|
981
|
+
static types(): {
|
|
982
|
+
[key: string]: any;
|
|
983
|
+
};
|
|
984
|
+
constructor(map?: {
|
|
985
|
+
[key: string]: any;
|
|
986
|
+
});
|
|
987
|
+
}
|
|
988
|
+
export declare class GenerateBroadcastNewsResponseBodyDataUsage extends $tea.Model {
|
|
989
|
+
/**
|
|
990
|
+
* @example
|
|
991
|
+
* 1
|
|
992
|
+
*/
|
|
993
|
+
inputTokens?: number;
|
|
994
|
+
/**
|
|
995
|
+
* @example
|
|
996
|
+
* 2
|
|
997
|
+
*/
|
|
998
|
+
outputTokens?: number;
|
|
999
|
+
/**
|
|
1000
|
+
* @example
|
|
1001
|
+
* 3
|
|
1002
|
+
*/
|
|
1003
|
+
totalTokens?: number;
|
|
1004
|
+
static names(): {
|
|
1005
|
+
[key: string]: string;
|
|
1006
|
+
};
|
|
1007
|
+
static types(): {
|
|
1008
|
+
[key: string]: any;
|
|
1009
|
+
};
|
|
1010
|
+
constructor(map?: {
|
|
1011
|
+
[key: string]: any;
|
|
1012
|
+
});
|
|
1013
|
+
}
|
|
1014
|
+
export declare class GenerateBroadcastNewsResponseBodyData extends $tea.Model {
|
|
1015
|
+
hotTopicSummaries?: GenerateBroadcastNewsResponseBodyDataHotTopicSummaries[];
|
|
1016
|
+
/**
|
|
1017
|
+
* @example
|
|
1018
|
+
* 2bb0ea82dafd48a8817fadc4c90e2b52
|
|
1019
|
+
*/
|
|
1020
|
+
sessionId?: string;
|
|
1021
|
+
/**
|
|
1022
|
+
* @example
|
|
1023
|
+
* 3feb69ed02d9b1a17d0f1a942675d300
|
|
1024
|
+
*/
|
|
1025
|
+
taskId?: string;
|
|
1026
|
+
text?: string;
|
|
1027
|
+
usage?: GenerateBroadcastNewsResponseBodyDataUsage;
|
|
1028
|
+
static names(): {
|
|
1029
|
+
[key: string]: string;
|
|
1030
|
+
};
|
|
1031
|
+
static types(): {
|
|
1032
|
+
[key: string]: any;
|
|
1033
|
+
};
|
|
1034
|
+
constructor(map?: {
|
|
1035
|
+
[key: string]: any;
|
|
1036
|
+
});
|
|
1037
|
+
}
|
|
1038
|
+
export declare class ListHotTopicSummariesResponseBodyDataNewsComments extends $tea.Model {
|
|
1039
|
+
/**
|
|
1040
|
+
* @example
|
|
1041
|
+
* xx
|
|
1042
|
+
*/
|
|
1043
|
+
text?: string;
|
|
1044
|
+
static names(): {
|
|
1045
|
+
[key: string]: string;
|
|
1046
|
+
};
|
|
1047
|
+
static types(): {
|
|
1048
|
+
[key: string]: any;
|
|
1049
|
+
};
|
|
1050
|
+
constructor(map?: {
|
|
1051
|
+
[key: string]: any;
|
|
1052
|
+
});
|
|
1053
|
+
}
|
|
1054
|
+
export declare class ListHotTopicSummariesResponseBodyDataNews extends $tea.Model {
|
|
1055
|
+
comments?: ListHotTopicSummariesResponseBodyDataNewsComments[];
|
|
1056
|
+
/**
|
|
1057
|
+
* @example
|
|
1058
|
+
* xx
|
|
1059
|
+
*/
|
|
1060
|
+
content?: string;
|
|
1061
|
+
/**
|
|
1062
|
+
* @example
|
|
1063
|
+
* 2024-09-10 15:32:00
|
|
1064
|
+
*/
|
|
1065
|
+
pubTime?: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* @example
|
|
1068
|
+
* xx
|
|
1069
|
+
*/
|
|
1070
|
+
title?: string;
|
|
1071
|
+
/**
|
|
1072
|
+
* @remarks
|
|
1073
|
+
* url
|
|
1074
|
+
*
|
|
1075
|
+
* @example
|
|
1076
|
+
* http://xxx
|
|
1077
|
+
*/
|
|
1078
|
+
url?: string;
|
|
1079
|
+
static names(): {
|
|
1080
|
+
[key: string]: string;
|
|
1081
|
+
};
|
|
1082
|
+
static types(): {
|
|
1083
|
+
[key: string]: any;
|
|
1084
|
+
};
|
|
1085
|
+
constructor(map?: {
|
|
1086
|
+
[key: string]: any;
|
|
1087
|
+
});
|
|
1088
|
+
}
|
|
1089
|
+
export declare class ListHotTopicSummariesResponseBodyDataSummarySummaries extends $tea.Model {
|
|
1090
|
+
/**
|
|
1091
|
+
* @example
|
|
1092
|
+
* xx
|
|
1093
|
+
*/
|
|
1094
|
+
summary?: string;
|
|
1095
|
+
/**
|
|
1096
|
+
* @example
|
|
1097
|
+
* xx
|
|
1098
|
+
*/
|
|
1099
|
+
title?: string;
|
|
1100
|
+
static names(): {
|
|
1101
|
+
[key: string]: string;
|
|
1102
|
+
};
|
|
1103
|
+
static types(): {
|
|
1104
|
+
[key: string]: any;
|
|
1105
|
+
};
|
|
1106
|
+
constructor(map?: {
|
|
1107
|
+
[key: string]: any;
|
|
1108
|
+
});
|
|
1109
|
+
}
|
|
1110
|
+
export declare class ListHotTopicSummariesResponseBodyDataSummary extends $tea.Model {
|
|
1111
|
+
summaries?: ListHotTopicSummariesResponseBodyDataSummarySummaries[];
|
|
1112
|
+
static names(): {
|
|
1113
|
+
[key: string]: string;
|
|
1114
|
+
};
|
|
1115
|
+
static types(): {
|
|
1116
|
+
[key: string]: any;
|
|
1117
|
+
};
|
|
1118
|
+
constructor(map?: {
|
|
1119
|
+
[key: string]: any;
|
|
1120
|
+
});
|
|
1121
|
+
}
|
|
1122
|
+
export declare class ListHotTopicSummariesResponseBodyData extends $tea.Model {
|
|
1123
|
+
category?: string;
|
|
1124
|
+
/**
|
|
1125
|
+
* @example
|
|
1126
|
+
* xx
|
|
1127
|
+
*/
|
|
1128
|
+
hotTopic?: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* @example
|
|
1131
|
+
* 2024-09-13_12
|
|
1132
|
+
*/
|
|
1133
|
+
hotTopicVersion?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
* @example
|
|
1136
|
+
* 1000000
|
|
1137
|
+
*/
|
|
1138
|
+
hotValue?: number;
|
|
1139
|
+
/**
|
|
1140
|
+
* @example
|
|
1141
|
+
* db5dc5b3d8954a30b65ba700c9dda3bb
|
|
1142
|
+
*/
|
|
1143
|
+
id?: string;
|
|
1144
|
+
news?: ListHotTopicSummariesResponseBodyDataNews[];
|
|
1145
|
+
summary?: ListHotTopicSummariesResponseBodyDataSummary;
|
|
1146
|
+
/**
|
|
1147
|
+
* @example
|
|
1148
|
+
* xx
|
|
1149
|
+
*/
|
|
1150
|
+
textSummary?: string;
|
|
1151
|
+
static names(): {
|
|
1152
|
+
[key: string]: string;
|
|
1153
|
+
};
|
|
1154
|
+
static types(): {
|
|
1155
|
+
[key: string]: any;
|
|
1156
|
+
};
|
|
1157
|
+
constructor(map?: {
|
|
1158
|
+
[key: string]: any;
|
|
1159
|
+
});
|
|
1160
|
+
}
|
|
1161
|
+
export declare class RunCommentGenerationResponseBodyHeader extends $tea.Model {
|
|
1162
|
+
/**
|
|
1163
|
+
* @example
|
|
1164
|
+
* result-generated
|
|
1165
|
+
*/
|
|
1166
|
+
event?: string;
|
|
1167
|
+
eventInfo?: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* @example
|
|
1170
|
+
* F8A35034-EDCF-5C50-95A5-1044316F36E3
|
|
1171
|
+
*/
|
|
1172
|
+
requestId?: string;
|
|
1173
|
+
/**
|
|
1174
|
+
* @example
|
|
1175
|
+
* tcm9xac9dsfbfgm8hf5k94l3cqybwh9o3mn0iuyytdgd9qoejxf1crxsdvuvr8fu0zuhbe8anhdaoeif2wbkmebagnezh23cuhkiazx2tmjh4eml791eak7t95sshvtkz14bh2lnbktzvdhialzd8reoaem0pktw41slinwyoabe75xlnxsqb5eo1i6ly70
|
|
1176
|
+
*/
|
|
1177
|
+
sessionId?: string;
|
|
1178
|
+
/**
|
|
1179
|
+
* @example
|
|
1180
|
+
* task-fu1918oghtodbis3chgpfr
|
|
1181
|
+
*/
|
|
1182
|
+
taskId?: string;
|
|
1183
|
+
/**
|
|
1184
|
+
* @example
|
|
1185
|
+
* 21507c3517074446017046500ed5f1
|
|
1186
|
+
*/
|
|
1187
|
+
traceId?: string;
|
|
618
1188
|
static names(): {
|
|
619
1189
|
[key: string]: string;
|
|
620
1190
|
};
|
|
@@ -625,42 +1195,34 @@ export declare class RunVideoAnalysisRequest extends $tea.Model {
|
|
|
625
1195
|
[key: string]: any;
|
|
626
1196
|
});
|
|
627
1197
|
}
|
|
628
|
-
export declare class
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
/**
|
|
642
|
-
* @example
|
|
643
|
-
* a3d1c2ac-f086-4a21-9069-f5631542f5ax
|
|
644
|
-
*/
|
|
645
|
-
originalSessionId?: string;
|
|
646
|
-
snapshotInterval?: number;
|
|
1198
|
+
export declare class RunCommentGenerationResponseBodyPayloadOutput extends $tea.Model {
|
|
1199
|
+
text?: string;
|
|
1200
|
+
static names(): {
|
|
1201
|
+
[key: string]: string;
|
|
1202
|
+
};
|
|
1203
|
+
static types(): {
|
|
1204
|
+
[key: string]: any;
|
|
1205
|
+
};
|
|
1206
|
+
constructor(map?: {
|
|
1207
|
+
[key: string]: any;
|
|
1208
|
+
});
|
|
1209
|
+
}
|
|
1210
|
+
export declare class RunCommentGenerationResponseBodyPayloadUsage extends $tea.Model {
|
|
647
1211
|
/**
|
|
648
1212
|
* @example
|
|
649
|
-
*
|
|
1213
|
+
* 100
|
|
650
1214
|
*/
|
|
651
|
-
|
|
652
|
-
videoExtraInfo?: string;
|
|
653
|
-
videoModelCustomPromptTemplate?: string;
|
|
1215
|
+
inputTokens?: number;
|
|
654
1216
|
/**
|
|
655
1217
|
* @example
|
|
656
|
-
*
|
|
1218
|
+
* 100
|
|
657
1219
|
*/
|
|
658
|
-
|
|
1220
|
+
outputTokens?: number;
|
|
659
1221
|
/**
|
|
660
1222
|
* @example
|
|
661
|
-
*
|
|
1223
|
+
* 200
|
|
662
1224
|
*/
|
|
663
|
-
|
|
1225
|
+
totalTokens?: number;
|
|
664
1226
|
static names(): {
|
|
665
1227
|
[key: string]: string;
|
|
666
1228
|
};
|
|
@@ -671,14 +1233,9 @@ export declare class RunVideoAnalysisShrinkRequest extends $tea.Model {
|
|
|
671
1233
|
[key: string]: any;
|
|
672
1234
|
});
|
|
673
1235
|
}
|
|
674
|
-
export declare class
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
/**
|
|
678
|
-
* @example
|
|
679
|
-
* 117F5ABE-CF02-5502-9A3F-E56BC9081A64
|
|
680
|
-
*/
|
|
681
|
-
requestId?: string;
|
|
1236
|
+
export declare class RunCommentGenerationResponseBodyPayload extends $tea.Model {
|
|
1237
|
+
output?: RunCommentGenerationResponseBodyPayloadOutput;
|
|
1238
|
+
usage?: RunCommentGenerationResponseBodyPayloadUsage;
|
|
682
1239
|
static names(): {
|
|
683
1240
|
[key: string]: string;
|
|
684
1241
|
};
|
|
@@ -689,12 +1246,17 @@ export declare class RunVideoAnalysisResponseBody extends $tea.Model {
|
|
|
689
1246
|
[key: string]: any;
|
|
690
1247
|
});
|
|
691
1248
|
}
|
|
692
|
-
export declare class
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
1249
|
+
export declare class RunHotTopicChatRequestStepForBroadcastContentConfigCustomHotValueWeights extends $tea.Model {
|
|
1250
|
+
/**
|
|
1251
|
+
* @example
|
|
1252
|
+
* comments
|
|
1253
|
+
*/
|
|
1254
|
+
dimension?: string;
|
|
1255
|
+
/**
|
|
1256
|
+
* @example
|
|
1257
|
+
* 1
|
|
1258
|
+
*/
|
|
1259
|
+
weight?: number;
|
|
698
1260
|
static names(): {
|
|
699
1261
|
[key: string]: string;
|
|
700
1262
|
};
|
|
@@ -705,12 +1267,14 @@ export declare class RunVideoAnalysisResponse extends $tea.Model {
|
|
|
705
1267
|
[key: string]: any;
|
|
706
1268
|
});
|
|
707
1269
|
}
|
|
708
|
-
export declare class
|
|
1270
|
+
export declare class RunHotTopicChatRequestStepForBroadcastContentConfig extends $tea.Model {
|
|
1271
|
+
categories?: string[];
|
|
1272
|
+
customHotValueWeights?: RunHotTopicChatRequestStepForBroadcastContentConfigCustomHotValueWeights[];
|
|
709
1273
|
/**
|
|
710
1274
|
* @example
|
|
711
|
-
*
|
|
1275
|
+
* 20
|
|
712
1276
|
*/
|
|
713
|
-
|
|
1277
|
+
topicCount?: number;
|
|
714
1278
|
static names(): {
|
|
715
1279
|
[key: string]: string;
|
|
716
1280
|
};
|
|
@@ -721,30 +1285,42 @@ export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImage
|
|
|
721
1285
|
[key: string]: any;
|
|
722
1286
|
});
|
|
723
1287
|
}
|
|
724
|
-
export declare class
|
|
725
|
-
category?: string;
|
|
726
|
-
hotTopic?: string;
|
|
1288
|
+
export declare class RunHotTopicChatResponseBodyHeader extends $tea.Model {
|
|
727
1289
|
/**
|
|
728
1290
|
* @example
|
|
729
|
-
*
|
|
1291
|
+
* InvalidParam
|
|
730
1292
|
*/
|
|
731
|
-
|
|
1293
|
+
errorCode?: string;
|
|
732
1294
|
/**
|
|
733
1295
|
* @example
|
|
734
|
-
*
|
|
1296
|
+
* xx
|
|
735
1297
|
*/
|
|
736
|
-
|
|
1298
|
+
errorMessage?: string;
|
|
737
1299
|
/**
|
|
738
1300
|
* @example
|
|
739
|
-
*
|
|
1301
|
+
* task-finished
|
|
740
1302
|
*/
|
|
741
|
-
|
|
742
|
-
|
|
1303
|
+
event?: string;
|
|
1304
|
+
/**
|
|
1305
|
+
* @example
|
|
1306
|
+
* xx
|
|
1307
|
+
*/
|
|
1308
|
+
eventInfo?: string;
|
|
743
1309
|
/**
|
|
744
1310
|
* @example
|
|
745
1311
|
* xxx
|
|
746
1312
|
*/
|
|
747
|
-
|
|
1313
|
+
sessionId?: string;
|
|
1314
|
+
/**
|
|
1315
|
+
* @example
|
|
1316
|
+
* d3be9981-ca2d-4e17-bf31-1c0a628e9f99
|
|
1317
|
+
*/
|
|
1318
|
+
taskId?: string;
|
|
1319
|
+
/**
|
|
1320
|
+
* @example
|
|
1321
|
+
* 2150451a17191950923411783e2927
|
|
1322
|
+
*/
|
|
1323
|
+
traceId?: string;
|
|
748
1324
|
static names(): {
|
|
749
1325
|
[key: string]: string;
|
|
750
1326
|
};
|
|
@@ -755,22 +1331,35 @@ export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummaries exte
|
|
|
755
1331
|
[key: string]: any;
|
|
756
1332
|
});
|
|
757
1333
|
}
|
|
758
|
-
export declare class
|
|
1334
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutputArticles extends $tea.Model {
|
|
759
1335
|
/**
|
|
760
1336
|
* @example
|
|
761
|
-
*
|
|
1337
|
+
* xxx
|
|
762
1338
|
*/
|
|
763
|
-
|
|
1339
|
+
content?: string;
|
|
764
1340
|
/**
|
|
765
1341
|
* @example
|
|
766
|
-
*
|
|
1342
|
+
* 2024-09-22 16:45:06
|
|
767
1343
|
*/
|
|
768
|
-
|
|
1344
|
+
pubTime?: string;
|
|
1345
|
+
score?: number;
|
|
1346
|
+
searchSourceName?: string;
|
|
1347
|
+
select?: boolean;
|
|
769
1348
|
/**
|
|
770
1349
|
* @example
|
|
771
|
-
*
|
|
1350
|
+
* xx
|
|
772
1351
|
*/
|
|
773
|
-
|
|
1352
|
+
summary?: string;
|
|
1353
|
+
/**
|
|
1354
|
+
* @example
|
|
1355
|
+
* test
|
|
1356
|
+
*/
|
|
1357
|
+
title?: string;
|
|
1358
|
+
/**
|
|
1359
|
+
* @example
|
|
1360
|
+
* http://xxx
|
|
1361
|
+
*/
|
|
1362
|
+
url?: string;
|
|
774
1363
|
static names(): {
|
|
775
1364
|
[key: string]: string;
|
|
776
1365
|
};
|
|
@@ -781,20 +1370,27 @@ export declare class GenerateBroadcastNewsResponseBodyDataUsage extends $tea.Mod
|
|
|
781
1370
|
[key: string]: any;
|
|
782
1371
|
});
|
|
783
1372
|
}
|
|
784
|
-
export declare class
|
|
785
|
-
hotTopicSummaries?: GenerateBroadcastNewsResponseBodyDataHotTopicSummaries[];
|
|
1373
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutputHotTopicSummaries extends $tea.Model {
|
|
786
1374
|
/**
|
|
787
1375
|
* @example
|
|
788
|
-
*
|
|
1376
|
+
* 100000
|
|
789
1377
|
*/
|
|
790
|
-
|
|
1378
|
+
customHotValue?: number;
|
|
791
1379
|
/**
|
|
792
1380
|
* @example
|
|
793
|
-
*
|
|
1381
|
+
* xx
|
|
794
1382
|
*/
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
1383
|
+
hotTopic?: string;
|
|
1384
|
+
/**
|
|
1385
|
+
* @example
|
|
1386
|
+
* 2024-09-13_08
|
|
1387
|
+
*/
|
|
1388
|
+
hotTopicVersion?: string;
|
|
1389
|
+
/**
|
|
1390
|
+
* @example
|
|
1391
|
+
* 100000
|
|
1392
|
+
*/
|
|
1393
|
+
hotValue?: number;
|
|
798
1394
|
static names(): {
|
|
799
1395
|
[key: string]: string;
|
|
800
1396
|
};
|
|
@@ -805,12 +1401,18 @@ export declare class GenerateBroadcastNewsResponseBodyData extends $tea.Model {
|
|
|
805
1401
|
[key: string]: any;
|
|
806
1402
|
});
|
|
807
1403
|
}
|
|
808
|
-
export declare class
|
|
1404
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutputMultimodalMedias extends $tea.Model {
|
|
809
1405
|
/**
|
|
810
1406
|
* @example
|
|
811
|
-
*
|
|
1407
|
+
* http://xxxx
|
|
812
1408
|
*/
|
|
813
|
-
|
|
1409
|
+
fileUrl?: string;
|
|
1410
|
+
/**
|
|
1411
|
+
* @example
|
|
1412
|
+
* image
|
|
1413
|
+
*/
|
|
1414
|
+
mediaType?: string;
|
|
1415
|
+
sortScore?: number;
|
|
814
1416
|
static names(): {
|
|
815
1417
|
[key: string]: string;
|
|
816
1418
|
};
|
|
@@ -821,31 +1423,17 @@ export declare class ListHotTopicSummariesResponseBodyDataNewsComments extends $
|
|
|
821
1423
|
[key: string]: any;
|
|
822
1424
|
});
|
|
823
1425
|
}
|
|
824
|
-
export declare class
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
content?: string;
|
|
831
|
-
/**
|
|
832
|
-
* @example
|
|
833
|
-
* 2024-09-10 15:32:00
|
|
834
|
-
*/
|
|
835
|
-
pubTime?: string;
|
|
1426
|
+
export declare class RunHotTopicChatResponseBodyPayloadOutput extends $tea.Model {
|
|
1427
|
+
articles?: RunHotTopicChatResponseBodyPayloadOutputArticles[];
|
|
1428
|
+
hotTopicSummaries?: RunHotTopicChatResponseBodyPayloadOutputHotTopicSummaries[];
|
|
1429
|
+
multimodalMedias?: RunHotTopicChatResponseBodyPayloadOutputMultimodalMedias[];
|
|
1430
|
+
recommendQueries?: string[];
|
|
1431
|
+
searchQuery?: string;
|
|
836
1432
|
/**
|
|
837
1433
|
* @example
|
|
838
1434
|
* xx
|
|
839
1435
|
*/
|
|
840
|
-
|
|
841
|
-
/**
|
|
842
|
-
* @remarks
|
|
843
|
-
* url
|
|
844
|
-
*
|
|
845
|
-
* @example
|
|
846
|
-
* http://xxx
|
|
847
|
-
*/
|
|
848
|
-
url?: string;
|
|
1436
|
+
text?: string;
|
|
849
1437
|
static names(): {
|
|
850
1438
|
[key: string]: string;
|
|
851
1439
|
};
|
|
@@ -856,17 +1444,22 @@ export declare class ListHotTopicSummariesResponseBodyDataNews extends $tea.Mode
|
|
|
856
1444
|
[key: string]: any;
|
|
857
1445
|
});
|
|
858
1446
|
}
|
|
859
|
-
export declare class
|
|
1447
|
+
export declare class RunHotTopicChatResponseBodyPayloadUsage extends $tea.Model {
|
|
860
1448
|
/**
|
|
861
1449
|
* @example
|
|
862
|
-
*
|
|
1450
|
+
* 100
|
|
863
1451
|
*/
|
|
864
|
-
|
|
1452
|
+
inputTokens?: number;
|
|
865
1453
|
/**
|
|
866
1454
|
* @example
|
|
867
|
-
*
|
|
1455
|
+
* 100
|
|
868
1456
|
*/
|
|
869
|
-
|
|
1457
|
+
outputTokens?: number;
|
|
1458
|
+
/**
|
|
1459
|
+
* @example
|
|
1460
|
+
* 200
|
|
1461
|
+
*/
|
|
1462
|
+
totalTokens?: number;
|
|
870
1463
|
static names(): {
|
|
871
1464
|
[key: string]: string;
|
|
872
1465
|
};
|
|
@@ -877,8 +1470,9 @@ export declare class ListHotTopicSummariesResponseBodyDataSummarySummaries exten
|
|
|
877
1470
|
[key: string]: any;
|
|
878
1471
|
});
|
|
879
1472
|
}
|
|
880
|
-
export declare class
|
|
881
|
-
|
|
1473
|
+
export declare class RunHotTopicChatResponseBodyPayload extends $tea.Model {
|
|
1474
|
+
output?: RunHotTopicChatResponseBodyPayloadOutput;
|
|
1475
|
+
usage?: RunHotTopicChatResponseBodyPayloadUsage;
|
|
882
1476
|
static names(): {
|
|
883
1477
|
[key: string]: string;
|
|
884
1478
|
};
|
|
@@ -889,35 +1483,25 @@ export declare class ListHotTopicSummariesResponseBodyDataSummary extends $tea.M
|
|
|
889
1483
|
[key: string]: any;
|
|
890
1484
|
});
|
|
891
1485
|
}
|
|
892
|
-
export declare class
|
|
893
|
-
category?: string;
|
|
894
|
-
/**
|
|
895
|
-
* @example
|
|
896
|
-
* xx
|
|
897
|
-
*/
|
|
898
|
-
hotTopic?: string;
|
|
1486
|
+
export declare class RunHotTopicSummaryRequestStepForCustomSummaryStyleConfig extends $tea.Model {
|
|
899
1487
|
/**
|
|
900
1488
|
* @example
|
|
901
|
-
*
|
|
902
|
-
*/
|
|
903
|
-
hotTopicVersion?: string;
|
|
904
|
-
/**
|
|
905
|
-
* @example
|
|
906
|
-
* 1000000
|
|
1489
|
+
* 2
|
|
907
1490
|
*/
|
|
908
|
-
|
|
1491
|
+
summaryImageCount?: number;
|
|
909
1492
|
/**
|
|
1493
|
+
* @remarks
|
|
1494
|
+
* This parameter is required.
|
|
1495
|
+
*
|
|
910
1496
|
* @example
|
|
911
|
-
*
|
|
1497
|
+
* qwen-max
|
|
912
1498
|
*/
|
|
913
|
-
|
|
914
|
-
news?: ListHotTopicSummariesResponseBodyDataNews[];
|
|
915
|
-
summary?: ListHotTopicSummariesResponseBodyDataSummary;
|
|
1499
|
+
summaryModel?: string;
|
|
916
1500
|
/**
|
|
917
1501
|
* @example
|
|
918
|
-
*
|
|
1502
|
+
* xxxx
|
|
919
1503
|
*/
|
|
920
|
-
|
|
1504
|
+
summaryPrompt?: string;
|
|
921
1505
|
static names(): {
|
|
922
1506
|
[key: string]: string;
|
|
923
1507
|
};
|
|
@@ -928,31 +1512,35 @@ export declare class ListHotTopicSummariesResponseBodyData extends $tea.Model {
|
|
|
928
1512
|
[key: string]: any;
|
|
929
1513
|
});
|
|
930
1514
|
}
|
|
931
|
-
export declare class
|
|
1515
|
+
export declare class RunHotTopicSummaryResponseBodyHeader extends $tea.Model {
|
|
932
1516
|
/**
|
|
933
1517
|
* @example
|
|
934
|
-
*
|
|
1518
|
+
* AccessForbidden
|
|
935
1519
|
*/
|
|
936
|
-
|
|
937
|
-
eventInfo?: string;
|
|
1520
|
+
errorCode?: string;
|
|
938
1521
|
/**
|
|
939
1522
|
* @example
|
|
940
|
-
*
|
|
1523
|
+
* 错误信息
|
|
941
1524
|
*/
|
|
942
|
-
|
|
1525
|
+
errorMessage?: string;
|
|
943
1526
|
/**
|
|
944
1527
|
* @example
|
|
945
|
-
*
|
|
1528
|
+
* task-finished
|
|
1529
|
+
*/
|
|
1530
|
+
event?: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* @example
|
|
1533
|
+
* xxxx
|
|
946
1534
|
*/
|
|
947
1535
|
sessionId?: string;
|
|
948
1536
|
/**
|
|
949
1537
|
* @example
|
|
950
|
-
*
|
|
1538
|
+
* xxxx
|
|
951
1539
|
*/
|
|
952
1540
|
taskId?: string;
|
|
953
1541
|
/**
|
|
954
1542
|
* @example
|
|
955
|
-
*
|
|
1543
|
+
* xxxxx
|
|
956
1544
|
*/
|
|
957
1545
|
traceId?: string;
|
|
958
1546
|
static names(): {
|
|
@@ -965,8 +1553,9 @@ export declare class RunCommentGenerationResponseBodyHeader extends $tea.Model {
|
|
|
965
1553
|
[key: string]: any;
|
|
966
1554
|
});
|
|
967
1555
|
}
|
|
968
|
-
export declare class
|
|
1556
|
+
export declare class RunHotTopicSummaryResponseBodyPayloadOutput extends $tea.Model {
|
|
969
1557
|
text?: string;
|
|
1558
|
+
topicId?: string;
|
|
970
1559
|
static names(): {
|
|
971
1560
|
[key: string]: string;
|
|
972
1561
|
};
|
|
@@ -977,7 +1566,7 @@ export declare class RunCommentGenerationResponseBodyPayloadOutput extends $tea.
|
|
|
977
1566
|
[key: string]: any;
|
|
978
1567
|
});
|
|
979
1568
|
}
|
|
980
|
-
export declare class
|
|
1569
|
+
export declare class RunHotTopicSummaryResponseBodyPayloadUsage extends $tea.Model {
|
|
981
1570
|
/**
|
|
982
1571
|
* @example
|
|
983
1572
|
* 100
|
|
@@ -1003,9 +1592,9 @@ export declare class RunCommentGenerationResponseBodyPayloadUsage extends $tea.M
|
|
|
1003
1592
|
[key: string]: any;
|
|
1004
1593
|
});
|
|
1005
1594
|
}
|
|
1006
|
-
export declare class
|
|
1007
|
-
output?:
|
|
1008
|
-
usage?:
|
|
1595
|
+
export declare class RunHotTopicSummaryResponseBodyPayload extends $tea.Model {
|
|
1596
|
+
output?: RunHotTopicSummaryResponseBodyPayloadOutput;
|
|
1597
|
+
usage?: RunHotTopicSummaryResponseBodyPayloadUsage;
|
|
1009
1598
|
static names(): {
|
|
1010
1599
|
[key: string]: string;
|
|
1011
1600
|
};
|
|
@@ -1945,6 +2534,42 @@ export default class Client extends OpenApi {
|
|
|
1945
2534
|
* @returns RunCommentGenerationResponse
|
|
1946
2535
|
*/
|
|
1947
2536
|
runCommentGeneration(workspaceId: string, request: RunCommentGenerationRequest): Promise<RunCommentGenerationResponse>;
|
|
2537
|
+
/**
|
|
2538
|
+
* 轻应用-热点播报-问答
|
|
2539
|
+
*
|
|
2540
|
+
* @param tmpReq - RunHotTopicChatRequest
|
|
2541
|
+
* @param headers - map
|
|
2542
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2543
|
+
* @returns RunHotTopicChatResponse
|
|
2544
|
+
*/
|
|
2545
|
+
runHotTopicChatWithOptions(workspaceId: string, tmpReq: RunHotTopicChatRequest, headers: {
|
|
2546
|
+
[key: string]: string;
|
|
2547
|
+
}, runtime: $Util.RuntimeOptions): Promise<RunHotTopicChatResponse>;
|
|
2548
|
+
/**
|
|
2549
|
+
* 轻应用-热点播报-问答
|
|
2550
|
+
*
|
|
2551
|
+
* @param request - RunHotTopicChatRequest
|
|
2552
|
+
* @returns RunHotTopicChatResponse
|
|
2553
|
+
*/
|
|
2554
|
+
runHotTopicChat(workspaceId: string, request: RunHotTopicChatRequest): Promise<RunHotTopicChatResponse>;
|
|
2555
|
+
/**
|
|
2556
|
+
* 轻应用-热点播报-热点摘要生成
|
|
2557
|
+
*
|
|
2558
|
+
* @param tmpReq - RunHotTopicSummaryRequest
|
|
2559
|
+
* @param headers - map
|
|
2560
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2561
|
+
* @returns RunHotTopicSummaryResponse
|
|
2562
|
+
*/
|
|
2563
|
+
runHotTopicSummaryWithOptions(workspaceId: string, tmpReq: RunHotTopicSummaryRequest, headers: {
|
|
2564
|
+
[key: string]: string;
|
|
2565
|
+
}, runtime: $Util.RuntimeOptions): Promise<RunHotTopicSummaryResponse>;
|
|
2566
|
+
/**
|
|
2567
|
+
* 轻应用-热点播报-热点摘要生成
|
|
2568
|
+
*
|
|
2569
|
+
* @param request - RunHotTopicSummaryRequest
|
|
2570
|
+
* @returns RunHotTopicSummaryResponse
|
|
2571
|
+
*/
|
|
2572
|
+
runHotTopicSummary(workspaceId: string, request: RunHotTopicSummaryRequest): Promise<RunHotTopicSummaryResponse>;
|
|
1948
2573
|
/**
|
|
1949
2574
|
* 营销信息抽取服务
|
|
1950
2575
|
*
|