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.
@@ -174,6 +174,14 @@ HYBRID_PAID:
174
174
  * 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
175
175
  */
176
176
  ServicePort?: number
177
+ /**
178
+ * 服务的部署类型 [STANDARD 标准部署,DIST 分布式多机部署] 默认STANDARD
179
+ */
180
+ DeployType?: string
181
+ /**
182
+ * 单副本下的实例数,仅在部署类型为DIST时生效,默认1
183
+ */
184
+ InstancePerReplicas?: number
177
185
  }
178
186
 
179
187
  /**
@@ -339,6 +347,21 @@ DEFAULT: 其他来源
339
347
  注意:此字段可能返回 null,表示取不到有效值。
340
348
  */
341
349
  ResourceGroupSWType?: string
350
+ /**
351
+ * 服务的归档状态 Waiting 等待归档中,Archived 已归档
352
+ 注意:此字段可能返回 null,表示取不到有效值。
353
+ */
354
+ ArchiveStatus?: string
355
+ /**
356
+ * 服务的部署类型 [STANDARD 标准部署,DIST 分布式多机部署] 默认STANDARD
357
+ 注意:此字段可能返回 null,表示取不到有效值。
358
+ */
359
+ DeployType?: string
360
+ /**
361
+ * 单副本下的实例数,仅在部署类型为DIST时生效,默认1
362
+ 注意:此字段可能返回 null,表示取不到有效值。
363
+ */
364
+ InstancePerReplicas?: string
342
365
  }
343
366
 
344
367
  /**
@@ -550,6 +573,10 @@ export interface NotebookSetItem {
550
573
  注意:此字段可能返回 null,表示取不到有效值。
551
574
  */
552
575
  VolumeSourceGooseFS?: GooseFS
576
+ /**
577
+ * 子用户名称
578
+ */
579
+ SubUinName?: string
553
580
  }
554
581
 
555
582
  /**
@@ -576,6 +603,11 @@ export interface SSHConfig {
576
603
  注意:此字段可能返回 null,表示取不到有效值。
577
604
  */
578
605
  LoginCommand?: string
606
+ /**
607
+ * 登录地址是否改变
608
+ 注意:此字段可能返回 null,表示取不到有效值。
609
+ */
610
+ IsAddressChanged?: boolean
579
611
  }
580
612
 
581
613
  /**
@@ -584,17 +616,14 @@ export interface SSHConfig {
584
616
  export interface Usage {
585
617
  /**
586
618
  * 生成的token数目
587
- 注意:此字段可能返回 null,表示取不到有效值。
588
619
  */
589
620
  CompletionTokens?: number
590
621
  /**
591
622
  * 输入的token数目
592
- 注意:此字段可能返回 null,表示取不到有效值。
593
623
  */
594
624
  PromptTokens?: number
595
625
  /**
596
626
  * 总共token数目
597
- 注意:此字段可能返回 null,表示取不到有效值。
598
627
  */
599
628
  TotalTokens?: number
600
629
  }
@@ -610,10 +639,7 @@ export interface DescribeBillingResourceGroupsRequest {
610
639
  */
611
640
  Type?: string
612
641
  /**
613
- * Filter.Name: 枚举值: ResourceGroupId (资源组id列表)
614
- ResourceGroupName (资源组名称列表)
615
- Filter.Values: 长度为1且Filter.Fuzzy=true时,支持模糊查询; 不为1时,精确查询
616
- 每次请求的Filters的上限为5,Filter.Values的上限为100
642
+ * Filter.Name: 枚举值: ResourceGroupId (资源组id列表) ResourceGroupName (资源组名称列表) AvailableNodeCount(资源组中可用节点数量)Filter.Values: 长度为1且Filter.Fuzzy=true时,支持模糊查询; 不为1时,精确查询每次请求的Filters的上限为5,Filter.Values的上限为100
617
643
  */
618
644
  Filters?: Array<Filter>
619
645
  /**
@@ -683,6 +709,20 @@ Filter.Values: 当长度为1时,支持模糊查询; 不为1时,精确查询
683
709
  Filters?: Array<Filter>
684
710
  }
685
711
 
712
+ /**
713
+ * 计费项询价单元
714
+ */
715
+ export interface SpecUnit {
716
+ /**
717
+ * 计费项名称
718
+ */
719
+ SpecName: string
720
+ /**
721
+ * 计费项数量,建议不超过100万
722
+ */
723
+ SpecCount: number
724
+ }
725
+
686
726
  /**
687
727
  * CreateDataset返回参数结构体
688
728
  */
@@ -818,24 +858,6 @@ export interface VolumeMount {
818
858
  VolumeSourceType?: string
819
859
  }
820
860
 
821
- /**
822
- * SendChatMessage返回参数结构体
823
- */
824
- export interface SendChatMessageResponse {
825
- /**
826
- * 答案
827
- */
828
- Answer?: string
829
- /**
830
- * 会话id,返回请求的会话id
831
- */
832
- SessionId?: string
833
- /**
834
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
835
- */
836
- RequestId?: string
837
- }
838
-
839
861
  /**
840
862
  * DescribeBillingResourceGroup返回参数结构体
841
863
  */
@@ -946,6 +968,28 @@ export interface DescribeBillingResourceGroupsResponse {
946
968
  RequestId?: string
947
969
  }
948
970
 
971
+ /**
972
+ * 计费项询价结果
973
+ */
974
+ export interface SpecPrice {
975
+ /**
976
+ * 计费项名称
977
+ */
978
+ SpecName: string
979
+ /**
980
+ * 原价,单位:分。最大值42亿,超过则返回0
981
+ */
982
+ TotalCost: number
983
+ /**
984
+ * 优惠后的价格,单位:分
985
+ */
986
+ RealTotalCost: number
987
+ /**
988
+ * 计费项数量
989
+ */
990
+ SpecCount?: number
991
+ }
992
+
949
993
  /**
950
994
  * StartNotebook返回参数结构体
951
995
  */
@@ -1284,6 +1328,10 @@ HYBRID_PAID:
1284
1328
  * 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
1285
1329
  */
1286
1330
  ServicePort?: number
1331
+ /**
1332
+ * 单副本下的实例数,仅在部署类型为DIST时生效,默认1
1333
+ */
1334
+ InstancePerReplicas?: number
1287
1335
  }
1288
1336
 
1289
1337
  /**
@@ -1292,7 +1340,7 @@ HYBRID_PAID:
1292
1340
  export interface ChatCompletionRequest {
1293
1341
  /**
1294
1342
  * 对话的目标模型ID。
1295
- 自行部署的开源大模型聊天:部署的模型服务组ID,形如ms-xxyyzz
1343
+ 自行部署的开源大模型聊天:部署的模型服务组ID,形如ms-q7pfr29p
1296
1344
  */
