tencentcloud-sdk-nodejs-tione 4.0.871 → 4.0.990

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.
@@ -157,6 +157,14 @@ export interface CreateModelServiceRequest {
157
157
  * 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
158
158
  */
159
159
  ServicePort?: number;
160
+ /**
161
+ * 服务的部署类型 [STANDARD 标准部署,DIST 分布式多机部署] 默认STANDARD
162
+ */
163
+ DeployType?: string;
164
+ /**
165
+ * 单副本下的实例数,仅在部署类型为DIST时生效,默认1
166
+ */
167
+ InstancePerReplicas?: number;
160
168
  }
161
169
  /**
162
170
  * 描述在线服务
@@ -321,6 +329,21 @@ export interface Service {
321
329
  注意:此字段可能返回 null,表示取不到有效值。
322
330
  */
323
331
  ResourceGroupSWType?: string;
332
+ /**
333
+ * 服务的归档状态 Waiting 等待归档中,Archived 已归档
334
+ 注意:此字段可能返回 null,表示取不到有效值。
335
+ */
336
+ ArchiveStatus?: string;
337
+ /**
338
+ * 服务的部署类型 [STANDARD 标准部署,DIST 分布式多机部署] 默认STANDARD
339
+ 注意:此字段可能返回 null,表示取不到有效值。
340
+ */
341
+ DeployType?: string;
342
+ /**
343
+ * 单副本下的实例数,仅在部署类型为DIST时生效,默认1
344
+ 注意:此字段可能返回 null,表示取不到有效值。
345
+ */
346
+ InstancePerReplicas?: string;
324
347
  }
325
348
  /**
326
349
  * DescribeModelAccelerateVersions请求参数结构体
@@ -527,6 +550,10 @@ export interface NotebookSetItem {
527
550
  注意:此字段可能返回 null,表示取不到有效值。
528
551
  */
529
552
  VolumeSourceGooseFS?: GooseFS;
553
+ /**
554
+ * 子用户名称
555
+ */
556
+ SubUinName?: string;
530
557
  }
531
558
  /**
532
559
  * notebook ssh端口配置
@@ -552,6 +579,11 @@ export interface SSHConfig {
552
579
  注意:此字段可能返回 null,表示取不到有效值。
553
580
  */
554
581
  LoginCommand?: string;
582
+ /**
583
+ * 登录地址是否改变
584
+ 注意:此字段可能返回 null,表示取不到有效值。
585
+ */
586
+ IsAddressChanged?: boolean;
555
587
  }
556
588
  /**
557
589
  * 大模型生成Token统计
@@ -559,17 +591,14 @@ export interface SSHConfig {
559
591
  export interface Usage {
560
592
  /**
561
593
  * 生成的token数目
562
- 注意:此字段可能返回 null,表示取不到有效值。
563
594
  */
564
595
  CompletionTokens?: number;
565
596
  /**
566
597
  * 输入的token数目
567
- 注意:此字段可能返回 null,表示取不到有效值。
568
598
  */
569
599
  PromptTokens?: number;
570
600
  /**
571
601
  * 总共token数目
572
- 注意:此字段可能返回 null,表示取不到有效值。
573
602
  */
574
603
  TotalTokens?: number;
575
604
  }
@@ -584,10 +613,7 @@ export interface DescribeBillingResourceGroupsRequest {
584
613
  */
585
614
  Type?: string;
586
615
  /**
587
- * Filter.Name: 枚举值: ResourceGroupId (资源组id列表)
588
- ResourceGroupName (资源组名称列表)
589
- Filter.Values: 长度为1且Filter.Fuzzy=true时,支持模糊查询; 不为1时,精确查询
590
- 每次请求的Filters的上限为5,Filter.Values的上限为100
616
+ * Filter.Name: 枚举值: ResourceGroupId (资源组id列表) ResourceGroupName (资源组名称列表) AvailableNodeCount(资源组中可用节点数量)Filter.Values: 长度为1且Filter.Fuzzy=true时,支持模糊查询; 不为1时,精确查询每次请求的Filters的上限为5,Filter.Values的上限为100
591
617
  */
592
618
  Filters?: Array<Filter>;
593
619
  /**
@@ -653,6 +679,19 @@ export interface DescribeTrainingModelVersionsRequest {
653
679
  */
654
680
  Filters?: Array<Filter>;
655
681
  }
682
+ /**
683
+ * 计费项询价单元
684
+ */
685
+ export interface SpecUnit {
686
+ /**
687
+ * 计费项名称
688
+ */
689
+ SpecName: string;
690
+ /**
691
+ * 计费项数量,建议不超过100万
692
+ */
693
+ SpecCount: number;
694
+ }
656
695
  /**
657
696
  * CreateDataset返回参数结构体
658
697
  */
@@ -783,23 +822,6 @@ export interface VolumeMount {
783
822
  */
784
823
  VolumeSourceType?: string;
785
824
  }
786
- /**
787
- * SendChatMessage返回参数结构体
788
- */
789
- export interface SendChatMessageResponse {
790
- /**
791
- * 答案
792
- */
793
- Answer?: string;
794
- /**
795
- * 会话id,返回请求的会话id
796
- */
797
- SessionId?: string;
798
- /**
799
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
800
- */
801
- RequestId?: string;
802
- }
803
825
  /**
804
826
  * DescribeBillingResourceGroup返回参数结构体
805
827
  */
@@ -906,6 +928,27 @@ export interface DescribeBillingResourceGroupsResponse {
906
928
  */
907
929
  RequestId?: string;
908
930
  }
931
+ /**
932
+ * 计费项询价结果
933
+ */
934
+ export interface SpecPrice {
935
+ /**
936
+ * 计费项名称
937
+ */
938
+ SpecName: string;
939
+ /**
940
+ * 原价,单位:分。最大值42亿,超过则返回0
941
+ */
942
+ TotalCost: number;
943
+ /**
944
+ * 优惠后的价格,单位:分
945
+ */
946
+ RealTotalCost: number;
947
+ /**
948
+ * 计费项数量
949
+ */
950
+ SpecCount?: number;
951
+ }
909
952
  /**
910
953
  * StartNotebook返回参数结构体
911
954
  */
@@ -1231,6 +1274,10 @@ export interface ModifyModelServiceRequest {
1231
1274
  * 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
1232
1275
  */
1233
1276
  ServicePort?: number;
1277
+ /**
1278
+ * 单副本下的实例数,仅在部署类型为DIST时生效,默认1
1279
+ */
1280
+ InstancePerReplicas?: number;
1234
1281
  }
1235
1282
  /**
1236
1283
  * ChatCompletion请求参数结构体
@@ -1238,7 +1285,7 @@ export interface ModifyModelServiceRequest {
1238
1285
  export interface ChatCompletionRequest {
1239
1286
  /**
1240
1287
  * 对话的目标模型ID。
1241
- 自行部署的开源大模型聊天:部署的模型服务组ID,形如ms-xxyyzz
1288
+ 自行部署的开源大模型聊天:部署的模型服务组ID,形如ms-q7pfr29p
1242
1289
  */
