@alicloud/quanmiaolightapp20240801 1.4.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 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;
@@ -614,7 +841,347 @@ export declare class RunVideoAnalysisRequest extends $tea.Model {
614
841
  * @example
615
842
  * http://xxxx.mp4
616
843
  */
617
- videoUrl?: string;
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;
618
1185
  static names(): {
619
1186
  [key: string]: string;
620
1187
  };
@@ -625,42 +1192,34 @@ export declare class RunVideoAnalysisRequest extends $tea.Model {
625
1192
  [key: string]: any;
626
1193
  });
627
1194
  }
628
- export declare class RunVideoAnalysisShrinkRequest extends $tea.Model {
629
- generateOptionsShrink?: string;
630
- modelCustomPromptTemplate?: string;
631
- /**
632
- * @example
633
- * PlotDetail
634
- */
635
- modelCustomPromptTemplateId?: string;
636
- /**
637
- * @example
638
- * qwen-max
639
- */
640
- modelId?: string;
641
- /**
642
- * @example
643
- * a3d1c2ac-f086-4a21-9069-f5631542f5ax
644
- */
645
- originalSessionId?: string;
646
- snapshotInterval?: number;
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 {
647
1208
  /**
648
1209
  * @example
649
- * a3d1c2ac-f086-4a21-9069-f5631542f5a2
1210
+ * 100
650
1211
  */
651
- taskId?: string;
652
- videoExtraInfo?: string;
653
- videoModelCustomPromptTemplate?: string;
1212
+ inputTokens?: number;
654
1213
  /**
655
1214
  * @example
656
- * qwen-vl-max
1215
+ * 100
657
1216
  */
658
- videoModelId?: string;
1217
+ outputTokens?: number;
659
1218
  /**
660
1219
  * @example
661
- * http://xxxx.mp4
1220
+ * 200
662
1221
  */
663
- videoUrl?: string;
1222
+ totalTokens?: number;
664
1223
  static names(): {
665
1224
  [key: string]: string;
666
1225
  };
@@ -671,14 +1230,9 @@ export declare class RunVideoAnalysisShrinkRequest extends $tea.Model {
671
1230
  [key: string]: any;
672
1231
  });
673
1232
  }
674
- export declare class RunVideoAnalysisResponseBody extends $tea.Model {
675
- header?: RunVideoAnalysisResponseBodyHeader;
676
- payload?: RunVideoAnalysisResponseBodyPayload;
677
- /**
678
- * @example
679
- * 117F5ABE-CF02-5502-9A3F-E56BC9081A64
680
- */
681
- requestId?: string;
1233
+ export declare class RunCommentGenerationResponseBodyPayload extends $tea.Model {
1234
+ output?: RunCommentGenerationResponseBodyPayloadOutput;
1235
+ usage?: RunCommentGenerationResponseBodyPayloadUsage;
682
1236
  static names(): {
683
1237
  [key: string]: string;
684
1238
  };
@@ -689,12 +1243,17 @@ export declare class RunVideoAnalysisResponseBody extends $tea.Model {
689
1243
  [key: string]: any;
690
1244
  });
691
1245
  }
692
- export declare class RunVideoAnalysisResponse extends $tea.Model {
693
- headers?: {
694
- [key: string]: string;
695
- };
696
- statusCode?: number;
697
- body?: RunVideoAnalysisResponseBody;
1246
+ export declare class RunHotTopicChatRequestStepForBroadcastContentConfigCustomHotValueWeights extends $tea.Model {
1247
+ /**
1248
+ * @example
1249
+ * comments
1250
+ */
1251
+ dimension?: string;
1252
+ /**
1253
+ * @example
1254
+ * 1
1255
+ */
1256
+ weight?: number;
698
1257
  static names(): {
699
1258
  [key: string]: string;
700
1259
  };
@@ -705,12 +1264,14 @@ export declare class RunVideoAnalysisResponse extends $tea.Model {
705
1264
  [key: string]: any;
706
1265
  });
707
1266
  }
708
- export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImages extends $tea.Model {
1267
+ export declare class RunHotTopicChatRequestStepForBroadcastContentConfig extends $tea.Model {
1268
+ categories?: string[];
1269
+ customHotValueWeights?: RunHotTopicChatRequestStepForBroadcastContentConfigCustomHotValueWeights[];
709
1270
  /**
710
1271
  * @example
711
- * http://xxx.com/xxx.jpeg
1272
+ * 20
712
1273
  */
713
- url?: string;
1274
+ topicCount?: number;
714
1275
  static names(): {
715
1276
  [key: string]: string;
716
1277
  };
@@ -721,30 +1282,42 @@ export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImage
721
1282
  [key: string]: any;
722
1283
  });
