tencentcloud-sdk-nodejs-ams 4.1.171 → 4.1.218
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
|
@@ -586,18 +586,26 @@ export interface TaskFilter {
|
|
|
586
586
|
*/
|
|
587
587
|
export interface InputInfo {
|
|
588
588
|
/**
|
|
589
|
-
*
|
|
589
|
+
* <p>该字段表示文件访问类型,取值为<strong>URL</strong>(资源链接)和<strong>COS</strong> (腾讯云对象存储)。</p>
|
|
590
590
|
*/
|
|
591
591
|
Type?: string;
|
|
592
592
|
/**
|
|
593
|
-
*
|
|
593
|
+
* <p>该字段表示文件访问的链接地址,格式为标准URL格式。<br> 备注:当Type为URL时此字段不为空。</p>
|
|
594
594
|
*/
|
|
595
595
|
Url?: string;
|
|
596
596
|
/**
|
|
597
|
-
*
|
|
597
|
+
* <p>该字段表示文件访问的腾讯云存储桶信息。<br> 备注:当Type为COS时此字段不为空。</p>
|
|
598
598
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
599
599
|
*/
|
|
600
600
|
BucketInfo?: BucketInfo;
|
|
601
|
+
/**
|
|
602
|
+
* <p>大模型审核可选输入图片列表</p>
|
|
603
|
+
*/
|
|
604
|
+
ImageUrlList?: Array<string>;
|
|
605
|
+
/**
|
|
606
|
+
* <p>大模型审核场景下,base64编码的审核要求内容</p>
|
|
607
|
+
*/
|
|
608
|
+
TextContent?: string;
|
|
601
609
|
}
|
|
602
610
|
/**
|
|
603
611
|
* 用于表示数据存储的相关信息
|