tencentcloud-sdk-nodejs-mps 4.1.241 → 4.1.244
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
|
@@ -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
|
*/
|
|
@@ -10930,7 +10992,7 @@ export interface EraseArea {
|
|
|
10930
10992
|
*/
|
|
10931
10993
|
export interface BlindWatermarkEmbedInfo {
|
|
10932
10994
|
/**
|
|
10933
|
-
*
|
|
10995
|
+
* <p>盲水印文字,经过URL安全的Base64编码的数据。Base64解码之后,少于12Byte将会填充0x00到12Byte,超过12Byte将会截断为12Byte。</p>
|
|
10934
10996
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10935
10997
|
*/
|
|
10936
10998
|
EmbedText?: string;
|
|
@@ -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
|
*/
|