1243
1290
  Model: string;
1244
1291
  /**
@@ -1246,7 +1293,7 @@ export interface ChatCompletionRequest {
1246
1293
  */
1247
1294
  Messages: Array<Message>;
1248
1295
  /**
1249
- * 仅当模型为自行部署的开源大模型时生效。采样随机值,默认值为1.0,取值范围[0,2]。较高的值(如0.8)将使输出更加随机,而较低的值(如0.2)将使输出更加确定。建议仅修改此参数或TopP,但不建议两者都修改。
1296
+ * 仅当模型为自行部署的开源大模型时生效。采样随机值,默认值为0.7,取值范围[0,2]。较高的值(如0.8)将使输出更加随机,而较低的值(如0.2)将使输出更加确定。建议仅修改此参数或TopP,但不建议两者都修改。
1250
1297
  */
1251
1298
  Temperature?: number;
1252
1299
  /**
@@ -1254,7 +1301,7 @@ export interface ChatCompletionRequest {
1254
1301
  */
1255
1302
  TopP?: number;
1256
1303
  /**
1257
- * 仅当模型为自行部署的开源大模型时生效。最大生成的token数目。默认为无限大。
1304
+ * 仅当模型为自行部署的开源大模型时生效。默认 512,模型可生成内容的最长 token 数量,最大不能超过模型支持的上下文长度。
1258
1305
  */
1259
1306
  MaxTokens?: number;
1260
1307
  }
@@ -1573,6 +1620,25 @@ export interface StartCmdInfo {
1573
1620
  */
1574
1621
  WorkerStartCmd?: string;
1575
1622
  }
1623
+ /**
1624
+ * DescribeModelServiceGroups返回参数结构体
1625
+ */
1626
+ export interface DescribeModelServiceGroupsResponse {
1627
+ /**
1628
+ * 推理服务组数量。
1629
+ 注意:此字段可能返回 null,表示取不到有效值。
1630
+ */
1631
+ TotalCount?: number;
1632
+ /**
1633
+ * 服务组信息
1634
+ 注意:此字段可能返回 null,表示取不到有效值。
1635
+ */
1636
+ ServiceGroups?: Array<ServiceGroup>;
1637
+ /**
1638
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1639
+ */
1640
+ RequestId?: string;
1641
+ }
1576
1642
  /**
1577
1643
  * DescribeBillingResourceInstanceRunningJobs返回参数结构体
1578
1644
  */
@@ -1837,6 +1903,51 @@ export interface ResourceConfigInfo {
1837
1903
  */
1838
1904
  RDMAConfig?: RDMAConfig;
1839
1905
  }
1906
+ /**
1907
+ * 计费项内容
1908
+ */
1909
+ export interface Spec {
1910
+ /**
1911
+ * 计费项标签
1912
+ */
1913
+ SpecId?: string;
1914
+ /**
1915
+ * 计费项名称
1916
+ */
1917
+ SpecName?: string;
1918
+ /**
1919
+ * 计费项显示名称
1920
+ */
1921
+ SpecAlias?: string;
1922
+ /**
1923
+ * 是否售罄
1924
+ */
1925
+ Available?: boolean;
1926
+ /**
1927
+ * 当前资源售罄时,可用的区域有哪些
1928
+ */
1929
+ AvailableRegion?: Array<string>;
1930
+ /**
1931
+ * 当前计费项支持的特性
1932
+ 注意:此字段可能返回 null,表示取不到有效值。
1933
+ */
1934
+ SpecFeatures?: Array<string>;
1935
+ /**
1936
+ * 计费项类型
1937
+ 注意:此字段可能返回 null,表示取不到有效值。
1938
+ */
1939
+ SpecType?: string;
1940
+ /**
1941
+ * GPU类型
1942
+ 注意:此字段可能返回 null,表示取不到有效值。
1943
+ */
1944
+ GpuType?: string;
1945
+ /**
1946
+ * 计费项CategoryId
1947
+ 注意:此字段可能返回 null,表示取不到有效值。
1948
+ */
1949
+ CategoryId?: string;
1950
+ }
1840
1951
  /**
1841
1952
  * 配置GooseFS参数
1842
1953
  */
@@ -1875,26 +1986,6 @@ export interface Option {
1875
1986
  */
1876
1987
  Value: number;
1877
1988
  }
1878
- /**
1879
- * 自定义镜像仓库凭据
1880
- */
1881
- export interface ImageSecret {
1882
- /**
1883
- * 用于加密密码的KMS公钥ID
1884
- 注意:此字段可能返回 null,表示取不到有效值。
1885
- */
1886
- KeyId?: string;
1887
- /**
1888
- * 用户名
1889
- 注意:此字段可能返回 null,表示取不到有效值。
1890
- */
1891
- Username?: string;
1892
- /**
1893
- * 密码,base64编码; 当keyId不为空时,密码是加密后的
1894
- 注意:此字段可能返回 null,表示取不到有效值。
1895
- */
1896
- Password?: string;
1897
- }
1898
1989
  /**
1899
1990
  * 默认内网调用信息
1900
1991
  */