1297
1345
  Model: string
1298
1346
  /**
@@ -1300,7 +1348,7 @@ export interface ChatCompletionRequest {
1300
1348
  */
1301
1349
  Messages: Array<Message>
1302
1350
  /**
1303
- * 仅当模型为自行部署的开源大模型时生效。采样随机值,默认值为1.0,取值范围[0,2]。较高的值(如0.8)将使输出更加随机,而较低的值(如0.2)将使输出更加确定。建议仅修改此参数或TopP,但不建议两者都修改。
1351
+ * 仅当模型为自行部署的开源大模型时生效。采样随机值,默认值为0.7,取值范围[0,2]。较高的值(如0.8)将使输出更加随机,而较低的值(如0.2)将使输出更加确定。建议仅修改此参数或TopP,但不建议两者都修改。
1304
1352
  */
1305
1353
  Temperature?: number
1306
1354
  /**
@@ -1308,7 +1356,7 @@ export interface ChatCompletionRequest {
1308
1356
  */
1309
1357
  TopP?: number
1310
1358
  /**
1311
- * 仅当模型为自行部署的开源大模型时生效。最大生成的token数目。默认为无限大。
1359
+ * 仅当模型为自行部署的开源大模型时生效。默认 512,模型可生成内容的最长 token 数量,最大不能超过模型支持的上下文长度。
1312
1360
  */
1313
1361
  MaxTokens?: number
1314
1362
  }
@@ -1636,6 +1684,26 @@ export interface StartCmdInfo {
1636
1684
  WorkerStartCmd?: string
1637
1685
  }
1638
1686
 
1687
+ /**
1688
+ * DescribeModelServiceGroups返回参数结构体
1689
+ */
1690
+ export interface DescribeModelServiceGroupsResponse {
1691
+ /**
1692
+ * 推理服务组数量。
1693
+ 注意:此字段可能返回 null,表示取不到有效值。
1694
+ */
1695
+ TotalCount?: number
1696
+ /**
1697
+ * 服务组信息
1698
+ 注意:此字段可能返回 null,表示取不到有效值。
1699
+ */
1700
+ ServiceGroups?: Array<ServiceGroup>
1701
+ /**
1702
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1703
+ */
1704
+ RequestId?: string
1705
+ }
1706
+
1639
1707
  /**
1640
1708
  * DescribeBillingResourceInstanceRunningJobs返回参数结构体
1641
1709
  */
@@ -1906,6 +1974,52 @@ TI.GN7.20XLARGE320.POST: 80C32
1906
1974
  RDMAConfig?: RDMAConfig
1907
1975
  }
1908
1976
 
1977
+ /**
1978
+ * 计费项内容
1979
+ */
1980
+ export interface Spec {
1981
+ /**
1982
+ * 计费项标签
1983
+ */
1984
+ SpecId?: string
1985
+ /**
1986
+ * 计费项名称
1987
+ */
1988
+ SpecName?: string
1989
+ /**
1990
+ * 计费项显示名称
1991
+ */
1992
+ SpecAlias?: string
1993
+ /**
1994
+ * 是否售罄
1995
+ */
1996
+ Available?: boolean
1997
+ /**
1998
+ * 当前资源售罄时,可用的区域有哪些
1999
+ */
2000
+ AvailableRegion?: Array<string>
2001
+ /**
2002
+ * 当前计费项支持的特性
2003
+ 注意:此字段可能返回 null,表示取不到有效值。
2004
+ */
2005
+ SpecFeatures?: Array<string>
2006
+ /**
2007
+ * 计费项类型
2008
+ 注意:此字段可能返回 null,表示取不到有效值。
2009
+ */
2010
+ SpecType?: string
2011
+ /**
2012
+ * GPU类型
2013
+ 注意:此字段可能返回 null,表示取不到有效值。
2014
+ */
2015
+ GpuType?: string
2016
+ /**
2017
+ * 计费项CategoryId
2018
+ 注意:此字段可能返回 null,表示取不到有效值。
2019
+ */
2020
+ CategoryId?: string
2021
+ }
2022
+
1909
2023
  /**
1910
2024
  * 配置GooseFS参数
1911
2025
  */
@@ -1946,27 +2060,6 @@ export interface Option {
1946
2060
  Value: number
1947
2061
  }
1948
2062
 
1949
- /**
1950
- * 自定义镜像仓库凭据
1951
- */
1952
- export interface ImageSecret {
1953
- /**
1954
- * 用于加密密码的KMS公钥ID
1955
- 注意:此字段可能返回 null,表示取不到有效值。
1956
- */
1957
- KeyId?: string
1958
- /**
1959
- * 用户名
1960
- 注意:此字段可能返回 null,表示取不到有效值。
1961
- */
1962
- Username?: string
1963
- /**
1964
- * 密码,base64编码; 当keyId不为空时,密码是加密后的
1965
- 注意:此字段可能返回 null,表示取不到有效值。
1966
- */
1967
- Password?: string
1968
- }
1969
-
1970
2063
  /**
1971
2064
  * 默认内网调用信息
1972
2065
  */