723
1284
  }
724
- export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummaries extends $tea.Model {
725
- category?: string;
726
- hotTopic?: string;
1285
+ export declare class RunHotTopicChatResponseBodyHeader extends $tea.Model {
727
1286
  /**
728
1287
  * @example
729
- * 2024-09-13_08
1288
+ * InvalidParam
730
1289
  */
731
- hotTopicVersion?: string;
1290
+ errorCode?: string;
732
1291
  /**
733
1292
  * @example
734
- * 1000000
1293
+ * xx
735
1294
  */
736
- hotValue?: number;
1295
+ errorMessage?: string;
737
1296
  /**
738
1297
  * @example
739
- * 1458tb3bjo7531kap42a
1298
+ * task-finished
740
1299
  */
741
- id?: string;
742
- images?: GenerateBroadcastNewsResponseBodyDataHotTopicSummariesImages[];
1300
+ event?: string;
1301
+ /**
1302
+ * @example
1303
+ * xx
1304
+ */
1305
+ eventInfo?: string;
743
1306
  /**
744
1307
  * @example
745
1308
  * xxx
746
1309
  */
747
- textSummary?: string;
1310
+ sessionId?: string;
1311
+ /**
1312
+ * @example
1313
+ * d3be9981-ca2d-4e17-bf31-1c0a628e9f99
1314
+ */
1315
+ taskId?: string;
1316
+ /**
1317
+ * @example
1318
+ * 2150451a17191950923411783e2927
1319
+ */
1320
+ traceId?: string;
748
1321
  static names(): {
749
1322
  [key: string]: string;
750
1323
  };
@@ -755,22 +1328,35 @@ export declare class GenerateBroadcastNewsResponseBodyDataHotTopicSummaries exte
755
1328
  [key: string]: any;
756
1329
  });
757
1330
  }
758
- export declare class GenerateBroadcastNewsResponseBodyDataUsage extends $tea.Model {
1331
+ export declare class RunHotTopicChatResponseBodyPayloadOutputArticles extends $tea.Model {
759
1332
  /**
760
1333
  * @example
761
- * 1
1334
+ * xxx
762
1335
  */
763
- inputTokens?: number;
1336
+ content?: string;
764
1337
  /**
765
1338
  * @example
766
- * 2
1339
+ * 2024-09-22 16:45:06
767
1340
  */
768
- outputTokens?: number;
1341
+ pubTime?: string;
1342
+ score?: number;
1343
+ searchSourceName?: string;
1344
+ select?: boolean;
769
1345
  /**
770
1346
  * @example
771
- * 3
1347
+ * xx
772
1348
  */
773
- totalTokens?: number;
1349
+ summary?: string;
1350
+ /**
1351
+ * @example
1352
+ * test
1353
+ */
1354
+ title?: string;
1355
+ /**
1356
+ * @example
1357
+ * http://xxx
1358
+ */
1359
+ url?: string;
774
1360
  static names(): {
775
1361
  [key: string]: string;
776
1362
  };
@@ -781,20 +1367,27 @@ export declare class GenerateBroadcastNewsResponseBodyDataUsage extends $tea.Mod
781
1367
  [key: string]: any;
782
1368
  });
783
1369
  }
784
- export declare class GenerateBroadcastNewsResponseBodyData extends $tea.Model {
785
- hotTopicSummaries?: GenerateBroadcastNewsResponseBodyDataHotTopicSummaries[];
1370
+ export declare class RunHotTopicChatResponseBodyPayloadOutputHotTopicSummaries extends $tea.Model {
786
1371
  /**
787
1372
  * @example
788
- * 2bb0ea82dafd48a8817fadc4c90e2b52
1373
+ * 100000
789
1374
  */
790
- sessionId?: string;
1375
+ customHotValue?: number;
791
1376
  /**
792
1377
  * @example
793
- * 3feb69ed02d9b1a17d0f1a942675d300
1378
+ * xx
794
1379
  */
795
- taskId?: string;
796
- text?: string;
797
- usage?: GenerateBroadcastNewsResponseBodyDataUsage;
1380
+ hotTopic?: string;
1381
+ /**
1382
+ * @example
1383
+ * 2024-09-13_08
1384
+ */
1385
+ hotTopicVersion?: string;
1386
+ /**
1387
+ * @example
1388
+ * 100000
1389
+ */
1390
+ hotValue?: number;
798
1391
  static names(): {
799
1392
  [key: string]: string;
800
1393
  };
@@ -805,12 +1398,18 @@ export declare class GenerateBroadcastNewsResponseBodyData extends $tea.Model {
805
1398
  [key: string]: any;
806
1399
  });
807
1400
  }