@@ -1916,7 +2007,6 @@ export interface DefaultInnerCallInfo {
1916
2007
  export interface Choice {
1917
2008
  /**
1918
2009
  * 对话结果
1919
- 注意:此字段可能返回 null,表示取不到有效值。
1920
2010
  */
1921
2011
  Message?: Message;
1922
2012
  /**
@@ -2018,6 +2108,14 @@ export interface DescribeDatasetsRequest {
2018
2108
  * 返回数据个数,默认20,最大支持200
2019
2109
  */
2020
2110
  Limit?: number;
2111
+ /**
2112
+ * 是否检查CFS。若开启,则在CFS挂载好之前,不会返回数据集列表。
2113
+ */
2114
+ CFSChecking?: boolean;
2115
+ /**
2116
+ * 是否返回CFS详情。
2117
+ */
2118
+ CFSDetail?: boolean;
2021
2119
  }
2022
2120
  /**
2023
2121
  * 优化模型版本列表
@@ -2123,23 +2221,21 @@ export interface DescribeInferTemplatesResponse {
2123
2221
  RequestId?: string;
2124
2222
  }
2125
2223
  /**
2126
- * DescribeModelServiceGroups返回参数结构体
2224
+ * DescribeBillingSpecs请求参数结构体
2127
2225
  */
2128
- export interface DescribeModelServiceGroupsResponse {
2226
+ export interface DescribeBillingSpecsRequest {
2129
2227
  /**
2130
- * 推理服务组数量。
2131
- 注意:此字段可能返回 null,表示取不到有效值。
2228
+ * 付费模式:POSTPAID_BY_HOUR按量计费、PREPAID包年包月
2132
2229
  */
2133
- TotalCount?: number;
2230
+ ChargeType: string;
2134
2231
  /**
2135
- * 服务组信息
2136
- 注意:此字段可能返回 null,表示取不到有效值。
2232
+ * 枚举值:空、TRAIN、NOTEBOOK、INFERENCE或EMS
2137
2233
  */
2138
- ServiceGroups?: Array<ServiceGroup>;
2234
+ TaskType?: string;
2139
2235
  /**
2140
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2236
+ * 资源类型:["", "CALC", "CPU", "GPU", "GPU-SW"]
2141
2237
  */
2142
- RequestId?: string;
2238
+ ResourceType?: string;
2143
2239
  }
2144
2240
  /**
2145
2241
  * 推理代码的信息
@@ -2289,122 +2385,157 @@ export interface DatasetInfo {
2289
2385
  * 数据集id
2290
2386
  注意:此字段可能返回 null,表示取不到有效值。
2291
2387
  */
2292
- DatasetId: string;
2388
+ DatasetId?: string;
2293
2389
  /**
2294
2390
  * 数据集名称
2295
2391
  注意:此字段可能返回 null,表示取不到有效值。
2296
2392
  */
2297
- DatasetName: string;
2393
+ DatasetName?: string;
2298
2394
  /**
2299
2395
  * 数据集创建者
2300
2396
  注意:此字段可能返回 null,表示取不到有效值。
2301
2397
  */
2302
- Creator: string;
2398
+ Creator?: string;
2303
2399
  /**
2304
2400
  * 数据集版本
2305
2401
  注意:此字段可能返回 null,表示取不到有效值。
2306
2402
  */
2307
- DatasetVersion: string;
2403
+ DatasetVersion?: string;
2308
2404
  /**
2309
2405
  * 数据集类型
2310
2406
  注意:此字段可能返回 null,表示取不到有效值。
2311
2407
  */
2312
- DatasetType: string;
2408
+ DatasetType?: string;
2313
2409
  /**
2314
2410
  * 数据集标签
2315
2411
  注意:此字段可能返回 null,表示取不到有效值。
2316
2412
  */
2317
- DatasetTags: Array<Tag>;
2413
+ DatasetTags?: Array<Tag>;
2318
2414
  /**
2319
2415
  * 数据集对应标注任务名称
2320
2416
  注意:此字段可能返回 null,表示取不到有效值。
2321
2417
  */
2322
- DatasetAnnotationTaskName: string;
2418
+ DatasetAnnotationTaskName?: string;
2323
2419
  /**
2324
2420
  * 数据集对应标注任务ID
2325
2421
  注意:此字段可能返回 null,表示取不到有效值。
2326
2422
  */
2327
- DatasetAnnotationTaskId: string;
2423
+ DatasetAnnotationTaskId?: string;
2328
2424
  /**
2329
2425
  * 处理进度
2330
2426
  注意:此字段可能返回 null,表示取不到有效值。
2331
2427
  */
2332
- Process: number;
2428
+ Process?: number;
2333
2429
  /**
2334
2430
  * 数据集状态
2335
2431
  注意:此字段可能返回 null,表示取不到有效值。
2336
2432
  */
2337
- DatasetStatus: string;
2433
+ DatasetStatus?: string;
2338
2434
  /**
2339
2435
  * 错误详情
2340
2436
  注意:此字段可能返回 null,表示取不到有效值。
2341
2437
  */
2342
- ErrorMsg: string;
2438
+ ErrorMsg?: string;
2343
2439
  /**
2344
2440
  * 数据集创建时间
2345
2441
  注意:此字段可能返回 null,表示取不到有效值。
2346
2442
  */
2347
- CreateTime: string;
2443
+ CreateTime?: string;
2348
2444
  /**
2349
2445
  * 数据集更新时间
2350
2446
  注意:此字段可能返回 null,表示取不到有效值。
2351
2447
  */
2352
- UpdateTime: string;
2448
+ UpdateTime?: string;
2353
2449
  /**
2354
2450
  * 外部任务类型
2355
2451
  注意:此字段可能返回 null,表示取不到有效值。
2356
2452
  */
2357
- ExternalTaskType: string;
2453
+ ExternalTaskType?: string;
2358
2454
  /**
2359
2455
  * 数据集存储大小
2360
2456
  注意:此字段可能返回 null,表示取不到有效值。
2361
2457
  */
2362
- DatasetSize: string;
2458
+ DatasetSize?: string;
2363
2459
  /**
2364
2460
  * 数据集数据数量
2365
2461
  注意:此字段可能返回 null,表示取不到有效值。
2366
2462
  */
2367
- FileNum: number;
2463
+ FileNum?: number;
2368
2464
  /**
2369
2465
  * 数据集源cos 路径
2370
2466
  注意:此字段可能返回 null,表示取不到有效值。
2371
2467
  */
2372
- StorageDataPath: CosPathInfo;
2468
+ StorageDataPath?: CosPathInfo;
2373
2469
  /**
2374
2470
  * 数据集输出cos路径
2375
2471
  注意:此字段可能返回 null,表示取不到有效值。
2376
2472
  */
2377
- StorageLabelPath: CosPathInfo;
2473
+ StorageLabelPath?: CosPathInfo;
2378
2474
  /**
2379
2475
  * 数据集标注状态
2380
2476
  注意:此字段可能返回 null,表示取不到有效值。
2381
2477
  */
2382
- AnnotationStatus: string;
2478
+ AnnotationStatus?: string;
2383
2479
  /**
2384
2480
  * 数据集类型
2385
2481
  注意:此字段可能返回 null,表示取不到有效值。
2386
2482
  */
2387
- AnnotationType: string;
2483
+ AnnotationType?: string;
2388
2484
  /**
2389
2485
  * 数据集标注格式
2390
2486
  注意:此字段可能返回 null,表示取不到有效值。
2391
2487
  */
2392
- AnnotationFormat: string;
2488
+ AnnotationFormat?: string;
2393
2489
  /**
2394
2490
  * 数据集范围
2395
2491
  注意:此字段可能返回 null,表示取不到有效值。
2396
2492
  */
2397
- DatasetScope: string;
2493
+ DatasetScope?: string;
2398
2494
  /**
2399
2495
  * 数据集OCR子场景
2400
2496
  注意:此字段可能返回 null,表示取不到有效值。
2401
2497
  */
2402
- OcrScene: string;
2498
+ OcrScene?: string;
2403
2499
  /**
2404
2500
  * 数据集字典修改状态
2405
2501
  注意:此字段可能返回 null,表示取不到有效值。
2406
2502
  */
2407
- AnnotationKeyStatus: string;
2503
+ AnnotationKeyStatus?: string;
2504
+ /**
2505
+ * 内容类型
2506
+ 注意:此字段可能返回 null,表示取不到有效值。
2507
+ */
2508
+ ContentType?: string;
2509
+ /**
2510
+ * 数据集建模类别。
2511
+ 注意:此字段可能返回 null,表示取不到有效值。
2512
+ */
2513
+ DatasetScene?: string;
2514
+ /**
2515
+ * CFS配置
2516
+ 注意:此字段可能返回 null,表示取不到有效值。
2517
+ */
2518
+ CFSConfig?: CFSConfig;
2519
+ /**
2520
+ * 数据集标签
2521
+ 注意:此字段可能返回 null,表示取不到有效值。
2522
+ */
2523
+ SceneTags?: Array<string>;
2524
+ /**
2525
+ * 已标注数量
2526
+ 注意:此字段可能返回 null,表示取不到有效值。
2527
+ */
2528
+ NumAnnotated?: number;
2529
+ /**
2530
+ * 标注规范
2531
+ 注意:此字段可能返回 null,表示取不到有效值。
2532
+ */
2533
+ AnnotationSpecification?: string;
2534
+ /**
2535
+ * 标注Schema是否配置
2536
+ 注意:此字段可能返回 null,表示取不到有效值。
2537
+ */
2538
+ AnnotationSchemaConfigured?: boolean;
2408
2539
  }
2409
2540
  /**
2410
2541
  * DescribeModelAccelerateTask返回参数结构体
@@ -2519,11 +2650,6 @@ export interface ImageInfo {
2519
2650
  注意:此字段可能返回 null,表示取不到有效值。
2520
2651
  */
2521
2652
  SupportDataPipeline?: boolean;
2522
- /**
2523
- * 镜像仓库用户名密码信息(仅当ImageType为CUSTOM第三方镜像的时候需要)
2524
- 注意:此字段可能返回 null,表示取不到有效值。
2525
- */
2526
- ImageSecret?: ImageSecret;
2527
2653
  }