@@ -1989,7 +2082,6 @@ export interface DefaultInnerCallInfo {
1989
2082
  export interface Choice {
1990
2083
  /**
1991
2084
  * 对话结果
1992
- 注意:此字段可能返回 null,表示取不到有效值。
1993
2085
  */
1994
2086
  Message?: Message
1995
2087
  /**
@@ -2094,6 +2186,14 @@ DatasetScope,数据集范围,SCOPE_DATASET_PRIVATE或SCOPE_DATASET_PUBLIC
2094
2186
  * 返回数据个数,默认20,最大支持200
2095
2187
  */
2096
2188
  Limit?: number
2189
+ /**
2190
+ * 是否检查CFS。若开启,则在CFS挂载好之前,不会返回数据集列表。
2191
+ */
2192
+ CFSChecking?: boolean
2193
+ /**
2194
+ * 是否返回CFS详情。
2195
+ */
2196
+ CFSDetail?: boolean
2097
2197
  }
2098
2198
 
2099
2199
  /**
@@ -2203,23 +2303,21 @@ export interface DescribeInferTemplatesResponse {
2203
2303
  }
2204
2304
 
2205
2305
  /**
2206
- * DescribeModelServiceGroups返回参数结构体
2306
+ * DescribeBillingSpecs请求参数结构体
2207
2307
  */
2208
- export interface DescribeModelServiceGroupsResponse {
2308
+ export interface DescribeBillingSpecsRequest {
2209
2309
  /**
2210
- * 推理服务组数量。
2211
- 注意:此字段可能返回 null,表示取不到有效值。
2310
+ * 付费模式:POSTPAID_BY_HOUR按量计费、PREPAID包年包月
2212
2311
  */
2213
- TotalCount?: number
2312
+ ChargeType: string
2214
2313
  /**
2215
- * 服务组信息
2216
- 注意:此字段可能返回 null,表示取不到有效值。
2314
+ * 枚举值:空、TRAIN、NOTEBOOK、INFERENCE或EMS
2217
2315
  */
2218
- ServiceGroups?: Array<ServiceGroup>
2316
+ TaskType?: string
2219
2317
  /**
2220
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2318
+ * 资源类型:["", "CALC", "CPU", "GPU", "GPU-SW"]
2221
2319
  */
2222
- RequestId?: string
2320
+ ResourceType?: string
2223
2321
  }
2224
2322
 
2225
2323
  /**
@@ -2378,122 +2476,157 @@ export interface DatasetInfo {
2378
2476
  * 数据集id
2379
2477
  注意:此字段可能返回 null,表示取不到有效值。
2380
2478
  */
2381
- DatasetId: string
2479
+ DatasetId?: string
2382
2480
  /**
2383
2481
  * 数据集名称
2384
2482
  注意:此字段可能返回 null,表示取不到有效值。
2385
2483
  */
2386
- DatasetName: string
2484
+ DatasetName?: string
2387
2485
  /**
2388
2486
  * 数据集创建者
2389
2487
  注意:此字段可能返回 null,表示取不到有效值。
2390
2488
  */
2391
- Creator: string
2489
+ Creator?: string
2392
2490
  /**
2393
2491
  * 数据集版本
2394
2492
  注意:此字段可能返回 null,表示取不到有效值。
2395
2493
  */
2396
- DatasetVersion: string
2494
+ DatasetVersion?: string
2397
2495
  /**
2398
2496
  * 数据集类型
2399
2497
  注意:此字段可能返回 null,表示取不到有效值。
2400
2498
  */
2401
- DatasetType: string
2499
+ DatasetType?: string
2402
2500
  /**
2403
2501
  * 数据集标签
2404
2502
  注意:此字段可能返回 null,表示取不到有效值。
2405
2503
  */
2406
- DatasetTags: Array<Tag>
2504
+ DatasetTags?: Array<Tag>
2407
2505
  /**
2408
2506
  * 数据集对应标注任务名称
2409
2507
  注意:此字段可能返回 null,表示取不到有效值。
2410
2508
  */
2411
- DatasetAnnotationTaskName: string
2509
+ DatasetAnnotationTaskName?: string
2412
2510
  /**
2413
2511
  * 数据集对应标注任务ID
2414
2512
  注意:此字段可能返回 null,表示取不到有效值。
2415
2513
  */
2416
- DatasetAnnotationTaskId: string
2514
+ DatasetAnnotationTaskId?: string
2417
2515
  /**
2418
2516
  * 处理进度
2419
2517
  注意:此字段可能返回 null,表示取不到有效值。
2420
2518
  */
2421
- Process: number
2519
+ Process?: number
2422
2520
  /**
2423
2521
  * 数据集状态
2424
2522
  注意:此字段可能返回 null,表示取不到有效值。
2425
2523
  */
2426
- DatasetStatus: string
2524
+ DatasetStatus?: string
2427
2525
  /**
2428
2526
  * 错误详情
2429
2527
  注意:此字段可能返回 null,表示取不到有效值。
2430
2528
  */
2431
- ErrorMsg: string
2529
+ ErrorMsg?: string
2432
2530
  /**
2433
2531
  * 数据集创建时间
2434
2532
  注意:此字段可能返回 null,表示取不到有效值。
2435
2533
  */
2436
- CreateTime: string
2534
+ CreateTime?: string
2437
2535
  /**
2438
2536
  * 数据集更新时间
2439
2537
  注意:此字段可能返回 null,表示取不到有效值。
2440
2538
  */
2441
- UpdateTime: string
2539
+ UpdateTime?: string
2442
2540
  /**
2443
2541
  * 外部任务类型
2444
2542
  注意:此字段可能返回 null,表示取不到有效值。
2445
2543
  */
2446
- ExternalTaskType: string
2544
+ ExternalTaskType?: string
2447
2545
  /**
2448
2546
  * 数据集存储大小
2449
2547
  注意:此字段可能返回 null,表示取不到有效值。
2450
2548
  */
2451
- DatasetSize: string
2549
+ DatasetSize?: string
2452
2550
  /**
2453
2551
  * 数据集数据数量
2454
2552
  注意:此字段可能返回 null,表示取不到有效值。
2455
2553
  */
2456
- FileNum: number
2554
+ FileNum?: number
2457
2555
  /**
2458
2556
  * 数据集源cos 路径
2459
2557
  注意:此字段可能返回 null,表示取不到有效值。
2460
2558
  */
2461
- StorageDataPath: CosPathInfo
2559
+ StorageDataPath?: CosPathInfo
2462
2560
  /**
2463
2561
  * 数据集输出cos路径
2464
2562
  注意:此字段可能返回 null,表示取不到有效值。
2465
2563
  */
2466
- StorageLabelPath: CosPathInfo
2564
+ StorageLabelPath?: CosPathInfo
2467
2565
  /**
2468
2566
  * 数据集标注状态
2469
2567
  注意:此字段可能返回 null,表示取不到有效值。
2470
2568
  */
2471
- AnnotationStatus: string
2569
+ AnnotationStatus?: string
2472
2570
  /**
2473
2571
  * 数据集类型
2474
2572
  注意:此字段可能返回 null,表示取不到有效值。
2475
2573
  */
2476
- AnnotationType: string
2574
+ AnnotationType?: string
2477
2575
  /**
2478
2576
  * 数据集标注格式
2479
2577
  注意:此字段可能返回 null,表示取不到有效值。
2480
2578
  */
2481
- AnnotationFormat: string
2579
+ AnnotationFormat?: string
2482
2580
  /**
2483
2581
  * 数据集范围
2484
2582
  注意:此字段可能返回 null,表示取不到有效值。
2485
2583
  */
2486
- DatasetScope: string
2584
+ DatasetScope?: string
2487
2585
  /**
2488
2586
  * 数据集OCR子场景
2489
2587
  注意:此字段可能返回 null,表示取不到有效值。
2490
2588
  */
2491
- OcrScene: string
2589
+ OcrScene?: string
2492
2590
  /**
2493
2591
  * 数据集字典修改状态
2494
2592
  注意:此字段可能返回 null,表示取不到有效值。
2495
2593
  */
2496
- AnnotationKeyStatus: string
2594
+ AnnotationKeyStatus?: string
2595
+ /**
2596
+ * 内容类型
2597
+ 注意:此字段可能返回 null,表示取不到有效值。
2598
+ */
2599
+ ContentType?: string
2600
+ /**
2601
+ * 数据集建模类别。
2602
+ 注意:此字段可能返回 null,表示取不到有效值。
2603
+ */
2604
+ DatasetScene?: string
2605
+ /**
2606
+ * CFS配置
2607
+ 注意:此字段可能返回 null,表示取不到有效值。
2608
+ */
2609
+ CFSConfig?: CFSConfig
2610
+ /**
2611
+ * 数据集标签
2612
+ 注意:此字段可能返回 null,表示取不到有效值。
2613
+ */
2614
+ SceneTags?: Array<string>
2615
+ /**
2616
+ * 已标注数量
2617
+ 注意:此字段可能返回 null,表示取不到有效值。
2618
+ */
2619
+ NumAnnotated?: number
2620
+ /**
2621
+ * 标注规范
2622
+ 注意:此字段可能返回 null,表示取不到有效值。
2623
+ */
2624
+ AnnotationSpecification?: string
2625
+ /**
2626
+ * 标注Schema是否配置
2627
+ 注意:此字段可能返回 null,表示取不到有效值。
2628
+ */
2629
+ AnnotationSchemaConfigured?: boolean
2497
2630
  }
2498
2631
 
2499
2632
  /**
@@ -2612,11 +2745,6 @@ export interface ImageInfo {
2612
2745
  注意:此字段可能返回 null,表示取不到有效值。
2613
2746
  */
2614
2747
  SupportDataPipeline?: boolean
2615
- /**
2616
- * 镜像仓库用户名密码信息(仅当ImageType为CUSTOM第三方镜像的时候需要)
2617
- 注意:此字段可能返回 null,表示取不到有效值。
2618
- */
2619
- ImageSecret?: ImageSecret
2620
2748
  }
