tencentcloud-sdk-nodejs-mps 4.1.241 → 4.1.243

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-mps",
3
- "version": "4.1.241",
3
+ "version": "4.1.243",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -3492,6 +3492,35 @@ export interface CreateAdaptiveDynamicStreamingTemplateRequest {
3492
3492
  */
3493
3493
  SegmentType?: string;
3494
3494
  }
3495
+ /**
3496
+ * LLM 大模型单个检测项的聚合结果
3497
+ */
3498
+ export interface LLMDetectionResultItem {
3499
+ /**
3500
+ * <p>检测分类。</p><p>枚举值:</p><ul><li>AIGCQualityCharacteristics: AIGC 质量特征</li></ul>
3501
+ */
3502
+ Category?: string;
3503
+ /**
3504
+ * <p>检测分组。</p><p>枚举值:</p><ul><li>AIGCAuthenticity: AIGC 真实性,包括人体合理性、物理合理性、跨帧一致性等</li><li>AIGCTechQuality: AIGC 技术质量,包括画幅、黑边、强行竖屏等</li></ul>
3505
+ */
3506
+ Group?: string;
3507
+ /**
3508
+ * <p>检测类型名称。</p><p>枚举值:</p><ul><li>BodyPoseCheck: 人体姿态合理性,属于 AIGCAuthenticity</li><li>BodyDetailCheck: 人体细节合理性,包括手指数、五官对称等,属于 AIGCAuthenticity</li><li>PhysicRulesCheck: 物理规律合理性,包括透视、光影、重力等,属于 AIGCAuthenticity</li><li>ObjectConsistencyCheck: 跨帧物体一致性,属于 AIGCAuthenticity</li><li>FormatCheck: 画幅、黑边、强行竖屏等格式问题,属于 AIGCTechQuality</li></ul>
3509
+ */
3510
+ Type?: string;
3511
+ /**
3512
+ * <p>整体质量得分,范围 [0, 100],越高越好。</p>
3513
+ */
3514
+ Score?: number;
3515
+ /**
3516
+ * <p>判断置信度,范围 [0, 100],越高表示越确定。</p>
3517
+ */
3518
+ Confidence?: number;
3519
+ /**
3520
+ * <p>检测发现的问题列表,无问题时为空。</p>
3521
+ */
3522
+ IssueSet?: Array<LLMDetectionIssue>;
3523
+ }
3495
3524
  /**
3496
3525
  * CreateProcessImageTemplate返回参数结构体
3497
3526
  */
@@ -6555,6 +6584,39 @@ export interface ModifyStreamPackageSSAIChannelResponse {
6555
6584
  */
6556
6585
  RequestId?: string;
6557
6586
  }
6587
+ /**
6588
+ * LLM 大模型检测发现的单条问题
6589
+ */
6590
+ export interface LLMDetectionIssue {
6591
+ /**
6592
+ * <p>问题分类标签。</p>
6593
+ */
6594
+ Tag?: string;
6595
+ /**
6596
+ * <p>问题描述。</p>
6597
+ */
6598
+ Description?: string;
6599
+ /**
6600
+ * <p>该问题的质量得分,范围 [0, 100]。</p>
6601
+ */
6602
+ Score?: number;
6603
+ /**
6604
+ * <p>该问题的判断置信度,范围 [0, 100]。</p>
6605
+ */
6606
+ Confidence?: number;
6607
+ /**
6608
+ * <p>问题起始时间(毫秒)。</p>
6609
+ */
6610
+ StartTimeMs?: number;
6611
+ /**
6612
+ * <p>问题结束时间(毫秒)</p>
6613
+ */
6614
+ EndTimeMs?: number;
6615
+ /**
6616
+ * <p>附加数据(JSON 格式),如严重程度等补充信息。</p>
6617
+ */
6618
+ ExtraData?: string;
6619
+ }
6558
6620
  /**
6559
6621
  * 语音违禁任务控制参数
6560
6622
  */
@@ -20768,6 +20830,10 @@ export interface QualityControlData {
20768
20830
  * <p>格式诊断检出异常项。</p>
20769
20831
  */
20770
20832
  ContainerDiagnoseResultSet?: Array<ContainerDiagnoseResultItem>;
20833
+ /**
20834
+ * <p>LLM大模型AIGC质量检测结果。</p>
20835
+ */
20836
+ LLMDetectionReport?: LLMDetectionReport;
20771
20837
  }
20772
20838
  /**
20773
20839
  * 查询输出的RIST拉流配置信息。
@@ -21522,6 +21588,19 @@ export interface DescribeSmartSubtitleTemplatesResponse {
21522
21588
  */
21523
21589
  RequestId?: string;
21524
21590
  }
21591
+ /**
21592
+ * LLM 大模型检测结果报告
21593
+ */
21594
+ export interface LLMDetectionReport {
21595
+ /**
21596
+ * <p>检测结果数量。</p>
21597
+ */
21598
+ ResultCount?: number;
21599
+ /**
21600
+ * <p>各检测项结果列表。</p>
21601
+ */
21602
+ ResultSet?: Array<LLMDetectionResultItem>;
21603
+ }
21525
21604
  /**
21526
21605
  * DescribeUsageData请求参数结构体
21527
21606
  */