2528
2654
  /**
2529
2655
  * 推理服务在集群中的信息
@@ -2621,6 +2747,10 @@ export interface ServiceInfo {
2621
2747
  注意:此字段可能返回 null,表示取不到有效值。
2622
2748
  */
2623
2749
  ModelHotUpdateEnable: boolean;
2750
+ /**
2751
+ * 服务的规格别名
2752
+ */
2753
+ InstanceAlias?: string;
2624
2754
  /**
2625
2755
  * 实例数量调节方式,默认为手动
2626
2756
  支持:自动 - "AUTO", 手动 - "MANUAL"
@@ -2740,14 +2870,16 @@ export interface DescribeModelServiceGroupRequest {
2740
2870
  export interface Message {
2741
2871
  /**
2742
2872
  * 角色名。支持三个角色:system、user、assistant,其中system仅开头可出现一次,也可忽略。
2743
- 注意:此字段可能返回 null,表示取不到有效值。
2744
2873
  */
2745
2874
  Role: string;
2746
2875
  /**
2747
2876
  * 对话输入内容。
2748
- 注意:此字段可能返回 null,表示取不到有效值。
2749
2877
  */
2750
- Content: string;
2878
+ Content?: string;
2879
+ /**
2880
+ * 多模态对话输入内容,Content与MultiModalContents两者只需要填写其中一个即可,当对话中包含多模态对话信息时,则填写本参数
2881
+ */
2882
+ MultiModalContents?: Array<MultiModalContent>;
2751
2883
  }
2752
2884
  /**
2753
2885
  * CreatePresignedNotebookUrl请求参数结构体
@@ -2801,22 +2933,35 @@ export interface DescribeDatasetsResponse {
2801
2933
  * 数据集总量(名称维度)
2802
2934
  注意:此字段可能返回 null,表示取不到有效值。
2803
2935
  */
2804
- TotalCount: number;
2936
+ TotalCount?: number;
2805
2937
  /**
2806
2938
  * 数据集按照数据集名称聚合的分组
2807
2939
  注意:此字段可能返回 null,表示取不到有效值。
2808
2940
  */
2809
- DatasetGroups: Array<DatasetGroup>;
2941
+ DatasetGroups?: Array<DatasetGroup>;
2810
2942
  /**
2811
2943
  * 数据集ID总量
2812
2944
  注意:此字段可能返回 null,表示取不到有效值。
2813
2945
  */
2814
- DatasetIdNums: number;
2946
+ DatasetIdNums?: number;
2947
+ /**
2948
+ * 若开启了CFSChecking,则检查CFS是否准备完毕。若CFS未准备完毕,则返回true,并且TotalCount为0,DatasetGroups为空。
2949
+ */
2950
+ CFSNotReady?: boolean;
2815
2951
  /**
2816
2952
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2817
2953
  */
2818
2954
  RequestId?: string;
2819
2955
  }
2956
+ /**
2957
+ * 多模态对话图片信息
2958
+ */
2959
+ export interface ImageUrl {
2960
+ /**
2961
+ * 图片url
2962
+ */
2963
+ Url?: string;
2964
+ }
2820
2965
  /**
2821
2966
  * 模型来源
2822
2967
  */
@@ -2920,6 +3065,15 @@ export interface IntranetCallInfo {
2920
3065
  */
2921
3066
  PrivateLinkInfosV2?: Array<PrivateLinkInfo>;
2922
3067
  }
3068
+ /**
3069
+ * DescribeBillingSpecsPrice请求参数结构体
3070
+ */
3071
+ export interface DescribeBillingSpecsPriceRequest {
3072
+ /**
3073
+ * 询价参数,支持批量询价
3074
+ */
3075
+ SpecsParam: Array<SpecUnit>;
3076
+ }
2923
3077
  /**
2924
3078
  * 资源组节点信息
2925
3079
  */
@@ -3006,24 +3160,17 @@ export interface Instance {
3006
3160
  ErrMsg?: string;
3007
3161
  }
3008
3162
  /**
3009
- * 共享弹性网卡信息
3163
+ * DescribeBillingSpecs返回参数结构体
3010
3164
  */