2621
2749
 
2622
2750
  /**
@@ -2715,6 +2843,10 @@ HYBRID_PAID:
2715
2843
  注意:此字段可能返回 null,表示取不到有效值。
2716
2844
  */
2717
2845
  ModelHotUpdateEnable: boolean
2846
+ /**
2847
+ * 服务的规格别名
2848
+ */
2849
+ InstanceAlias?: string
2718
2850
  /**
2719
2851
  * 实例数量调节方式,默认为手动
2720
2852
  支持:自动 - "AUTO", 手动 - "MANUAL"
@@ -2838,14 +2970,16 @@ export interface DescribeModelServiceGroupRequest {
2838
2970
  export interface Message {
2839
2971
  /**
2840
2972
  * 角色名。支持三个角色:system、user、assistant,其中system仅开头可出现一次,也可忽略。
2841
- 注意:此字段可能返回 null,表示取不到有效值。
2842
2973
  */
2843
2974
  Role: string
2844
2975
  /**
2845
2976
  * 对话输入内容。
2846
- 注意:此字段可能返回 null,表示取不到有效值。
2847
2977
  */
2848
- Content: string
2978
+ Content?: string
2979
+ /**
2980
+ * 多模态对话输入内容,Content与MultiModalContents两者只需要填写其中一个即可,当对话中包含多模态对话信息时,则填写本参数
2981
+ */
2982
+ MultiModalContents?: Array<MultiModalContent>
2849
2983
  }
2850
2984
 
2851
2985
  /**
@@ -2904,23 +3038,37 @@ export interface DescribeDatasetsResponse {
2904
3038
  * 数据集总量(名称维度)
2905
3039
  注意:此字段可能返回 null,表示取不到有效值。
2906
3040
  */
2907
- TotalCount: number
3041
+ TotalCount?: number
2908
3042
  /**
2909
3043
  * 数据集按照数据集名称聚合的分组
2910
3044
  注意:此字段可能返回 null,表示取不到有效值。
2911
3045
  */
2912
- DatasetGroups: Array<DatasetGroup>
3046
+ DatasetGroups?: Array<DatasetGroup>
2913
3047
  /**
2914
3048
  * 数据集ID总量
2915
3049
  注意:此字段可能返回 null,表示取不到有效值。
2916
3050
  */
2917
- DatasetIdNums: number
3051
+ DatasetIdNums?: number
3052
+ /**
3053
+ * 若开启了CFSChecking,则检查CFS是否准备完毕。若CFS未准备完毕,则返回true,并且TotalCount为0,DatasetGroups为空。
3054
+ */
3055
+ CFSNotReady?: boolean
2918
3056
  /**
2919
3057
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2920
3058
  */
2921
3059
  RequestId?: string
2922
3060
  }
2923
3061
 
3062
+ /**
3063
+ * 多模态对话图片信息
3064
+ */
3065
+ export interface ImageUrl {
3066
+ /**
3067
+ * 图片url
3068
+ */
3069
+ Url?: string
3070
+ }
3071
+
2924
3072
  /**
2925
3073
  * 模型来源
2926
3074
  */
@@ -3027,6 +3175,16 @@ export interface IntranetCallInfo {
3027
3175
  PrivateLinkInfosV2?: Array<PrivateLinkInfo>
3028
3176
  }
3029
3177
 
3178
+ /**
3179
+ * DescribeBillingSpecsPrice请求参数结构体
3180
+ */
3181
+ export interface DescribeBillingSpecsPriceRequest {
3182
+ /**
3183
+ * 询价参数,支持批量询价
3184
+ */
3185
+ SpecsParam: Array<SpecUnit>
3186
+ }
3187
+
3030
3188
  /**
3031
3189
  * 资源组节点信息
3032
3190
  */
@@ -3114,24 +3272,17 @@ DISABLE_NOTIFY_AND_MANUAL_RENEW:手动续费(取消自动续费)且到期不
3114
3272
  }
3115
3273
 
3116
3274
  /**
3117
- * 共享弹性网卡信息
3275
+ * DescribeBillingSpecs返回参数结构体
3118
3276
  */