808
- export declare class ListHotTopicSummariesResponseBodyDataNewsComments extends $tea.Model {
1401
+ export declare class RunHotTopicChatResponseBodyPayloadOutputMultimodalMedias extends $tea.Model {
809
1402
  /**
810
1403
  * @example
811
- * xx
1404
+ * http://xxxx
812
1405
  */
813
- text?: string;
1406
+ fileUrl?: string;
1407
+ /**
1408
+ * @example
1409
+ * image
1410
+ */
1411
+ mediaType?: string;
1412
+ sortScore?: number;
814
1413
  static names(): {
815
1414
  [key: string]: string;
816
1415
  };
@@ -821,31 +1420,17 @@ export declare class ListHotTopicSummariesResponseBodyDataNewsComments extends $
821
1420
  [key: string]: any;
822
1421
  });
823
1422
  }
824
- export declare class ListHotTopicSummariesResponseBodyDataNews extends $tea.Model {
825
- comments?: ListHotTopicSummariesResponseBodyDataNewsComments[];
826
- /**
827
- * @example
828
- * xx
829
- */
830
- content?: string;
831
- /**
832
- * @example
833
- * 2024-09-10 15:32:00
834
- */
835
- pubTime?: string;
1423
+ export declare class RunHotTopicChatResponseBodyPayloadOutput extends $tea.Model {
1424
+ articles?: RunHotTopicChatResponseBodyPayloadOutputArticles[];
1425
+ hotTopicSummaries?: RunHotTopicChatResponseBodyPayloadOutputHotTopicSummaries[];
1426
+ multimodalMedias?: RunHotTopicChatResponseBodyPayloadOutputMultimodalMedias[];
1427
+ recommendQueries?: string[];
1428
+ searchQuery?: string;
836
1429
  /**
837
1430
  * @example
838
1431
  * xx
839
1432
  */
840
- title?: string;
841
- /**
842
- * @remarks
843
- * url
844
- *
845
- * @example
846
- * http://xxx
847
- */
848
- url?: string;
1433
+ text?: string;
849
1434
  static names(): {
850
1435
  [key: string]: string;
851
1436
  };
@@ -856,17 +1441,22 @@ export declare class ListHotTopicSummariesResponseBodyDataNews extends $tea.Mode
856
1441
  [key: string]: any;
857
1442
  });
858
1443
  }
859
- export declare class ListHotTopicSummariesResponseBodyDataSummarySummaries extends $tea.Model {
1444
+ export declare class RunHotTopicChatResponseBodyPayloadUsage extends $tea.Model {
860
1445
  /**
861
1446
  * @example
862
- * xx
1447
+ * 100
863
1448
  */
864
- summary?: string;
1449
+ inputTokens?: number;
865
1450
  /**
866
1451
  * @example
867
- * xx
1452
+ * 100
868
1453
  */
869
- title?: string;
1454
+ outputTokens?: number;
1455
+ /**
1456
+ * @example
1457
+ * 200
1458
+ */
1459
+ totalTokens?: number;
870
1460
  static names(): {
871
1461
  [key: string]: string;
872
1462
  };
@@ -877,8 +1467,9 @@ export declare class ListHotTopicSummariesResponseBodyDataSummarySummaries exten
877
1467
  [key: string]: any;
878
1468
  });
879
1469
  }
880
- export declare class ListHotTopicSummariesResponseBodyDataSummary extends $tea.Model {
881
- summaries?: ListHotTopicSummariesResponseBodyDataSummarySummaries[];
1470
+ export declare class RunHotTopicChatResponseBodyPayload extends $tea.Model {
1471
+ output?: RunHotTopicChatResponseBodyPayloadOutput;
1472
+ usage?: RunHotTopicChatResponseBodyPayloadUsage;
882
1473
  static names(): {
883
1474
  [key: string]: string;
884
1475
  };
@@ -889,35 +1480,25 @@ export declare class ListHotTopicSummariesResponseBodyDataSummary extends $tea.M
889
1480
  [key: string]: any;
890
1481
  });
891
1482
  }