3011
- export interface ServiceEIPInfo {
3165
+ export interface DescribeBillingSpecsResponse {
3012
3166
  /**
3013
- * 服务ID
3014
- 注意:此字段可能返回 null,表示取不到有效值。
3167
+ * 计费项列表
3015
3168
  */
3016
- ServiceId?: string;
3169
+ Specs?: Array<Spec>;
3017
3170
  /**
3018
- * 用户VpcId
3019
- 注意:此字段可能返回 null,表示取不到有效值。
3020
- */
3021
- VpcId?: string;
3022
- /**
3023
- * 用户子网Id
3024
- 注意:此字段可能返回 null,表示取不到有效值。
3171
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3025
3172
  */
3026
- SubnetId?: string;
3173
+ RequestId?: string;
3027
3174
  }
3028
3175
  /**
3029
3176
  * DescribeNotebooks返回参数结构体
@@ -3031,12 +3178,10 @@ export interface ServiceEIPInfo {
3031
3178
  export interface DescribeNotebooksResponse {
3032
3179
  /**
3033
3180
  * 详情
3034
- 注意:此字段可能返回 null,表示取不到有效值。
3035
3181
  */
3036
3182
  NotebookSet?: Array<NotebookSetItem>;
3037
3183
  /**
3038
3184
  * 总条数
3039
- 注意:此字段可能返回 null,表示取不到有效值。
3040
3185
  */
3041
3186
  TotalCount?: number;
3042
3187
  /**
@@ -3052,132 +3197,162 @@ export interface DatasetGroup {
3052
3197
  * 数据集ID
3053
3198
  注意:此字段可能返回 null,表示取不到有效值。
3054
3199
  */
3055
- DatasetId: string;
3200
+ DatasetId?: string;
3056
3201
  /**
3057
3202
  * 数据集名称
3058
3203
  注意:此字段可能返回 null,表示取不到有效值。
3059
3204
  */
3060
- DatasetName: string;
3205
+ DatasetName?: string;
3061
3206
  /**
3062
3207
  * 创建者
3063
3208
  注意:此字段可能返回 null,表示取不到有效值。
3064
3209
  */
3065
- Creator: string;
3210
+ Creator?: string;
3066
3211
  /**
3067
3212
  * 数据集版本
3068
3213
  注意:此字段可能返回 null,表示取不到有效值。
3069
3214
  */
3070
- DatasetVersion: string;
3215
+ DatasetVersion?: string;
3071
3216
  /**
3072
3217
  * 数据集类型
3073
3218
  注意:此字段可能返回 null,表示取不到有效值。
3074
3219
  */
3075
- DatasetType: string;
3220
+ DatasetType?: string;
3076
3221
  /**
3077
3222
  * 数据集标签
3078
3223
  注意:此字段可能返回 null,表示取不到有效值。
3079
3224
  */
3080
- DatasetTags: Array<Tag>;
3225
+ DatasetTags?: Array<Tag>;
3081
3226
  /**
3082
3227
  * 数据集标注任务名称
3083
3228
  注意:此字段可能返回 null,表示取不到有效值。
3084
3229
  */
3085
- DatasetAnnotationTaskName: string;
3230
+ DatasetAnnotationTaskName?: string;
3086
3231
  /**
3087
3232
  * 数据集标注任务ID
3088
3233
  注意:此字段可能返回 null,表示取不到有效值。
3089
3234
  */
3090
- DatasetAnnotationTaskId: string;
3235
+ DatasetAnnotationTaskId?: string;
3091
3236
  /**
3092
3237
  * 处理进度
3093
3238
  注意:此字段可能返回 null,表示取不到有效值。
3094
3239
  */
3095
- Process: number;
3240
+ Process?: number;
3096
3241
  /**
3097
3242
  * 数据集状态
3098
3243
  注意:此字段可能返回 null,表示取不到有效值。
3099
3244
  */
3100
- DatasetStatus: string;
3245
+ DatasetStatus?: string;
3101
3246
  /**
3102
3247
  * 错误详情
3103
3248
  注意:此字段可能返回 null,表示取不到有效值。
3104
3249
  */
3105
- ErrorMsg: string;
3250
+ ErrorMsg?: string;
3106
3251
  /**
3107
3252
  * 创建时间
3108
3253
  注意:此字段可能返回 null,表示取不到有效值。
3109
3254
  */
3110
- CreateTime: string;
3255
+ CreateTime?: string;
3111
3256
  /**
3112
3257
  * 更新时间
3113
3258
  注意:此字段可能返回 null,表示取不到有效值。
3114
3259
  */
3115
- UpdateTime: string;
3260
+ UpdateTime?: string;
3116
3261
  /**
3117
3262
  * 外部关联TASKType
3118
3263
  注意:此字段可能返回 null,表示取不到有效值。
3119
3264
  */
3120
- ExternalTaskType: string;
3265
+ ExternalTaskType?: string;
3121
3266
  /**
3122
3267
  * 数据集大小
3123
3268
  注意:此字段可能返回 null,表示取不到有效值。
3124
3269
  */
3125
- DatasetSize: string;
3270
+ DatasetSize?: string;
3126
3271
  /**
3127
3272
  * 数据集数据量
3128
3273
  注意:此字段可能返回 null,表示取不到有效值。
3129
3274
  */
3130
- FileNum: number;
3275
+ FileNum?: number;
3131
3276
  /**
3132
3277
  * 数据集源COS路径
3133
3278
  注意:此字段可能返回 null,表示取不到有效值。
3134
3279
  */
3135
- StorageDataPath: CosPathInfo;
3280
+ StorageDataPath?: CosPathInfo;
3136
3281
  /**
3137
3282
  * 数据集标签存储路径
3138
3283
  注意:此字段可能返回 null,表示取不到有效值。
3139
3284
  */
3140
- StorageLabelPath: CosPathInfo;
3285
+ StorageLabelPath?: CosPathInfo;
3141
3286
  /**
3142
3287
  * 数据集版本聚合详情
3143
3288
  注意:此字段可能返回 null,表示取不到有效值。
3144
3289
  */
3145
- DatasetVersions: Array<DatasetInfo>;
3290
+ DatasetVersions?: Array<DatasetInfo>;
3146
3291
  /**
3147
3292
  * 数据集标注状态
3148
3293
  注意:此字段可能返回 null,表示取不到有效值。
3149
3294
  */
3150
- AnnotationStatus: string;
3295
+ AnnotationStatus?: string;
3151
3296
  /**
3152
3297
  * 数据集类型
3153
3298
  注意:此字段可能返回 null,表示取不到有效值。
3154
3299
  */
3155
- AnnotationType: string;
3300
+ AnnotationType?: string;
3156
3301
  /**
3157
3302
  * 数据集标注格式
3158
3303
  注意:此字段可能返回 null,表示取不到有效值。
3159
3304
  */
3160
- AnnotationFormat: string;
3305
+ AnnotationFormat?: string;
3161
3306
  /**
3162
3307
  * 数据集范围
3163
3308
  注意:此字段可能返回 null,表示取不到有效值。
3164
3309
  */
3165
- DatasetScope: string;
3310
+ DatasetScope?: string;
3166
3311
  /**
3167
3312
  * 数据集OCR子场景
3168
3313
  注意:此字段可能返回 null,表示取不到有效值。
3169
3314
  */
3170
- OcrScene: string;
3315
+ OcrScene?: string;
3171
3316
  /**
3172
3317
  * 数据集字典修改状态
3173
3318
  注意:此字段可能返回 null,表示取不到有效值。
3174
3319
  */
3175
- AnnotationKeyStatus: string;
3320
+ AnnotationKeyStatus?: string;
3176
3321
  /**
3177
3322
  * 文本数据集导入方式
3178
3323
  注意:此字段可能返回 null,表示取不到有效值。
3179
3324
  */
3180
3325
  ContentType?: string;
3326
+ /**
3327
+ * 数据集建模类别。
3328
+ 注意:此字段可能返回 null,表示取不到有效值。
3329
+ */
3330
+ DatasetScene?: string;
3331
+ /**
3332
+ * CFS配置
3333
+ 注意:此字段可能返回 null,表示取不到有效值。
3334
+ */
3335
+ CFSConfig?: CFSConfig;
3336
+ /**
3337
+ * 数据集标签
3338
+ 注意:此字段可能返回 null,表示取不到有效值。
3339
+ */
3340
+ SceneTags?: Array<string>;
3341
+ /**
3342
+ * 已标注数量
3343
+ 注意:此字段可能返回 null,表示取不到有效值。
3344
+ */
3345
+ NumAnnotated?: number;
3346
+ /**
3347
+ * 标注规范
3348
+ 注意:此字段可能返回 null,表示取不到有效值。
3349
+ */
3350
+ AnnotationSpecification?: string;
3351
+ /**
3352
+ * 标注Schema是否配置
3353
+ 注意:此字段可能返回 null,表示取不到有效值。
3354
+ */
3355
+ AnnotationSchemaConfigured?: boolean;
3181
3356
  }