3119
- export interface ServiceEIPInfo {
3277
+ export interface DescribeBillingSpecsResponse {
3120
3278
  /**
3121
- * 服务ID
3122
- 注意:此字段可能返回 null,表示取不到有效值。
3279
+ * 计费项列表
3123
3280
  */
3124
- ServiceId?: string
3281
+ Specs?: Array<Spec>
3125
3282
  /**
3126
- * 用户VpcId
3127
- 注意:此字段可能返回 null,表示取不到有效值。
3128
- */
3129
- VpcId?: string
3130
- /**
3131
- * 用户子网Id
3132
- 注意:此字段可能返回 null,表示取不到有效值。
3283
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3133
3284
  */
3134
- SubnetId?: string
3285
+ RequestId?: string
3135
3286
  }
3136
3287
 
3137
3288
  /**
@@ -3140,12 +3291,10 @@ export interface ServiceEIPInfo {
3140
3291
  export interface DescribeNotebooksResponse {
3141
3292
  /**
3142
3293
  * 详情
3143
- 注意:此字段可能返回 null,表示取不到有效值。
3144
3294
  */
3145
3295
  NotebookSet?: Array<NotebookSetItem>
3146
3296
  /**
3147
3297
  * 总条数
3148
- 注意:此字段可能返回 null,表示取不到有效值。
3149
3298
  */
3150
3299
  TotalCount?: number
3151
3300
  /**
@@ -3162,132 +3311,162 @@ export interface DatasetGroup {
3162
3311
  * 数据集ID
3163
3312
  注意:此字段可能返回 null,表示取不到有效值。
3164
3313
  */
3165
- DatasetId: string
3314
+ DatasetId?: string
3166
3315
  /**
3167
3316
  * 数据集名称
3168
3317
  注意:此字段可能返回 null,表示取不到有效值。
3169
3318
  */
3170
- DatasetName: string
3319
+ DatasetName?: string
3171
3320
  /**
3172
3321
  * 创建者
3173
3322
  注意:此字段可能返回 null,表示取不到有效值。
3174
3323
  */
3175
- Creator: string
3324
+ Creator?: string
3176
3325
  /**
3177
3326
  * 数据集版本
3178
3327
  注意:此字段可能返回 null,表示取不到有效值。
3179
3328
  */
3180
- DatasetVersion: string
3329
+ DatasetVersion?: string
3181
3330
  /**
3182
3331
  * 数据集类型
3183
3332
  注意:此字段可能返回 null,表示取不到有效值。
3184
3333
  */
3185
- DatasetType: string
3334
+ DatasetType?: string
3186
3335
  /**
3187
3336
  * 数据集标签
3188
3337
  注意:此字段可能返回 null,表示取不到有效值。
3189
3338
  */
3190
- DatasetTags: Array<Tag>
3339
+ DatasetTags?: Array<Tag>
3191
3340
  /**
3192
3341
  * 数据集标注任务名称
3193
3342
  注意:此字段可能返回 null,表示取不到有效值。
3194
3343
  */
3195
- DatasetAnnotationTaskName: string
3344
+ DatasetAnnotationTaskName?: string
3196
3345
  /**
3197
3346
  * 数据集标注任务ID
3198
3347
  注意:此字段可能返回 null,表示取不到有效值。
3199
3348
  */
3200
- DatasetAnnotationTaskId: string
3349
+ DatasetAnnotationTaskId?: string
3201
3350
  /**
3202
3351
  * 处理进度
3203
3352
  注意:此字段可能返回 null,表示取不到有效值。
3204
3353
  */
3205
- Process: number
3354
+ Process?: number
3206
3355
  /**
3207
3356
  * 数据集状态
3208
3357
  注意:此字段可能返回 null,表示取不到有效值。
3209
3358
  */
3210
- DatasetStatus: string
3359
+ DatasetStatus?: string
3211
3360
  /**
3212
3361
  * 错误详情
3213
3362
  注意:此字段可能返回 null,表示取不到有效值。
3214
3363
  */
3215
- ErrorMsg: string
3364
+ ErrorMsg?: string
3216
3365
  /**
3217
3366
  * 创建时间
3218
3367
  注意:此字段可能返回 null,表示取不到有效值。
3219
3368
  */
3220
- CreateTime: string
3369
+ CreateTime?: string
3221
3370
  /**
3222
3371
  * 更新时间
3223
3372
  注意:此字段可能返回 null,表示取不到有效值。
3224
3373
  */
3225
- UpdateTime: string
3374
+ UpdateTime?: string
3226
3375
  /**
3227
3376
  * 外部关联TASKType
3228
3377
  注意:此字段可能返回 null,表示取不到有效值。
3229
3378
  */
3230
- ExternalTaskType: string
3379
+ ExternalTaskType?: string
3231
3380
  /**
3232
3381
  * 数据集大小
3233
3382
  注意:此字段可能返回 null,表示取不到有效值。
3234
3383
  */
3235
- DatasetSize: string
3384
+ DatasetSize?: string
3236
3385
  /**
3237
3386
  * 数据集数据量
3238
3387
  注意:此字段可能返回 null,表示取不到有效值。
3239
3388
  */
3240
- FileNum: number
3389
+ FileNum?: number
3241
3390
  /**
3242
3391
  * 数据集源COS路径
3243
3392
  注意:此字段可能返回 null,表示取不到有效值。
3244
3393
  */
3245
- StorageDataPath: CosPathInfo
3394
+ StorageDataPath?: CosPathInfo
3246
3395
  /**
3247
3396
  * 数据集标签存储路径
3248
3397
  注意:此字段可能返回 null,表示取不到有效值。
3249
3398
  */
3250
- StorageLabelPath: CosPathInfo
3399
+ StorageLabelPath?: CosPathInfo
3251
3400
  /**
3252
3401
  * 数据集版本聚合详情
3253
3402
  注意:此字段可能返回 null,表示取不到有效值。
3254
3403
  */
3255
- DatasetVersions: Array<DatasetInfo>
3404
+ DatasetVersions?: Array<DatasetInfo>
3256
3405
  /**
3257
3406
  * 数据集标注状态
3258
3407
  注意:此字段可能返回 null,表示取不到有效值。
3259
3408
  */
3260
- AnnotationStatus: string
3409
+ AnnotationStatus?: string
3261
3410
  /**
3262
3411
  * 数据集类型
3263
3412
  注意:此字段可能返回 null,表示取不到有效值。
3264
3413
  */
3265
- AnnotationType: string
3414
+ AnnotationType?: string
3266
3415
  /**
3267
3416
  * 数据集标注格式
3268
3417
  注意:此字段可能返回 null,表示取不到有效值。
3269
3418
  */
3270
- AnnotationFormat: string
3419
+ AnnotationFormat?: string
3271
3420
  /**
3272
3421
  * 数据集范围
3273
3422
  注意:此字段可能返回 null,表示取不到有效值。
3274
3423
  */
3275
- DatasetScope: string
3424
+ DatasetScope?: string
3276
3425
  /**
3277
3426
  * 数据集OCR子场景
3278
3427
  注意:此字段可能返回 null,表示取不到有效值。
3279
3428
  */
3280
- OcrScene: string
3429
+ OcrScene?: string
3281
3430
  /**
3282
3431
  * 数据集字典修改状态
3283
3432
  注意:此字段可能返回 null,表示取不到有效值。
3284
3433
  */
3285
- AnnotationKeyStatus: string
3434
+ AnnotationKeyStatus?: string
3286
3435
  /**
3287
3436
  * 文本数据集导入方式
3288
3437
  注意:此字段可能返回 null,表示取不到有效值。
3289
3438
  */
3290
3439
  ContentType?: string
3440
+ /**
3441
+ * 数据集建模类别。
3442
+ 注意:此字段可能返回 null,表示取不到有效值。
3443
+ */
3444
+ DatasetScene?: string
3445
+ /**
3446
+ * CFS配置
3447
+ 注意:此字段可能返回 null,表示取不到有效值。
3448
+ */
3449
+ CFSConfig?: CFSConfig
3450
+ /**
3451
+ * 数据集标签
3452
+ 注意:此字段可能返回 null,表示取不到有效值。
3453
+ */
3454
+ SceneTags?: Array<string>
3455
+ /**
3456
+ * 已标注数量
3457
+ 注意:此字段可能返回 null,表示取不到有效值。
3458
+ */
3459
+ NumAnnotated?: number
3460
+ /**
3461
+ * 标注规范
3462
+ 注意:此字段可能返回 null,表示取不到有效值。
3463
+ */
3464
+ AnnotationSpecification?: string
3465
+ /**
3466
+ * 标注Schema是否配置
3467
+ 注意:此字段可能返回 null,表示取不到有效值。
3468
+ */
3469
+ AnnotationSchemaConfigured?: boolean
3291
3470
  }