892
- export declare class ListHotTopicSummariesResponseBodyData extends $tea.Model {
893
- category?: string;
894
- /**
895
- * @example
896
- * xx
897
- */
898
- hotTopic?: string;
1483
+ export declare class RunHotTopicSummaryRequestStepForCustomSummaryStyleConfig extends $tea.Model {
899
1484
  /**
900
1485
  * @example
901
- * 2024-09-13_12
902
- */
903
- hotTopicVersion?: string;
904
- /**
905
- * @example
906
- * 1000000
1486
+ * 2
907
1487
  */
908
- hotValue?: number;
1488
+ summaryImageCount?: number;
909
1489
  /**
1490
+ * @remarks
1491
+ * This parameter is required.
1492
+ *
910
1493
  * @example
911
- * db5dc5b3d8954a30b65ba700c9dda3bb
1494
+ * qwen-max
912
1495
  */
913
- id?: string;
914
- news?: ListHotTopicSummariesResponseBodyDataNews[];
915
- summary?: ListHotTopicSummariesResponseBodyDataSummary;
1496
+ summaryModel?: string;
916
1497
  /**
917
1498
  * @example
918
- * xx
1499
+ * xxxx
919
1500
  */
920
- textSummary?: string;
1501
+ summaryPrompt?: string;
921
1502
  static names(): {
922
1503
  [key: string]: string;
923
1504
  };
@@ -928,31 +1509,35 @@ export declare class ListHotTopicSummariesResponseBodyData extends $tea.Model {
928
1509
  [key: string]: any;
929
1510
  });
930
1511
  }
931
- export declare class RunCommentGenerationResponseBodyHeader extends $tea.Model {
1512
+ export declare class RunHotTopicSummaryResponseBodyHeader extends $tea.Model {
932
1513
  /**
933
1514
  * @example
934
- * result-generated
1515
+ * AccessForbidden
935
1516
  */
936
- event?: string;
937
- eventInfo?: string;
1517
+ errorCode?: string;
938
1518
  /**
939
1519
  * @example
940
- * F8A35034-EDCF-5C50-95A5-1044316F36E3
1520
+ * 错误信息
941
1521
  */
942
- requestId?: string;
1522
+ errorMessage?: string;
943
1523
  /**
944
1524
  * @example
945
- * tcm9xac9dsfbfgm8hf5k94l3cqybwh9o3mn0iuyytdgd9qoejxf1crxsdvuvr8fu0zuhbe8anhdaoeif2wbkmebagnezh23cuhkiazx2tmjh4eml791eak7t95sshvtkz14bh2lnbktzvdhialzd8reoaem0pktw41slinwyoabe75xlnxsqb5eo1i6ly70
1525
+ * task-finished
1526
+ */
1527
+ event?: string;
1528
+ /**
1529
+ * @example
1530
+ * xxxx
946
1531
  */
947
1532
  sessionId?: string;
948
1533
  /**
949
1534
  * @example
950
- * task-fu1918oghtodbis3chgpfr
1535
+ * xxxx
951
1536
  */
952
1537
  taskId?: string;
953
1538
  /**
954
1539
  * @example
955
- * 21507c3517074446017046500ed5f1
1540
+ * xxxxx
956
1541
  */
957
1542
  traceId?: string;
958
1543
  static names(): {
@@ -965,8 +1550,9 @@ export declare class RunCommentGenerationResponseBodyHeader extends $tea.Model {
965
1550
  [key: string]: any;
966
1551
  });
967
1552
  }
968
- export declare class RunCommentGenerationResponseBodyPayloadOutput extends $tea.Model {
1553
+ export declare class RunHotTopicSummaryResponseBodyPayloadOutput extends $tea.Model {
969
1554
  text?: string;
1555
+ topicId?: string;
970
1556
  static names(): {
971
1557
  [key: string]: string;
972
1558
  };
@@ -977,7 +1563,7 @@ export declare class RunCommentGenerationResponseBodyPayloadOutput extends $tea.
977
1563
  [key: string]: any;
978
1564
  });
979
1565
  }
980
- export declare class RunCommentGenerationResponseBodyPayloadUsage extends $tea.Model {
1566
+ export declare class RunHotTopicSummaryResponseBodyPayloadUsage extends $tea.Model {
981
1567
  /**
982
1568
  * @example
983
1569
  * 100
@@ -1003,9 +1589,9 @@ export declare class RunCommentGenerationResponseBodyPayloadUsage extends $tea.M
1003
1589
  [key: string]: any;
1004
1590
  });
1005
1591
  }
1006
- export declare class RunCommentGenerationResponseBodyPayload extends $tea.Model {
1007
- output?: RunCommentGenerationResponseBodyPayloadOutput;
1008
- usage?: RunCommentGenerationResponseBodyPayloadUsage;
1592
+ export declare class RunHotTopicSummaryResponseBodyPayload extends $tea.Model {
1593
+ output?: RunHotTopicSummaryResponseBodyPayloadOutput;
1594
+ usage?: RunHotTopicSummaryResponseBodyPayloadUsage;
1009
1595
  static names(): {
1010
1596
  [key: string]: string;
1011
1597
  };
@@ -1945,6 +2531,42 @@ export default class Client extends OpenApi {
1945
2531
  * @returns RunCommentGenerationResponse
1946
2532
  */
1947
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>;
1948
2570
  /**
1949
2571
  * 营销信息抽取服务
1950
2572
  *