3182
3357
  /**
3183
3358
  * 实例状况
@@ -3259,21 +3434,21 @@ export interface GroupResource {
3259
3434
  /**
3260
3435
  * CPU核数; 单位为1/1000核,比如100表示0.1核
3261
3436
  */
3262
- Cpu: number;
3437
+ Cpu?: number;
3263
3438
  /**
3264
3439
  * 内存;单位为MB
3265
3440
  */
3266
- Memory: number;
3441
+ Memory?: number;
3267
3442
  /**
3268
3443
  * 总卡数;GPUDetail 显卡数之和;单位为1/100卡,比如100代表1卡
3269
3444
  注意:此字段可能返回 null,表示取不到有效值。
3270
3445
  */
3271
- Gpu: number;
3446
+ Gpu?: number;
3272
3447
  /**
3273
3448
  * Gpu详情
3274
3449
  注意:此字段可能返回 null,表示取不到有效值。
3275
3450
  */
3276
- GpuDetailSet: Array<GpuDetail>;
3451
+ GpuDetailSet?: Array<GpuDetail>;
3277
3452
  }
3278
3453
  /**
3279
3454
  * DescribeModelServiceCallInfo返回参数结构体
@@ -3576,6 +3751,22 @@ export interface NotebookDetail {
3576
3751
  注意:此字段可能返回 null,表示取不到有效值。
3577
3752
  */
3578
3753
  VolumeSourceGooseFS?: GooseFS;
3754
+ /**
3755
+ * 子用户ID
3756
+ */
3757
+ SubUin?: string;
3758
+ /**
3759
+ * 调度节点ID
3760
+ */
3761
+ ResourceGroupInstanceId?: string;
3762
+ /**
3763
+ * 子用户名称
3764
+ */
3765
+ SubUinName?: string;
3766
+ /**
3767
+ * 任务实例创建时间
3768
+ */
3769
+ JobCreateTime?: string;
3579
3770
  }
3580
3771
  /**
3581
3772
  * 过滤器
@@ -3696,6 +3887,10 @@ export interface ModelInfo {
3696
3887
  注意:此字段可能返回 null,表示取不到有效值。
3697
3888
  */
3698
3889
  IsPrivateModel?: boolean;
3890
+ /**
3891
+ * 模型的类别 多模态MultiModal, 文本大模型 LLM
3892
+ */
3893
+ ModelCategory?: string;
3699
3894
  }
3700
3895
  /**
3701
3896
  * CreateDataset请求参数结构体
@@ -3712,15 +3907,15 @@ export interface CreateDatasetRequest {
3712
3907
  TYPE_DATASET_TABLE,表格
3713
3908
  TYPE_DATASET_OTHER,其他
3714
3909
  */
3715
- DatasetType: string;
3910
+ DatasetType?: string;
3716
3911
  /**
3717
3912
  * 数据源cos路径
3718
3913
  */
3719
- StorageDataPath: CosPathInfo;
3914
+ StorageDataPath?: CosPathInfo;
3720
3915
  /**
3721
3916
  * 数据集标签cos存储路径
3722
3917
  */
3723
- StorageLabelPath: CosPathInfo;
3918
+ StorageLabelPath?: CosPathInfo;
3724
3919
  /**
3725
3920
  * 数据集标签
3726
3921
  */
@@ -3737,6 +3932,8 @@ export interface CreateDatasetRequest {
3737
3932
  ANNOTATION_TYPE_DETECTION,目标检测
3738
3933
  ANNOTATION_TYPE_SEGMENTATION,图片分割
3739
3934
  ANNOTATION_TYPE_TRACKING,目标跟踪
3935
+ ANNOTATION_TYPE_OCR,OCR
3936
+ ANNOTATION_TYPE_TEXT_CLASSIFICATION,文本分类
3740
3937
  */
3741
3938
  AnnotationType?: string;
3742
3939
  /**
@@ -3745,6 +3942,10 @@ export interface CreateDatasetRequest {
3745
3942
  ANNOTATION_FORMAT_PASCAL,Pascal Voc
3746
3943
  ANNOTATION_FORMAT_COCO,COCO
3747
3944
  ANNOTATION_FORMAT_FILE,文件目录结构
3945
+ ANNOTATION_FORMAT_TEXT_TI,文本类型TI平台格式
3946
+ ANNOTATION_FORMAT_TXT,文本类型TXT格式
3947
+ ANNOTATION_FORMAT_CSV,文本类型CSV格式
3948
+ ANNOTATION_FORMAT_JSON,文本类型JSON格式
3748
3949
  */
3749
3950
  AnnotationFormat?: string;
3750
3951
  /**
@@ -3756,9 +3957,23 @@ export interface CreateDatasetRequest {
3756
3957
  */
3757
3958
  IsSchemaExisted?: boolean;
3758
3959
  /**
3759
- * 导入文件粒度,按行或者按文件
3960
+ * 导入文件粒度
3961
+ TYPE_TEXT_LINE,按行
3962
+ TYPE_TEXT_FILE,按文件
3760
3963
  */
3761
3964
  ContentType?: string;
3965
+ /**
3966
+ * 数据集建模一级类别。LLM,CV,STRUCTURE,OTHER
3967
+ */
3968
+ DatasetScene?: string;
3969
+ /**
3970
+ * 数据集标签。
3971
+ */
3972
+ SceneTags?: Array<string>;
3973
+ /**
3974
+ * 数据集CFS配置。仅支持LLM场景
3975
+ */
3976
+ CFSConfig?: CFSConfig;
3762
3977
  }