3292
3471
 
3293
3472
  /**
@@ -3372,21 +3551,21 @@ export interface GroupResource {
3372
3551
  /**
3373
3552
  * CPU核数; 单位为1/1000核,比如100表示0.1核
3374
3553
  */
3375
- Cpu: number
3554
+ Cpu?: number
3376
3555
  /**
3377
3556
  * 内存;单位为MB
3378
3557
  */
3379
- Memory: number
3558
+ Memory?: number
3380
3559
  /**
3381
3560
  * 总卡数;GPUDetail 显卡数之和;单位为1/100卡,比如100代表1卡
3382
3561
  注意:此字段可能返回 null,表示取不到有效值。
3383
3562
  */
3384
- Gpu: number
3563
+ Gpu?: number
3385
3564
  /**
3386
3565
  * Gpu详情
3387
3566
  注意:此字段可能返回 null,表示取不到有效值。
3388
3567
  */
3389
- GpuDetailSet: Array<GpuDetail>
3568
+ GpuDetailSet?: Array<GpuDetail>
3390
3569
  }
3391
3570
 
3392
3571
  /**
@@ -3695,6 +3874,22 @@ export interface NotebookDetail {
3695
3874
  注意:此字段可能返回 null,表示取不到有效值。
3696
3875
  */
3697
3876
  VolumeSourceGooseFS?: GooseFS
3877
+ /**
3878
+ * 子用户ID
3879
+ */
3880
+ SubUin?: string
3881
+ /**
3882
+ * 调度节点ID
3883
+ */
3884
+ ResourceGroupInstanceId?: string
3885
+ /**
3886
+ * 子用户名称
3887
+ */
3888
+ SubUinName?: string
3889
+ /**
3890
+ * 任务实例创建时间
3891
+ */
3892
+ JobCreateTime?: string
3698
3893
  }
3699
3894
 
3700
3895
  /**
@@ -3819,6 +4014,10 @@ export interface ModelInfo {
3819
4014
  注意:此字段可能返回 null,表示取不到有效值。
3820
4015
  */
3821
4016
  IsPrivateModel?: boolean
4017
+ /**
4018
+ * 模型的类别 多模态MultiModal, 文本大模型 LLM
4019
+ */
4020
+ ModelCategory?: string
3822
4021
  }
3823
4022
 
3824
4023
  /**
@@ -3836,15 +4035,15 @@ TYPE_DATASET_IMAGE,图片
3836
4035
  TYPE_DATASET_TABLE,表格
3837
4036
  TYPE_DATASET_OTHER,其他
3838
4037
  */
3839
- DatasetType: string
4038
+ DatasetType?: string
3840
4039
  /**
3841
4040
  * 数据源cos路径
3842
4041
  */
3843
- StorageDataPath: CosPathInfo
4042
+ StorageDataPath?: CosPathInfo
3844
4043
  /**
3845
4044
  * 数据集标签cos存储路径
3846
4045
  */
3847
- StorageLabelPath: CosPathInfo
4046
+ StorageLabelPath?: CosPathInfo
3848
4047
  /**
3849
4048
  * 数据集标签
3850
4049
  */
@@ -3861,6 +4060,8 @@ ANNOTATION_TYPE_CLASSIFICATION,图片分类
3861
4060
  ANNOTATION_TYPE_DETECTION,目标检测
3862
4061
  ANNOTATION_TYPE_SEGMENTATION,图片分割
3863
4062
  ANNOTATION_TYPE_TRACKING,目标跟踪
4063
+ ANNOTATION_TYPE_OCR,OCR
4064
+ ANNOTATION_TYPE_TEXT_CLASSIFICATION,文本分类
3864
4065
  */
3865
4066
  AnnotationType?: string
3866
4067
  /**
@@ -3869,6 +4070,10 @@ ANNOTATION_FORMAT_TI,TI平台格式
3869
4070
  ANNOTATION_FORMAT_PASCAL,Pascal Voc
3870
4071
  ANNOTATION_FORMAT_COCO,COCO
3871
4072
  ANNOTATION_FORMAT_FILE,文件目录结构
4073
+ ANNOTATION_FORMAT_TEXT_TI,文本类型TI平台格式
4074
+ ANNOTATION_FORMAT_TXT,文本类型TXT格式
4075
+ ANNOTATION_FORMAT_CSV,文本类型CSV格式
4076
+ ANNOTATION_FORMAT_JSON,文本类型JSON格式
3872
4077
  */
3873
4078
  AnnotationFormat?: string
3874
4079
  /**
@@ -3880,9 +4085,23 @@ ANNOTATION_FORMAT_FILE,文件目录结构
3880
4085
  */
3881
4086
  IsSchemaExisted?: boolean
3882
4087
  /**
3883
- * 导入文件粒度,按行或者按文件
4088
+ * 导入文件粒度
4089
+ TYPE_TEXT_LINE,按行
4090
+ TYPE_TEXT_FILE,按文件
3884
4091
  */
3885
4092
  ContentType?: string
4093
+ /**
4094
+ * 数据集建模一级类别。LLM,CV,STRUCTURE,OTHER
4095
+ */
4096
+ DatasetScene?: string
4097
+ /**
4098
+ * 数据集标签。
4099
+ */
4100
+ SceneTags?: Array<string>
4101
+ /**
4102
+ * 数据集CFS配置。仅支持LLM场景
4103
+ */
4104
+ CFSConfig?: CFSConfig
3886
4105
  }
3887
4106
 