3763
3978
  /**
3764
3979
  * CreateModelService返回参数结构体
@@ -3766,7 +3981,6 @@ export interface CreateDatasetRequest {
3766
3981
  export interface CreateModelServiceResponse {
3767
3982
  /**
3768
3983
  * 生成的模型服务
3769
- 注意:此字段可能返回 null,表示取不到有效值。
3770
3984
  */
3771
3985
  Service?: Service;
3772
3986
  /**
@@ -3922,7 +4136,7 @@ export interface DescribeNotebookResponse {
3922
4136
  /**
3923
4137
  * 详情
3924
4138
  */
3925
- NotebookDetail: NotebookDetail;
4139
+ NotebookDetail?: NotebookDetail;
3926
4140
  /**
3927
4141
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3928
4142
  */
@@ -3995,36 +4209,24 @@ export interface IngressPrivateLinkInfo {
3995
4209
  State?: string;
3996
4210
  }
3997
4211
  /**
3998
- * SendChatMessage请求参数结构体
4212
+ * 共享弹性网卡信息
3999
4213
  */
4000
- export interface SendChatMessageRequest {
4001
- /**
4002
- * 会话id,标识一组对话的唯一id,id变更则重置会话
4003
- */
4004
- SessionId: string;
4005
- /**
4006
- * 问题描述
4007
- */
4008
- Question: string;
4214
+ export interface ServiceEIPInfo {
4009
4215
  /**
4010
- * 会话模型版本。
4011
- 金融大模型:填写sn-finllm-13b-chat-v1。
4012
- 默认为sn-finllm-13b-chat-v1,即金融大模型。
4216
+ * 服务ID
4217
+ 注意:此字段可能返回 null,表示取不到有效值。
4013
4218
  */
4014
- ModelVersion?: string;
4219
+ ServiceId?: string;
4015
4220
  /**
4016
- * 使用模式。
4017
- 通用问答:填写General。
4018
- 搜索增强问答:填写WithSearchPlugin。
4019
- 默认为General,即通用问答。
4020
- 当前可体验模型仅支持General。
4221
+ * 用户VpcId
4222
+ 注意:此字段可能返回 null,表示取不到有效值。
4021
4223
  */
4022
- Mode?: string;
4224
+ VpcId?: string;
4023
4225
  /**
4024
- * 搜索来源。仅当Mode为WithSearchPlugin时生效。
4025
- 预置文稿库:填写Preset。自定义:填写Custom。
4226
+ * 用户子网Id
4227
+ 注意:此字段可能返回 null,表示取不到有效值。
4026
4228
  */
4027
- SearchSource?: string;
4229
+ SubnetId?: string;
4028
4230
  }
4029
4231
  /**
4030
4232
  * DescribeModelAccelerateTask请求参数结构体
@@ -4093,6 +4295,11 @@ export interface TrainingTaskDetail {
4093
4295
  * 子账号uin
4094
4296
  */
4095
4297
  SubUin?: string;
4298
+ /**
4299
+ * 创建者名称
4300
+ 注意:此字段可能返回 null,表示取不到有效值。
4301
+ */
4302
+ SubUinName?: string;
4096
4303
  /**
4097
4304
  * 地域
4098
4305
  */
@@ -4549,7 +4756,7 @@ export interface DescribeTrainingTaskRequest {
4549
4756
  */
4550
4757
  export interface ChatCompletionResponse {
4551
4758
  /**
4552
- * 部署好的服务Id
4759
+ * 对话的模型服务组ID
4553
4760
  */
4554
4761
  Model?: string;
4555
4762
  /**
@@ -4558,12 +4765,10 @@ export interface ChatCompletionResponse {
4558
4765
  Choices?: Array<Choice>;
4559
4766
  /**
4560
4767
  * 会话Id。
4561
- 注意:此字段可能返回 null,表示取不到有效值。
4562
4768
  */
4563
4769
  Id?: string;
4564
4770
  /**
4565
4771
  * token统计
4566
- 注意:此字段可能返回 null,表示取不到有效值。
4567
4772
  */
4568
4773
  Usage?: Usage;
4569
4774
  /**
@@ -4631,6 +4836,12 @@ export interface DataConfig {
4631
4836
  * 映射路径
4632
4837
  */
4633
4838
  MappingPath?: string;
4839
+ /**
4840
+ * 存储用途
4841
+ 可选值为 BUILTIN_CODE, BUILTIN_DATA, BUILTIN_MODEL, USER_DATA, USER_CODE, USER_MODEL, OUTPUT, OTHER
4842
+ 注意:此字段可能返回 null,表示取不到有效值。
4843
+ */
4844
+ DataSourceUsage?: string;
4634
4845
  /**
4635
4846
  * DATASET、COS、CFS、CFSTurbo、GooseFSx、HDFS、WEDATA_HDFS
4636
4847
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4774,147 +4985,162 @@ export interface ModelAccelerateTask {
4774
4985
  * 模型加速任务ID
4775
4986
  注意:此字段可能返回 null,表示取不到有效值。
4776
4987
  */
4777
- ModelAccTaskId: string;
4988
+ ModelAccTaskId?: string;
4778
4989
  /**
4779
4990
  * 模型加速任务名称
4780
4991
  注意:此字段可能返回 null,表示取不到有效值。
4781
4992
  */
4782
- ModelAccTaskName: string;
4993
+ ModelAccTaskName?: string;
4783
4994
  /**
4784
4995
  * 模型ID
4785
4996
  注意:此字段可能返回 null,表示取不到有效值。
4786
4997
  */
4787
- ModelId: string;
4998
+ ModelId?: string;
4788
4999
  /**
4789
5000
  * 模型名称
4790
5001
  注意:此字段可能返回 null,表示取不到有效值。
4791
5002
  */
4792
- ModelName: string;
5003
+ ModelName?: string;
4793
5004
  /**
4794
5005
  * 模型版本
4795
5006
  注意:此字段可能返回 null,表示取不到有效值。
4796
5007
  */
4797
- ModelVersion: string;
5008
+ ModelVersion?: string;
4798
5009
  /**
4799
5010
  * 模型来源
4800
5011
  注意:此字段可能返回 null,表示取不到有效值。
4801
5012
  */
4802
- ModelSource: string;
5013
+ ModelSource?: string;
4803
5014
  /**
4804
5015
  * 优化级别
4805
5016
  注意:此字段可能返回 null,表示取不到有效值。
4806
5017
  */
4807
- OptimizationLevel: string;
5018
+ OptimizationLevel?: string;
4808
5019
  /**
4809
5020
  * 任务状态
4810
5021
  注意:此字段可能返回 null,表示取不到有效值。
4811
5022
  */
4812
- TaskStatus: string;
5023
+ TaskStatus?: string;
4813
5024
  /**
4814
5025
  * input节点个数
4815
5026
  注意:此字段可能返回 null,表示取不到有效值。
4816
5027
  */
4817
- ModelInputNum: number;
5028
+ ModelInputNum?: number;
4818
5029
  /**
4819
5030
  * input节点信息
4820
5031
  注意:此字段可能返回 null,表示取不到有效值。
4821
5032
  */
4822
- ModelInputInfos: Array<ModelInputInfo>;
5033
+ ModelInputInfos?: Array<ModelInputInfo>;
4823
5034
  /**
4824
5035
  * GPU型号
4825
5036
  注意:此字段可能返回 null,表示取不到有效值。
4826
5037
  */
4827
- GPUType: string;
5038
+ GPUType?: string;
4828
5039
  /**
4829
5040
  * 计费模式
4830
5041
  注意:此字段可能返回 null,表示取不到有效值。
4831
5042
  */
4832
- ChargeType: string;
5043
+ ChargeType?: string;
4833
5044
  /**
4834
5045
  * 加速比
4835
5046
  注意:此字段可能返回 null,表示取不到有效值。
4836
5047
  */
4837
- Speedup: string;
5048
+ Speedup?: string;
4838
5049
  /**
4839
5050
  * 模型输入cos路径
4840
5051
  注意:此字段可能返回 null,表示取不到有效值。
4841
5052
  */
4842
- ModelInputPath: CosPathInfo;
5053
+ ModelInputPath?: CosPathInfo;
4843
5054
  /**
4844
5055
  * 模型输出cos路径
4845
5056
  注意:此字段可能返回 null,表示取不到有效值。
4846
5057
  */
4847
- ModelOutputPath: CosPathInfo;
5058
+ ModelOutputPath?: CosPathInfo;
4848
5059
  /**
4849
5060
  * 错误信息
4850
5061
  注意:此字段可能返回 null,表示取不到有效值。
4851
5062
  */
4852
- ErrorMsg: string;
5063
+ ErrorMsg?: string;
4853
5064
  /**
4854
5065
  * 算法框架
4855
5066
  注意:此字段可能返回 null,表示取不到有效值。
4856
5067
  */
4857
- AlgorithmFramework: string;
5068
+ AlgorithmFramework?: string;
4858
5069
  /**
4859
5070
  * 排队个数
4860
5071
  注意:此字段可能返回 null,表示取不到有效值。
4861
5072
  */
4862
- WaitNumber: number;
5073
+ WaitNumber?: number;
4863
5074
  /**
4864
5075
  * 创建时间
4865
5076
  注意:此字段可能返回 null,表示取不到有效值。
4866
5077
  */
4867
- CreateTime: string;
5078
+ CreateTime?: string;
4868
5079
  /**
4869
5080
  * 任务进度
4870
5081
  注意:此字段可能返回 null,表示取不到有效值。
4871
5082
  */
4872
- TaskProgress: number;
5083
+ TaskProgress?: number;
4873
5084
  /**
4874
5085
  * 模型格式
4875
5086
  注意:此字段可能返回 null,表示取不到有效值。
4876
5087
  */
4877
- ModelFormat: string;
5088
+ ModelFormat?: string;
4878
5089
  /**
4879
5090
  * 模型Tensor信息
4880
5091
  注意:此字段可能返回 null,表示取不到有效值。
4881
5092
  */
4882
- TensorInfos: Array<string>;
5093
+ TensorInfos?: Array<string>;
4883
5094
  /**
4884
5095
  * 模型专业参数
4885
5096
  注意:此字段可能返回 null,表示取不到有效值。
4886
5097
  */
4887
- HyperParameter: HyperParameter;
5098
+ HyperParameter?: HyperParameter;
4888
5099
  /**
4889
5100
  * 加速引擎版本
4890
5101
  注意:此字段可能返回 null,表示取不到有效值。
4891
5102
  */
4892
- AccEngineVersion: string;
5103
+ AccEngineVersion?: string;
4893
5104
  /**
4894
5105
  * 标签
4895
5106
  注意:此字段可能返回 null,表示取不到有效值。
4896
5107
  */
4897
- Tags: Array<Tag>;
5108
+ Tags?: Array<Tag>;
4898
5109
  /**
4899
5110
  * 优化模型是否已保存到模型仓库
4900
5111
  注意:此字段可能返回 null,表示取不到有效值。
4901
5112
  */
4902
- IsSaved: boolean;
5113
+ IsSaved?: boolean;
4903
5114
  /**
4904
5115
  * SAVED_MODEL保存时配置的签名
4905
5116
  注意:此字段可能返回 null,表示取不到有效值。
4906
5117
  */
4907
- ModelSignature: string;
5118
+ ModelSignature?: string;
4908
5119
  /**
4909
5120
  * 是否是QAT模型
4910
5121
  注意:此字段可能返回 null,表示取不到有效值。
4911
5122
  */
4912
- QATModel: boolean;
5123
+ QATModel?: boolean;
4913
5124
  /**
4914
5125
  * 加速引擎对应的框架版本
4915
5126
  注意:此字段可能返回 null,表示取不到有效值。
4916
5127
  */
4917
5128
  FrameworkVersion?: string;
5129
+ /**
5130
+ * 模型版本ID
5131
+ 注意:此字段可能返回 null,表示取不到有效值。
5132
+ */
5133
+ ModelVersionId?: string;
5134
+ /**
5135
+ * 资源组id
5136
+ 注意:此字段可能返回 null,表示取不到有效值。
5137
+ */
5138
+ ResourceGroupId?: string;
5139
+ /**
5140
+ * 资源组名称
5141
+ 注意:此字段可能返回 null,表示取不到有效值。
5142
+ */
5143
+ ResourceGroupName?: string;
4918
5144
  }
4919
5145
  /**
4920
5146
  * Pod信息展示
@@ -5074,6 +5300,36 @@ export interface DeleteTrainingModelVersionRequest {
5074
5300
  */
5075
5301
  EnableDeleteCos?: boolean;
5076
5302
  }
5303
+ /**
5304
+ * DescribeBillingSpecsPrice返回参数结构体
5305
+ */
5306
+ export interface DescribeBillingSpecsPriceResponse {
5307
+ /**
5308
+ * 计费项价格,支持批量返回
5309
+ */
5310
+ SpecsPrice?: Array<SpecPrice>;
5311
+ /**
5312
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5313
+ */
5314
+ RequestId?: string;
5315
+ }
5316
+ /**
5317
+ * 多模态对话内容,支持图片与文字信息
5318
+ */
5319
+ export interface MultiModalContent {
5320
+ /**
5321
+ * 对话类型,text表示文本对话内容,image_url表示图片对话内容
5322
+ */
5323
+ Type: string;
5324
+ /**
5325
+ * 文本对话内容,当Type为text时需要填写该值
5326
+ */
5327
+ Text?: string;
5328
+ /**
5329
+ * 图片对话内容,当Type为image_url时需要填写该值
5330
+ */
5331
+ ImageUrl?: ImageUrl;
5332
+ }
5077
5333
  /**
5078
5334
  * DescribeTrainingModelVersion返回参数结构体
5079
5335
  */