3888
4107
  /**
@@ -3891,7 +4110,6 @@ ANNOTATION_FORMAT_FILE,文件目录结构
3891
4110
  export interface CreateModelServiceResponse {
3892
4111
  /**
3893
4112
  * 生成的模型服务
3894
- 注意:此字段可能返回 null,表示取不到有效值。
3895
4113
  */
3896
4114
  Service?: Service
3897
4115
  /**
@@ -4051,7 +4269,7 @@ export interface DescribeNotebookResponse {
4051
4269
  /**
4052
4270
  * 详情
4053
4271
  */
4054
- NotebookDetail: NotebookDetail
4272
+ NotebookDetail?: NotebookDetail
4055
4273
  /**
4056
4274
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4057
4275
  */
@@ -4128,36 +4346,24 @@ export interface IngressPrivateLinkInfo {
4128
4346
  }
4129
4347
 
4130
4348
  /**
4131
- * SendChatMessage请求参数结构体
4349
+ * 共享弹性网卡信息
4132
4350
  */
4133
- export interface SendChatMessageRequest {
4134
- /**
4135
- * 会话id,标识一组对话的唯一id,id变更则重置会话
4136
- */
4137
- SessionId: string
4138
- /**
4139
- * 问题描述
4140
- */
4141
- Question: string
4351
+ export interface ServiceEIPInfo {
4142
4352
  /**
4143
- * 会话模型版本。
4144
- 金融大模型:填写sn-finllm-13b-chat-v1。
4145
- 默认为sn-finllm-13b-chat-v1,即金融大模型。
4353
+ * 服务ID
4354
+ 注意:此字段可能返回 null,表示取不到有效值。
4146
4355
  */
4147
- ModelVersion?: string
4356
+ ServiceId?: string
4148
4357
  /**
4149
- * 使用模式。
4150
- 通用问答:填写General。
4151
- 搜索增强问答:填写WithSearchPlugin。
4152
- 默认为General,即通用问答。
4153
- 当前可体验模型仅支持General。
4358
+ * 用户VpcId
4359
+ 注意:此字段可能返回 null,表示取不到有效值。
4154
4360
  */
4155
- Mode?: string
4361
+ VpcId?: string
4156
4362
  /**
4157
- * 搜索来源。仅当Mode为WithSearchPlugin时生效。
4158
- 预置文稿库:填写Preset。自定义:填写Custom。
4363
+ * 用户子网Id
4364
+ 注意:此字段可能返回 null,表示取不到有效值。
4159
4365
  */
4160
- SearchSource?: string
4366
+ SubnetId?: string
4161
4367
  }
4162
4368
 
4163
4369
  /**
@@ -4230,6 +4436,11 @@ export interface TrainingTaskDetail {
4230
4436
  * 子账号uin
4231
4437
  */
4232
4438
  SubUin?: string
4439
+ /**
4440
+ * 创建者名称
4441
+ 注意:此字段可能返回 null,表示取不到有效值。
4442
+ */
4443
+ SubUinName?: string
4233
4444
  /**
4234
4445
  * 地域
4235
4446
  */
@@ -4697,7 +4908,7 @@ export interface DescribeTrainingTaskRequest {
4697
4908
  */
4698
4909
  export interface ChatCompletionResponse {
4699
4910
  /**
4700
- * 部署好的服务Id
4911
+ * 对话的模型服务组ID
4701
4912
  */
4702
4913
  Model?: string
4703
4914
  /**
@@ -4706,12 +4917,10 @@ export interface ChatCompletionResponse {
4706
4917
  Choices?: Array<Choice>
4707
4918
  /**
4708
4919
  * 会话Id。
4709
- 注意:此字段可能返回 null,表示取不到有效值。
4710
4920
  */
4711
4921
  Id?: string
4712
4922
  /**
4713
4923
  * token统计
4714
- 注意:此字段可能返回 null,表示取不到有效值。
4715
4924
  */
4716
4925
  Usage?: Usage
4717
4926
  /**
@@ -4784,6 +4993,12 @@ export interface DataConfig {
4784
4993
  * 映射路径
4785
4994
  */
4786
4995
  MappingPath?: string
4996
+ /**
4997
+ * 存储用途
4998
+ 可选值为 BUILTIN_CODE, BUILTIN_DATA, BUILTIN_MODEL, USER_DATA, USER_CODE, USER_MODEL, OUTPUT, OTHER
4999
+ 注意:此字段可能返回 null,表示取不到有效值。
5000
+ */
5001
+ DataSourceUsage?: string
4787
5002
  /**
4788
5003
  * DATASET、COS、CFS、CFSTurbo、GooseFSx、HDFS、WEDATA_HDFS
4789
5004
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4932,147 +5147,162 @@ export interface ModelAccelerateTask {
4932
5147
  * 模型加速任务ID
4933
5148
  注意:此字段可能返回 null,表示取不到有效值。
4934
5149
  */
4935
- ModelAccTaskId: string
5150
+ ModelAccTaskId?: string
4936
5151
  /**
4937
5152
  * 模型加速任务名称
4938
5153
  注意:此字段可能返回 null,表示取不到有效值。
4939
5154
  */
4940
- ModelAccTaskName: string
5155
+ ModelAccTaskName?: string
4941
5156
  /**
4942
5157
  * 模型ID
4943
5158
  注意:此字段可能返回 null,表示取不到有效值。
4944
5159
  */
4945
- ModelId: string
5160
+ ModelId?: string
4946
5161
  /**
4947
5162
  * 模型名称
4948
5163
  注意:此字段可能返回 null,表示取不到有效值。
4949
5164
  */
4950
- ModelName: string
5165
+ ModelName?: string
4951
5166
  /**
4952
5167
  * 模型版本
4953
5168
  注意:此字段可能返回 null,表示取不到有效值。
4954
5169
  */
4955
- ModelVersion: string
5170
+ ModelVersion?: string
4956
5171
  /**
4957
5172
  * 模型来源
4958
5173
  注意:此字段可能返回 null,表示取不到有效值。
4959
5174
  */
4960
- ModelSource: string
5175
+ ModelSource?: string
4961
5176
  /**
4962
5177
  * 优化级别
4963
5178
  注意:此字段可能返回 null,表示取不到有效值。
4964
5179
  */
4965
- OptimizationLevel: string
5180
+ OptimizationLevel?: string
4966
5181
  /**
4967
5182
  * 任务状态
4968
5183
  注意:此字段可能返回 null,表示取不到有效值。
4969
5184
  */
4970
- TaskStatus: string
5185
+ TaskStatus?: string
4971
5186
  /**
4972
5187
  * input节点个数
4973
5188
  注意:此字段可能返回 null,表示取不到有效值。
4974
5189
  */
4975
- ModelInputNum: number
5190
+ ModelInputNum?: number
4976
5191
  /**
4977
5192
  * input节点信息
4978
5193
  注意:此字段可能返回 null,表示取不到有效值。
4979
5194
  */
4980
- ModelInputInfos: Array<ModelInputInfo>
5195
+ ModelInputInfos?: Array<ModelInputInfo>
4981
5196
  /**
4982
5197
  * GPU型号
4983
5198
  注意:此字段可能返回 null,表示取不到有效值。
4984
5199
  */
4985
- GPUType: string
5200
+ GPUType?: string
4986
5201
  /**
4987
5202
  * 计费模式
4988
5203
  注意:此字段可能返回 null,表示取不到有效值。
4989
5204
  */
4990
- ChargeType: string
5205
+ ChargeType?: string
4991
5206
  /**
4992
5207
  * 加速比
4993
5208
  注意:此字段可能返回 null,表示取不到有效值。
4994
5209
  */
4995
- Speedup: string
5210
+ Speedup?: string
4996
5211
  /**
4997
5212
  * 模型输入cos路径
4998
5213
  注意:此字段可能返回 null,表示取不到有效值。
4999
5214
  */
5000
- ModelInputPath: CosPathInfo
5215
+ ModelInputPath?: CosPathInfo
5001
5216
  /**
5002
5217
  * 模型输出cos路径
5003
5218
  注意:此字段可能返回 null,表示取不到有效值。
5004
5219
  */
5005
- ModelOutputPath: CosPathInfo
5220
+ ModelOutputPath?: CosPathInfo
5006
5221
  /**
5007
5222
  * 错误信息
5008
5223
  注意:此字段可能返回 null,表示取不到有效值。
5009
5224
  */
5010
- ErrorMsg: string
5225
+ ErrorMsg?: string
5011
5226
  /**
5012
5227
  * 算法框架
5013
5228
  注意:此字段可能返回 null,表示取不到有效值。
5014
5229
  */
5015
- AlgorithmFramework: string
5230
+ AlgorithmFramework?: string
5016
5231
  /**
5017
5232
  * 排队个数
5018
5233
  注意:此字段可能返回 null,表示取不到有效值。
5019
5234
  */
5020
- WaitNumber: number
5235
+ WaitNumber?: number
5021
5236
  /**
5022
5237
  * 创建时间
5023
5238
  注意:此字段可能返回 null,表示取不到有效值。
5024
5239
  */
5025
- CreateTime: string
5240
+ CreateTime?: string
5026
5241
  /**
5027
5242
  * 任务进度
5028
5243
  注意:此字段可能返回 null,表示取不到有效值。
5029
5244
  */
5030
- TaskProgress: number
5245
+ TaskProgress?: number
5031
5246
  /**
5032
5247
  * 模型格式
5033
5248
  注意:此字段可能返回 null,表示取不到有效值。
5034
5249
  */
5035
- ModelFormat: string
5250
+ ModelFormat?: string
5036
5251
  /**
5037
5252
  * 模型Tensor信息
5038
5253
  注意:此字段可能返回 null,表示取不到有效值。
5039
5254
  */
5040
- TensorInfos: Array<string>
5255
+ TensorInfos?: Array<string>
5041
5256
  /**
5042
5257
  * 模型专业参数
5043
5258
  注意:此字段可能返回 null,表示取不到有效值。
5044
5259
  */
5045
- HyperParameter: HyperParameter
5260
+ HyperParameter?: HyperParameter
5046
5261
  /**
5047
5262
  * 加速引擎版本
5048
5263
  注意:此字段可能返回 null,表示取不到有效值。
5049
5264
  */
5050
- AccEngineVersion: string
5265
+ AccEngineVersion?: string
5051
5266
  /**
5052
5267
  * 标签
5053
5268
  注意:此字段可能返回 null,表示取不到有效值。
5054
5269
  */
5055
- Tags: Array<Tag>
5270
+ Tags?: Array<Tag>
5056
5271
  /**
5057
5272
  * 优化模型是否已保存到模型仓库
5058
5273
  注意:此字段可能返回 null,表示取不到有效值。
5059
5274
  */
5060
- IsSaved: boolean
5275
+ IsSaved?: boolean
5061
5276
  /**
5062
5277
  * SAVED_MODEL保存时配置的签名
5063
5278
  注意:此字段可能返回 null,表示取不到有效值。
5064
5279
  */
5065
- ModelSignature: string
5280
+ ModelSignature?: string
5066
5281
  /**
5067
5282
  * 是否是QAT模型
5068
5283
  注意:此字段可能返回 null,表示取不到有效值。
5069
5284
  */
5070
- QATModel: boolean
5285
+ QATModel?: boolean
5071
5286
  /**
5072
5287
  * 加速引擎对应的框架版本
5073
5288
  注意:此字段可能返回 null,表示取不到有效值。
5074
5289
  */
5075
5290
  FrameworkVersion?: string
5291
+ /**
5292
+ * 模型版本ID
5293
+ 注意:此字段可能返回 null,表示取不到有效值。
5294
+ */
5295
+ ModelVersionId?: string
5296
+ /**
5297
+ * 资源组id
5298
+ 注意:此字段可能返回 null,表示取不到有效值。
5299
+ */
5300
+ ResourceGroupId?: string
5301
+ /**
5302
+ * 资源组名称
5303
+ 注意:此字段可能返回 null,表示取不到有效值。
5304
+ */
5305
+ ResourceGroupName?: string
5076
5306
  }
5077
5307
 
5078
5308
  /**
@@ -5240,6 +5470,38 @@ export interface DeleteTrainingModelVersionRequest {
5240
5470
  EnableDeleteCos?: boolean
5241
5471
  }
5242
5472
 
5473
+ /**
5474
+ * DescribeBillingSpecsPrice返回参数结构体
5475
+ */
5476
+ export interface DescribeBillingSpecsPriceResponse {
5477
+ /**
5478
+ * 计费项价格,支持批量返回
5479
+ */
5480
+ SpecsPrice?: Array<SpecPrice>
5481
+ /**
5482
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5483
+ */
5484
+ RequestId?: string
5485
+ }
5486
+
5487
+ /**
5488
+ * 多模态对话内容,支持图片与文字信息
5489
+ */
5490
+ export interface MultiModalContent {
5491
+ /**
5492
+ * 对话类型,text表示文本对话内容,image_url表示图片对话内容
5493
+ */
5494
+ Type: string
5495
+ /**
5496
+ * 文本对话内容,当Type为text时需要填写该值
5497
+ */
5498
+ Text?: string
5499
+ /**
5500
+ * 图片对话内容,当Type为image_url时需要填写该值
5501
+ */
5502
+ ImageUrl?: ImageUrl
5503
+ }
5504
+
5243
5505
  /**
5244
5506
  * DescribeTrainingModelVersion返回参数结构体
5245
5507
  */