tencentcloud-sdk-iotexplorer 3.0.1171 → 3.0.1174

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 89f0a4d23d1534f94a0cbab15383de050414e051
4
- data.tar.gz: f1cb7beae74d0e0cad6756bb938789d3f9d4816a
3
+ metadata.gz: 2bac9a2ee6b79eb7b62fa2392df236c2f5f06c31
4
+ data.tar.gz: c104744fa04ea860ef1d3d4fc558129bf8ecbff6
5
5
  SHA512:
6
- metadata.gz: a0d90542a9a5a1b83a06101cebd1775e90b01adec916f8632333988eaacc94a31636943165f929c94ee133e8c7e470974ecc94c1ac043b448deddedbaed533be
7
- data.tar.gz: 36d3d2575ab6394276a7460a9aa4be84579fbb3e3aa22fbbc17a0a81d499b7fbd9f365545c646c073799694e1570921a50aaf003484a8cc45b98526b83e1b43e
6
+ metadata.gz: e6b6cdca05a817dcacbea8ab3522adcdf5679d3bf7cc5b4f5450481a525cc00e93cc065a5b356b9dea223afa234b80cb5fb1cd7d38acab9abbcace9dc3779daa
7
+ data.tar.gz: c034c9c71e1efa777532016c35d8c09ef66d9d8bb17042cc15b518bd1d19759f1bc8fdd50f263a7f5134192d694fdb72cbb10298b68c9b06595578d8bd3b9e8e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1171
1
+ 3.0.1174
@@ -197,6 +197,30 @@ module TencentCloud
197
197
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
198
198
  end
199
199
 
200
+ # 用于绑定一个产品和智能体。
201
+
202
+ # @param request: Request instance for BindTWeTalkAIBot.
203
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::BindTWeTalkAIBotRequest`
204
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::BindTWeTalkAIBotResponse`
205
+ def BindTWeTalkAIBot(request)
206
+ body = send_request('BindTWeTalkAIBot', request.serialize)
207
+ response = JSON.parse(body)
208
+ if response['Response'].key?('Error') == false
209
+ model = BindTWeTalkAIBotResponse.new
210
+ model.deserialize(response['Response'])
211
+ model
212
+ else
213
+ code = response['Response']['Error']['Code']
214
+ message = response['Response']['Error']['Message']
215
+ reqid = response['Response']['RequestId']
216
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
217
+ end
218
+ rescue TencentCloud::Common::TencentCloudSDKException => e
219
+ raise e
220
+ rescue StandardError => e
221
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
+ end
223
+
200
224
  # 提供给用户异步调用设备行为的能力
201
225
 
202
226
  # @param request: Request instance for CallDeviceActionAsync.
@@ -847,6 +871,30 @@ module TencentCloud
847
871
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
848
872
  end
849
873
 
874
+ # 用于新增TWeTalk智能体。
875
+
876
+ # @param request: Request instance for CreateTWeTalkAIBot.
877
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::CreateTWeTalkAIBotRequest`
878
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::CreateTWeTalkAIBotResponse`
879
+ def CreateTWeTalkAIBot(request)
880
+ body = send_request('CreateTWeTalkAIBot', request.serialize)
881
+ response = JSON.parse(body)
882
+ if response['Response'].key?('Error') == false
883
+ model = CreateTWeTalkAIBotResponse.new
884
+ model.deserialize(response['Response'])
885
+ model
886
+ else
887
+ code = response['Response']['Error']['Code']
888
+ message = response['Response']['Error']['Message']
889
+ reqid = response['Response']['RequestId']
890
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
891
+ end
892
+ rescue TencentCloud::Common::TencentCloudSDKException => e
893
+ raise e
894
+ rescue StandardError => e
895
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
896
+ end
897
+
850
898
  # 用于配置TWeTalk服务连接产品配置信息。
851
899
 
852
900
  # @param request: Request instance for CreateTWeTalkProductConfig.
@@ -1207,6 +1255,30 @@ module TencentCloud
1207
1255
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1208
1256
  end
1209
1257
 
1258
+ # 用于删除TWeTalk智能体。
1259
+
1260
+ # @param request: Request instance for DeleteTWeTalkAIBot.
1261
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::DeleteTWeTalkAIBotRequest`
1262
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DeleteTWeTalkAIBotResponse`
1263
+ def DeleteTWeTalkAIBot(request)
1264
+ body = send_request('DeleteTWeTalkAIBot', request.serialize)
1265
+ response = JSON.parse(body)
1266
+ if response['Response'].key?('Error') == false
1267
+ model = DeleteTWeTalkAIBotResponse.new
1268
+ model.deserialize(response['Response'])
1269
+ model
1270
+ else
1271
+ code = response['Response']['Error']['Code']
1272
+ message = response['Response']['Error']['Message']
1273
+ reqid = response['Response']['RequestId']
1274
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1275
+ end
1276
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1277
+ raise e
1278
+ rescue StandardError => e
1279
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1280
+ end
1281
+
1210
1282
  # 用于删除配置TWeTalk服务连接产品配置信息。
1211
1283
 
1212
1284
  # @param request: Request instance for DeleteTWeTalkProductConfigV2.
@@ -2623,6 +2695,30 @@ module TencentCloud
2623
2695
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2624
2696
  end
2625
2697
 
2698
+ # 用于查询TWeTalk智能体详情。
2699
+
2700
+ # @param request: Request instance for DescribeTWeTalkAIBot.
2701
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeTWeTalkAIBotRequest`
2702
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeTWeTalkAIBotResponse`
2703
+ def DescribeTWeTalkAIBot(request)
2704
+ body = send_request('DescribeTWeTalkAIBot', request.serialize)
2705
+ response = JSON.parse(body)
2706
+ if response['Response'].key?('Error') == false
2707
+ model = DescribeTWeTalkAIBotResponse.new
2708
+ model.deserialize(response['Response'])
2709
+ model
2710
+ else
2711
+ code = response['Response']['Error']['Code']
2712
+ message = response['Response']['Error']['Message']
2713
+ reqid = response['Response']['RequestId']
2714
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2715
+ end
2716
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2717
+ raise e
2718
+ rescue StandardError => e
2719
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2720
+ end
2721
+
2626
2722
  # 用于获取TWeTalk服务连接产品配置信息。
2627
2723
 
2628
2724
  # @param request: Request instance for DescribeTWeTalkProductConfig.
@@ -3247,6 +3343,30 @@ module TencentCloud
3247
3343
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3248
3344
  end
3249
3345
 
3346
+ # 用于查询TWeTalk智能体列表。
3347
+
3348
+ # @param request: Request instance for GetTWeTalkAIBotList.
3349
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::GetTWeTalkAIBotListRequest`
3350
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::GetTWeTalkAIBotListResponse`
3351
+ def GetTWeTalkAIBotList(request)
3352
+ body = send_request('GetTWeTalkAIBotList', request.serialize)
3353
+ response = JSON.parse(body)
3354
+ if response['Response'].key?('Error') == false
3355
+ model = GetTWeTalkAIBotListResponse.new
3356
+ model.deserialize(response['Response'])
3357
+ model
3358
+ else
3359
+ code = response['Response']['Error']['Code']
3360
+ message = response['Response']['Error']['Message']
3361
+ reqid = response['Response']['RequestId']
3362
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3363
+ end
3364
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3365
+ raise e
3366
+ rescue StandardError => e
3367
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3368
+ end
3369
+
3250
3370
  # 用于获取TWeTalk服务连接产品配置信息列表。
3251
3371
 
3252
3372
  # @param request: Request instance for GetTWeTalkProductConfigList.
@@ -3967,6 +4087,30 @@ module TencentCloud
3967
4087
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3968
4088
  end
3969
4089
 
4090
+ # 用于修改TWeTalk智能体。
4091
+
4092
+ # @param request: Request instance for ModifyTWeTalkAIBot.
4093
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::ModifyTWeTalkAIBotRequest`
4094
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::ModifyTWeTalkAIBotResponse`
4095
+ def ModifyTWeTalkAIBot(request)
4096
+ body = send_request('ModifyTWeTalkAIBot', request.serialize)
4097
+ response = JSON.parse(body)
4098
+ if response['Response'].key?('Error') == false
4099
+ model = ModifyTWeTalkAIBotResponse.new
4100
+ model.deserialize(response['Response'])
4101
+ model
4102
+ else
4103
+ code = response['Response']['Error']['Code']
4104
+ message = response['Response']['Error']['Message']
4105
+ reqid = response['Response']['RequestId']
4106
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4107
+ end
4108
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4109
+ raise e
4110
+ rescue StandardError => e
4111
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4112
+ end
4113
+
3970
4114
  # 用于修改TWeTalk服务连接产品配置信息。
3971
4115
 
3972
4116
  # @param request: Request instance for ModifyTWeTalkProductConfig.
@@ -4523,6 +4667,30 @@ module TencentCloud
4523
4667
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4524
4668
  end
4525
4669
 
4670
+ # 用于解除一个产品和智能体的绑定。
4671
+
4672
+ # @param request: Request instance for UnbindTWeTalkAIBot.
4673
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::UnbindTWeTalkAIBotRequest`
4674
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::UnbindTWeTalkAIBotResponse`
4675
+ def UnbindTWeTalkAIBot(request)
4676
+ body = send_request('UnbindTWeTalkAIBot', request.serialize)
4677
+ response = JSON.parse(body)
4678
+ if response['Response'].key?('Error') == false
4679
+ model = UnbindTWeTalkAIBotResponse.new
4680
+ model.deserialize(response['Response'])
4681
+ model
4682
+ else
4683
+ code = response['Response']['Error']['Code']
4684
+ message = response['Response']['Error']['Message']
4685
+ reqid = response['Response']['RequestId']
4686
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4687
+ end
4688
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4689
+ raise e
4690
+ rescue StandardError => e
4691
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4692
+ end
4693
+
4526
4694
  # 更新用户对设备的TweCall授权状态
4527
4695
 
4528
4696
  # @param request: Request instance for UpdateDeviceTWeCallAuthorizeStatus.
@@ -429,10 +429,12 @@ module TencentCloud
429
429
  # @type FwType: String
430
430
  # @param TaskUserDefine: 用户自定义信息
431
431
  # @type TaskUserDefine: String
432
+ # @param RateLimit: 每分钟下发设备量
433
+ # @type RateLimit: Integer
432
434
 
433
- attr_accessor :ProductID, :FirmwareVersion, :FirmwareOriVersion, :UpgradeMethod, :FileName, :FileMd5, :FileSize, :DeviceNames, :TimeoutInterval, :Type, :DelayTime, :OverrideMode, :MaxRetryNum, :RetryInterval, :FwType, :TaskUserDefine
435
+ attr_accessor :ProductID, :FirmwareVersion, :FirmwareOriVersion, :UpgradeMethod, :FileName, :FileMd5, :FileSize, :DeviceNames, :TimeoutInterval, :Type, :DelayTime, :OverrideMode, :MaxRetryNum, :RetryInterval, :FwType, :TaskUserDefine, :RateLimit
434
436
 
435
- def initialize(productid=nil, firmwareversion=nil, firmwareoriversion=nil, upgrademethod=nil, filename=nil, filemd5=nil, filesize=nil, devicenames=nil, timeoutinterval=nil, type=nil, delaytime=nil, overridemode=nil, maxretrynum=nil, retryinterval=nil, fwtype=nil, taskuserdefine=nil)
437
+ def initialize(productid=nil, firmwareversion=nil, firmwareoriversion=nil, upgrademethod=nil, filename=nil, filemd5=nil, filesize=nil, devicenames=nil, timeoutinterval=nil, type=nil, delaytime=nil, overridemode=nil, maxretrynum=nil, retryinterval=nil, fwtype=nil, taskuserdefine=nil, ratelimit=nil)
436
438
  @ProductID = productid
437
439
  @FirmwareVersion = firmwareversion
438
440
  @FirmwareOriVersion = firmwareoriversion
@@ -449,6 +451,7 @@ module TencentCloud
449
451
  @RetryInterval = retryinterval
450
452
  @FwType = fwtype
451
453
  @TaskUserDefine = taskuserdefine
454
+ @RateLimit = ratelimit
452
455
  end
453
456
 
454
457
  def deserialize(params)
@@ -468,6 +471,7 @@ module TencentCloud
468
471
  @RetryInterval = params['RetryInterval']
469
472
  @FwType = params['FwType']
470
473
  @TaskUserDefine = params['TaskUserDefine']
474
+ @RateLimit = params['RateLimit']
471
475
  end
472
476
  end
473
477
 
@@ -679,6 +683,42 @@ module TencentCloud
679
683
  end
680
684
  end
681
685
 
686
+ # BindTWeTalkAIBot请求参数结构体
687
+ class BindTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
688
+ # @param BotId: 智能体ID
689
+ # @type BotId: String
690
+ # @param ProductId: 产品ID
691
+ # @type ProductId: String
692
+
693
+ attr_accessor :BotId, :ProductId
694
+
695
+ def initialize(botid=nil, productid=nil)
696
+ @BotId = botid
697
+ @ProductId = productid
698
+ end
699
+
700
+ def deserialize(params)
701
+ @BotId = params['BotId']
702
+ @ProductId = params['ProductId']
703
+ end
704
+ end
705
+
706
+ # BindTWeTalkAIBot返回参数结构体
707
+ class BindTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
708
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
709
+ # @type RequestId: String
710
+
711
+ attr_accessor :RequestId
712
+
713
+ def initialize(requestid=nil)
714
+ @RequestId = requestid
715
+ end
716
+
717
+ def deserialize(params)
718
+ @RequestId = params['RequestId']
719
+ end
720
+ end
721
+
682
722
  # CallDeviceActionAsync请求参数结构体
683
723
  class CallDeviceActionAsyncRequest < TencentCloud::Common::AbstractModel
684
724
  # @param ProductId: 产品Id
@@ -2453,6 +2493,8 @@ module TencentCloud
2453
2493
  # @type DeviceName: String
2454
2494
  # @param InputURL: 输入视频 / 图片的 URL
2455
2495
  # @type InputURL: String
2496
+ # @param ChannelId: 通道 ID
2497
+ # @type ChannelId: Integer
2456
2498
  # @param CustomId: 自定义事件 ID
2457
2499
  # @type CustomId: String
2458
2500
  # @param EnableSearch: 是否保存该事件使其可被搜索
@@ -2484,12 +2526,13 @@ module TencentCloud
2484
2526
  # @param ObjectDetectConfig: 目标检测配置
2485
2527
  # @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
2486
2528
 
2487
- attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
2529
+ attr_accessor :ProductId, :DeviceName, :InputURL, :ChannelId, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
2488
2530
 
2489
- def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil, servicetype=nil, objectdetectconfig=nil)
2531
+ def initialize(productid=nil, devicename=nil, inputurl=nil, channelid=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil, servicetype=nil, objectdetectconfig=nil)
2490
2532
  @ProductId = productid
2491
2533
  @DeviceName = devicename
2492
2534
  @InputURL = inputurl
2535
+ @ChannelId = channelid
2493
2536
  @CustomId = customid
2494
2537
  @EnableSearch = enablesearch
2495
2538
  @StartTimeMs = starttimems
@@ -2507,6 +2550,7 @@ module TencentCloud
2507
2550
  @ProductId = params['ProductId']
2508
2551
  @DeviceName = params['DeviceName']
2509
2552
  @InputURL = params['InputURL']
2553
+ @ChannelId = params['ChannelId']
2510
2554
  @CustomId = params['CustomId']
2511
2555
  @EnableSearch = params['EnableSearch']
2512
2556
  @StartTimeMs = params['StartTimeMs']
@@ -2687,6 +2731,82 @@ module TencentCloud
2687
2731
  end
2688
2732
  end
2689
2733
 
2734
+ # CreateTWeTalkAIBot请求参数结构体
2735
+ class CreateTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
2736
+ # @param Name: 产品ID
2737
+ # @type Name: String
2738
+ # @param Description: 名称
2739
+ # @type Description: String
2740
+ # @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
2741
+ # @type TargetLanguage: String
2742
+ # @param STTConfig: 自定义语音识别配置
2743
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
2744
+ # @param LLMConfig: 自定义大模型配置
2745
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
2746
+ # @param TTSConfig: 语音合成配置
2747
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
2748
+ # @param AgentConfig: 智能体配置
2749
+ # @type AgentConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkAgentConfigInfo`
2750
+ # @param InstanceId: 实例ID
2751
+ # @type InstanceId: String
2752
+
2753
+ attr_accessor :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig, :InstanceId
2754
+
2755
+ def initialize(name=nil, description=nil, targetlanguage=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, agentconfig=nil, instanceid=nil)
2756
+ @Name = name
2757
+ @Description = description
2758
+ @TargetLanguage = targetlanguage
2759
+ @STTConfig = sttconfig
2760
+ @LLMConfig = llmconfig
2761
+ @TTSConfig = ttsconfig
2762
+ @AgentConfig = agentconfig
2763
+ @InstanceId = instanceid
2764
+ end
2765
+
2766
+ def deserialize(params)
2767
+ @Name = params['Name']
2768
+ @Description = params['Description']
2769
+ @TargetLanguage = params['TargetLanguage']
2770
+ unless params['STTConfig'].nil?
2771
+ @STTConfig = TalkSTTConfigInfo.new
2772
+ @STTConfig.deserialize(params['STTConfig'])
2773
+ end
2774
+ unless params['LLMConfig'].nil?
2775
+ @LLMConfig = TalkLLMConfigInfo.new
2776
+ @LLMConfig.deserialize(params['LLMConfig'])
2777
+ end
2778
+ unless params['TTSConfig'].nil?
2779
+ @TTSConfig = TalkTTSConfigInfo.new
2780
+ @TTSConfig.deserialize(params['TTSConfig'])
2781
+ end
2782
+ unless params['AgentConfig'].nil?
2783
+ @AgentConfig = TalkAgentConfigInfo.new
2784
+ @AgentConfig.deserialize(params['AgentConfig'])
2785
+ end
2786
+ @InstanceId = params['InstanceId']
2787
+ end
2788
+ end
2789
+
2790
+ # CreateTWeTalkAIBot返回参数结构体
2791
+ class CreateTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
2792
+ # @param BotId: 智能体ID
2793
+ # @type BotId: String
2794
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2795
+ # @type RequestId: String
2796
+
2797
+ attr_accessor :BotId, :RequestId
2798
+
2799
+ def initialize(botid=nil, requestid=nil)
2800
+ @BotId = botid
2801
+ @RequestId = requestid
2802
+ end
2803
+
2804
+ def deserialize(params)
2805
+ @BotId = params['BotId']
2806
+ @RequestId = params['RequestId']
2807
+ end
2808
+ end
2809
+
2690
2810
  # CreateTWeTalkProductConfig请求参数结构体
2691
2811
  class CreateTWeTalkProductConfigRequest < TencentCloud::Common::AbstractModel
2692
2812
  # @param ProductId: 产品ID
@@ -3441,6 +3561,38 @@ module TencentCloud
3441
3561
  end
3442
3562
  end
3443
3563
 
3564
+ # DeleteTWeTalkAIBot请求参数结构体
3565
+ class DeleteTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
3566
+ # @param BotId: 智能体ID
3567
+ # @type BotId: String
3568
+
3569
+ attr_accessor :BotId
3570
+
3571
+ def initialize(botid=nil)
3572
+ @BotId = botid
3573
+ end
3574
+
3575
+ def deserialize(params)
3576
+ @BotId = params['BotId']
3577
+ end
3578
+ end
3579
+
3580
+ # DeleteTWeTalkAIBot返回参数结构体
3581
+ class DeleteTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
3582
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3583
+ # @type RequestId: String
3584
+
3585
+ attr_accessor :RequestId
3586
+
3587
+ def initialize(requestid=nil)
3588
+ @RequestId = requestid
3589
+ end
3590
+
3591
+ def deserialize(params)
3592
+ @RequestId = params['RequestId']
3593
+ end
3594
+ end
3595
+
3444
3596
  # DeleteTWeTalkProductConfigV2请求参数结构体
3445
3597
  class DeleteTWeTalkProductConfigV2Request < TencentCloud::Common::AbstractModel
3446
3598
  # @param ProductId: 产品ID
@@ -6738,6 +6890,45 @@ module TencentCloud
6738
6890
  end
6739
6891
  end
6740
6892
 
6893
+ # DescribeTWeTalkAIBot请求参数结构体
6894
+ class DescribeTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
6895
+ # @param BotId: 智能体ID
6896
+ # @type BotId: String
6897
+
6898
+ attr_accessor :BotId
6899
+
6900
+ def initialize(botid=nil)
6901
+ @BotId = botid
6902
+ end
6903
+
6904
+ def deserialize(params)
6905
+ @BotId = params['BotId']
6906
+ end
6907
+ end
6908
+
6909
+ # DescribeTWeTalkAIBot返回参数结构体
6910
+ class DescribeTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
6911
+ # @param Data: 无
6912
+ # @type Data: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkAIBotInfo`
6913
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6914
+ # @type RequestId: String
6915
+
6916
+ attr_accessor :Data, :RequestId
6917
+
6918
+ def initialize(data=nil, requestid=nil)
6919
+ @Data = data
6920
+ @RequestId = requestid
6921
+ end
6922
+
6923
+ def deserialize(params)
6924
+ unless params['Data'].nil?
6925
+ @Data = TalkAIBotInfo.new
6926
+ @Data.deserialize(params['Data'])
6927
+ end
6928
+ @RequestId = params['RequestId']
6929
+ end
6930
+ end
6931
+
6741
6932
  # DescribeTWeTalkProductConfig请求参数结构体
6742
6933
  class DescribeTWeTalkProductConfigRequest < TencentCloud::Common::AbstractModel
6743
6934
  # @param ProductId: 产品ID
@@ -8851,6 +9042,73 @@ module TencentCloud
8851
9042
  end
8852
9043
  end
8853
9044
 
9045
+ # GetTWeTalkAIBotList请求参数结构体
9046
+ class GetTWeTalkAIBotListRequest < TencentCloud::Common::AbstractModel
9047
+ # @param BotId: 智能体ID
9048
+ # @type BotId: String
9049
+ # @param ProductId: 产品ID
9050
+ # @type ProductId: String
9051
+ # @param InstanceId: 实例ID
9052
+ # @type InstanceId: String
9053
+ # @param IncludeCredentials: 是否脱敏
9054
+ # @type IncludeCredentials: Boolean
9055
+ # @param Offset: 1
9056
+ # @type Offset: Integer
9057
+ # @param Limit: 10
9058
+ # @type Limit: Integer
9059
+
9060
+ attr_accessor :BotId, :ProductId, :InstanceId, :IncludeCredentials, :Offset, :Limit
9061
+
9062
+ def initialize(botid=nil, productid=nil, instanceid=nil, includecredentials=nil, offset=nil, limit=nil)
9063
+ @BotId = botid
9064
+ @ProductId = productid
9065
+ @InstanceId = instanceid
9066
+ @IncludeCredentials = includecredentials
9067
+ @Offset = offset
9068
+ @Limit = limit
9069
+ end
9070
+
9071
+ def deserialize(params)
9072
+ @BotId = params['BotId']
9073
+ @ProductId = params['ProductId']
9074
+ @InstanceId = params['InstanceId']
9075
+ @IncludeCredentials = params['IncludeCredentials']
9076
+ @Offset = params['Offset']
9077
+ @Limit = params['Limit']
9078
+ end
9079
+ end
9080
+
9081
+ # GetTWeTalkAIBotList返回参数结构体
9082
+ class GetTWeTalkAIBotListResponse < TencentCloud::Common::AbstractModel
9083
+ # @param Data: 无
9084
+ # @type Data: Array
9085
+ # @param TotalCount: 1
9086
+ # @type TotalCount: Integer
9087
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9088
+ # @type RequestId: String
9089
+
9090
+ attr_accessor :Data, :TotalCount, :RequestId
9091
+
9092
+ def initialize(data=nil, totalcount=nil, requestid=nil)
9093
+ @Data = data
9094
+ @TotalCount = totalcount
9095
+ @RequestId = requestid
9096
+ end
9097
+
9098
+ def deserialize(params)
9099
+ unless params['Data'].nil?
9100
+ @Data = []
9101
+ params['Data'].each do |i|
9102
+ talkaibotinfo_tmp = TalkAIBotInfo.new
9103
+ talkaibotinfo_tmp.deserialize(i)
9104
+ @Data << talkaibotinfo_tmp
9105
+ end
9106
+ end
9107
+ @TotalCount = params['TotalCount']
9108
+ @RequestId = params['RequestId']
9109
+ end
9110
+ end
9111
+
8854
9112
  # GetTWeTalkProductConfigList请求参数结构体
8855
9113
  class GetTWeTalkProductConfigListRequest < TencentCloud::Common::AbstractModel
8856
9114
  # @param ProductId: 产品ID
@@ -11190,6 +11448,78 @@ module TencentCloud
11190
11448
  end
11191
11449
  end
11192
11450
 
11451
+ # ModifyTWeTalkAIBot请求参数结构体
11452
+ class ModifyTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
11453
+ # @param BotId: 智能体ID
11454
+ # @type BotId: String
11455
+ # @param Name: 产品ID
11456
+ # @type Name: String
11457
+ # @param Description: 名称
11458
+ # @type Description: String
11459
+ # @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
11460
+ # @type TargetLanguage: String
11461
+ # @param STTConfig: 自定义语音识别配置
11462
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
11463
+ # @param LLMConfig: 自定义大模型配置
11464
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
11465
+ # @param TTSConfig: 语音合成配置
11466
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
11467
+ # @param AgentConfig: 智能体配置
11468
+ # @type AgentConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkAgentConfigInfo`
11469
+
11470
+ attr_accessor :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig
11471
+
11472
+ def initialize(botid=nil, name=nil, description=nil, targetlanguage=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, agentconfig=nil)
11473
+ @BotId = botid
11474
+ @Name = name
11475
+ @Description = description
11476
+ @TargetLanguage = targetlanguage
11477
+ @STTConfig = sttconfig
11478
+ @LLMConfig = llmconfig
11479
+ @TTSConfig = ttsconfig
11480
+ @AgentConfig = agentconfig
11481
+ end
11482
+
11483
+ def deserialize(params)
11484
+ @BotId = params['BotId']
11485
+ @Name = params['Name']
11486
+ @Description = params['Description']
11487
+ @TargetLanguage = params['TargetLanguage']
11488
+ unless params['STTConfig'].nil?
11489
+ @STTConfig = TalkSTTConfigInfo.new
11490
+ @STTConfig.deserialize(params['STTConfig'])
11491
+ end
11492
+ unless params['LLMConfig'].nil?
11493
+ @LLMConfig = TalkLLMConfigInfo.new
11494
+ @LLMConfig.deserialize(params['LLMConfig'])
11495
+ end
11496
+ unless params['TTSConfig'].nil?
11497
+ @TTSConfig = TalkTTSConfigInfo.new
11498
+ @TTSConfig.deserialize(params['TTSConfig'])
11499
+ end
11500
+ unless params['AgentConfig'].nil?
11501
+ @AgentConfig = TalkAgentConfigInfo.new
11502
+ @AgentConfig.deserialize(params['AgentConfig'])
11503
+ end
11504
+ end
11505
+ end
11506
+
11507
+ # ModifyTWeTalkAIBot返回参数结构体
11508
+ class ModifyTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
11509
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11510
+ # @type RequestId: String
11511
+
11512
+ attr_accessor :RequestId
11513
+
11514
+ def initialize(requestid=nil)
11515
+ @RequestId = requestid
11516
+ end
11517
+
11518
+ def deserialize(params)
11519
+ @RequestId = params['RequestId']
11520
+ end
11521
+ end
11522
+
11193
11523
  # ModifyTWeTalkProductConfig请求参数结构体
11194
11524
  class ModifyTWeTalkProductConfigRequest < TencentCloud::Common::AbstractModel
11195
11525
  # @param ProductId: 产品ID
@@ -12864,6 +13194,160 @@ module TencentCloud
12864
13194
  end
12865
13195
  end
12866
13196
 
13197
+ # Talk配置信息描述。
13198
+ class TalkAIBotInfo < TencentCloud::Common::AbstractModel
13199
+ # @param Uin: UIN
13200
+ # @type Uin: Integer
13201
+ # @param AppId: APPID
13202
+ # @type AppId: Integer
13203
+ # @param InstanceId: 实例ID
13204
+ # @type InstanceId: String
13205
+ # @param BotId: 智能体ID
13206
+ # @type BotId: String
13207
+ # @param Name: 名称
13208
+ # @type Name: String
13209
+ # @param Description: 描述
13210
+ # @type Description: String
13211
+ # @param TargetLanguage: 语言
13212
+ # @type TargetLanguage: String
13213
+ # @param STTConfig: 语音识别
13214
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
13215
+ # @param LLMConfig: 大模型
13216
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
13217
+ # @param TTSConfig: 语音合成
13218
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
13219
+ # @param AgentConfig: 智能体配置
13220
+ # @type AgentConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkAgentConfigInfo`
13221
+ # @param ProductList: 产品信息列表
13222
+ # @type ProductList: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkProductInfo`
13223
+ # @param CreateTime: 创建时间
13224
+ # @type CreateTime: Integer
13225
+ # @param UpdateTime: 更新时间
13226
+ # @type UpdateTime: Integer
13227
+
13228
+ attr_accessor :Uin, :AppId, :InstanceId, :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig, :ProductList, :CreateTime, :UpdateTime
13229
+
13230
+ def initialize(uin=nil, appid=nil, instanceid=nil, botid=nil, name=nil, description=nil, targetlanguage=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, agentconfig=nil, productlist=nil, createtime=nil, updatetime=nil)
13231
+ @Uin = uin
13232
+ @AppId = appid
13233
+ @InstanceId = instanceid
13234
+ @BotId = botid
13235
+ @Name = name
13236
+ @Description = description
13237
+ @TargetLanguage = targetlanguage
13238
+ @STTConfig = sttconfig
13239
+ @LLMConfig = llmconfig
13240
+ @TTSConfig = ttsconfig
13241
+ @AgentConfig = agentconfig
13242
+ @ProductList = productlist
13243
+ @CreateTime = createtime
13244
+ @UpdateTime = updatetime
13245
+ end
13246
+
13247
+ def deserialize(params)
13248
+ @Uin = params['Uin']
13249
+ @AppId = params['AppId']
13250
+ @InstanceId = params['InstanceId']
13251
+ @BotId = params['BotId']
13252
+ @Name = params['Name']
13253
+ @Description = params['Description']
13254
+ @TargetLanguage = params['TargetLanguage']
13255
+ unless params['STTConfig'].nil?
13256
+ @STTConfig = TalkSTTConfigInfo.new
13257
+ @STTConfig.deserialize(params['STTConfig'])
13258
+ end
13259
+ unless params['LLMConfig'].nil?
13260
+ @LLMConfig = TalkLLMConfigInfo.new
13261
+ @LLMConfig.deserialize(params['LLMConfig'])
13262
+ end
13263
+ unless params['TTSConfig'].nil?
13264
+ @TTSConfig = TalkTTSConfigInfo.new
13265
+ @TTSConfig.deserialize(params['TTSConfig'])
13266
+ end
13267
+ unless params['AgentConfig'].nil?
13268
+ @AgentConfig = TalkAgentConfigInfo.new
13269
+ @AgentConfig.deserialize(params['AgentConfig'])
13270
+ end
13271
+ unless params['ProductList'].nil?
13272
+ @ProductList = TalkProductInfo.new
13273
+ @ProductList.deserialize(params['ProductList'])
13274
+ end
13275
+ @CreateTime = params['CreateTime']
13276
+ @UpdateTime = params['UpdateTime']
13277
+ end
13278
+ end
13279
+
13280
+ # 智能体配置信息。
13281
+ class TalkAgentConfigInfo < TencentCloud::Common::AbstractModel
13282
+ # @param SessionTimeout: 会话超时(秒),指连接会话的时间,例如30秒是指会话在30秒后断开
13283
+ # @type SessionTimeout: Integer
13284
+ # @param InterruptionEnabled: 允许打断
13285
+ # @type InterruptionEnabled: Boolean
13286
+ # @param MaxContextTokens: 最大上下文
13287
+ # @type MaxContextTokens: Integer
13288
+ # @param IdleDetection: 空闲检测配置
13289
+ # @type IdleDetection: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkIdleDetectionConfigInfo`
13290
+ # @param EmotionEnabled: 是否启用情绪识别
13291
+ # @type EmotionEnabled: Boolean
13292
+ # @param SemanticVADEnabled: 是否启用语义vad
13293
+ # @type SemanticVADEnabled: Boolean
13294
+ # @param SemanticVADSensitivity: 语义vad灵敏度, 1-慢 2-适中 3-快
13295
+ # @type SemanticVADSensitivity: Integer
13296
+ # @param SilenceTime: VAD 静默检测时间, 当开启语义vad此配置失效
13297
+ # @type SilenceTime: Integer
13298
+ # @param NoiseFilterEnabled: 是否启用噪声过滤
13299
+ # @type NoiseFilterEnabled: Boolean
13300
+ # @param LongTermMemoryEnabled: 是否开启长记忆,默认开启
13301
+ # @type LongTermMemoryEnabled: Boolean
13302
+ # @param SystemPrompt: 系统提示词,仅当未配置LLMConfig时使用
13303
+ # @type SystemPrompt: String
13304
+ # @param GreetingMessage: 开机问候语,如果未配置默认不开启
13305
+ # @type GreetingMessage: String
13306
+ # @param DefaultVoiceType: 系统默认音色,当配置复刻音色时,默认值为200000000
13307
+ # @type DefaultVoiceType: Integer
13308
+ # @param FastVoiceType: 复刻音色
13309
+ # @type FastVoiceType: String
13310
+
13311
+ attr_accessor :SessionTimeout, :InterruptionEnabled, :MaxContextTokens, :IdleDetection, :EmotionEnabled, :SemanticVADEnabled, :SemanticVADSensitivity, :SilenceTime, :NoiseFilterEnabled, :LongTermMemoryEnabled, :SystemPrompt, :GreetingMessage, :DefaultVoiceType, :FastVoiceType
13312
+
13313
+ def initialize(sessiontimeout=nil, interruptionenabled=nil, maxcontexttokens=nil, idledetection=nil, emotionenabled=nil, semanticvadenabled=nil, semanticvadsensitivity=nil, silencetime=nil, noisefilterenabled=nil, longtermmemoryenabled=nil, systemprompt=nil, greetingmessage=nil, defaultvoicetype=nil, fastvoicetype=nil)
13314
+ @SessionTimeout = sessiontimeout
13315
+ @InterruptionEnabled = interruptionenabled
13316
+ @MaxContextTokens = maxcontexttokens
13317
+ @IdleDetection = idledetection
13318
+ @EmotionEnabled = emotionenabled
13319
+ @SemanticVADEnabled = semanticvadenabled
13320
+ @SemanticVADSensitivity = semanticvadsensitivity
13321
+ @SilenceTime = silencetime
13322
+ @NoiseFilterEnabled = noisefilterenabled
13323
+ @LongTermMemoryEnabled = longtermmemoryenabled
13324
+ @SystemPrompt = systemprompt
13325
+ @GreetingMessage = greetingmessage
13326
+ @DefaultVoiceType = defaultvoicetype
13327
+ @FastVoiceType = fastvoicetype
13328
+ end
13329
+
13330
+ def deserialize(params)
13331
+ @SessionTimeout = params['SessionTimeout']
13332
+ @InterruptionEnabled = params['InterruptionEnabled']
13333
+ @MaxContextTokens = params['MaxContextTokens']
13334
+ unless params['IdleDetection'].nil?
13335
+ @IdleDetection = TalkIdleDetectionConfigInfo.new
13336
+ @IdleDetection.deserialize(params['IdleDetection'])
13337
+ end
13338
+ @EmotionEnabled = params['EmotionEnabled']
13339
+ @SemanticVADEnabled = params['SemanticVADEnabled']
13340
+ @SemanticVADSensitivity = params['SemanticVADSensitivity']
13341
+ @SilenceTime = params['SilenceTime']
13342
+ @NoiseFilterEnabled = params['NoiseFilterEnabled']
13343
+ @LongTermMemoryEnabled = params['LongTermMemoryEnabled']
13344
+ @SystemPrompt = params['SystemPrompt']
13345
+ @GreetingMessage = params['GreetingMessage']
13346
+ @DefaultVoiceType = params['DefaultVoiceType']
13347
+ @FastVoiceType = params['FastVoiceType']
13348
+ end
13349
+ end
13350
+
12867
13351
  # 基础配置信息。
12868
13352
  class TalkBasicConfigInfo < TencentCloud::Common::AbstractModel
12869
13353
  # @param SystemPrompt: 系统提示词
@@ -12972,7 +13456,7 @@ module TencentCloud
12972
13456
 
12973
13457
  # LLM配置信息。
12974
13458
  class TalkLLMConfigInfo < TencentCloud::Common::AbstractModel
12975
- # @param LLMType: 支持的LLM类型,tencent-腾讯;openai-OPENAI格式;anthropic-ANTHROPIC;gemini-GEMINI;gemini-GEMINI;coze-扣子;dify-DIFY;tencent_lke-腾讯智能体平台;系统默认-openai。
13459
+ # @param LLMType: 支持的LLM类型,openai-OPENAI格式。
12976
13460
  # @type LLMType: String
12977
13461
  # @param Enabled: 是否开启
12978
13462
  # @type Enabled: Boolean
@@ -12993,53 +13477,6 @@ module TencentCloud
12993
13477
  # "MetaInfo":{}
12994
13478
  # }
12995
13479
  # ```
12996
-
12997
- # ## anthropic
12998
- # ```
12999
- # {
13000
- # "ApiKey": "sk-XXXXXXXXXXXX",
13001
- # "ApiUrl": "https://api.openai.com/v1",
13002
- # "SystemPrompt": "一个小小助手"
13003
- # }
13004
- # ```
13005
- # ## gemini
13006
- # ```
13007
- # {
13008
- # "AppId": 123456,
13009
- # "AccessToken": "*****",
13010
- # "ResourceId": "SecretKey****",
13011
- # "ModelName": "16k_zh",
13012
- # "Language":""
13013
- # }
13014
- # ```
13015
- # ## coze
13016
- # ```
13017
- # {
13018
- # "ApiKey": "sk-XXXXXXXXXXXX",
13019
- # "BotId": "v1",
13020
- # "UserId": "xxx",
13021
- # "ApiUrl": "https://api.coze.cn/v3/chat"
13022
- # }
13023
- # ```
13024
- # ## dify
13025
- # ```
13026
- # {
13027
- # "ApiKey": "sk-XXXXXXXXXXXX",
13028
- # "ApiUrl": "https://api.openai.com/v1",
13029
- # "User": "xxx",
13030
- # "Inputs":{},
13031
- # "ConversationId":"c1"
13032
- # }
13033
- # ```
13034
- # ## tencent_lke
13035
- # ```
13036
- # {
13037
- # "ApiKey": "sk-XXXXXXXXXXXX",
13038
- # "ApiUrl": "https://api.openai.com/v1",
13039
- # "SystemRole": "一个小小助手",
13040
- # "SessionId":"123456"
13041
- # }
13042
- # ```
13043
13480
  # @type Config: String
13044
13481
  # @param Temperature: 温度
13045
13482
  # @type Temperature: Float
@@ -13047,10 +13484,12 @@ module TencentCloud
13047
13484
  # @type MaxTokens: Integer
13048
13485
  # @param TopP: topP
13049
13486
  # @type TopP: Float
13487
+ # @param Tools: 工具ID列表
13488
+ # @type Tools: Array
13050
13489
 
13051
- attr_accessor :LLMType, :Enabled, :Model, :Streaming, :Config, :Temperature, :MaxTokens, :TopP
13490
+ attr_accessor :LLMType, :Enabled, :Model, :Streaming, :Config, :Temperature, :MaxTokens, :TopP, :Tools
13052
13491
 
13053
- def initialize(llmtype=nil, enabled=nil, model=nil, streaming=nil, config=nil, temperature=nil, maxtokens=nil, topp=nil)
13492
+ def initialize(llmtype=nil, enabled=nil, model=nil, streaming=nil, config=nil, temperature=nil, maxtokens=nil, topp=nil, tools=nil)
13054
13493
  @LLMType = llmtype
13055
13494
  @Enabled = enabled
13056
13495
  @Model = model
@@ -13059,6 +13498,7 @@ module TencentCloud
13059
13498
  @Temperature = temperature
13060
13499
  @MaxTokens = maxtokens
13061
13500
  @TopP = topp
13501
+ @Tools = tools
13062
13502
  end
13063
13503
 
13064
13504
  def deserialize(params)
@@ -13070,6 +13510,7 @@ module TencentCloud
13070
13510
  @Temperature = params['Temperature']
13071
13511
  @MaxTokens = params['MaxTokens']
13072
13512
  @TopP = params['TopP']
13513
+ @Tools = params['Tools']
13073
13514
  end
13074
13515
  end
13075
13516
 
@@ -13196,9 +13637,29 @@ module TencentCloud
13196
13637
  end
13197
13638
  end
13198
13639
 
13640
+ # 智能体产品信息。
13641
+ class TalkProductInfo < TencentCloud::Common::AbstractModel
13642
+ # @param ProductId: 产品ID
13643
+ # @type ProductId: String
13644
+ # @param ProductName: 产品名称
13645
+ # @type ProductName: String
13646
+
13647
+ attr_accessor :ProductId, :ProductName
13648
+
13649
+ def initialize(productid=nil, productname=nil)
13650
+ @ProductId = productid
13651
+ @ProductName = productname
13652
+ end
13653
+
13654
+ def deserialize(params)
13655
+ @ProductId = params['ProductId']
13656
+ @ProductName = params['ProductName']
13657
+ end
13658
+ end
13659
+
13199
13660
  # STT配置信息。
13200
13661
  class TalkSTTConfigInfo < TencentCloud::Common::AbstractModel
13201
- # @param STTType: 支持的STT类型,tencent-腾讯;azure-亚马逊;volcengine-火山引擎;deepgram-Deepgram;系统默认-tencent。
13662
+ # @param STTType: 支持的STT类型,tencent-腾讯;azure-亚马逊;deepgram-Deepgram;系统默认-tencent。
13202
13663
  # @type STTType: String
13203
13664
  # @param Enabled: 是否开启
13204
13665
  # @type Enabled: Boolean
@@ -13223,16 +13684,7 @@ module TencentCloud
13223
13684
  # "SubscriptionKey": "*****"
13224
13685
  # }
13225
13686
  # ```
13226
- # ## volcengine
13227
- # ```
13228
- # {
13229
- # "AppId": 123456,
13230
- # "AccessToken": "*****",
13231
- # "ResourceId": "SecretKey****",
13232
- # "ModelName": "16k_zh",
13233
- # "Language":""
13234
- # }
13235
- # ```
13687
+
13236
13688
  # ## deepgram
13237
13689
  # ```
13238
13690
  # {
@@ -13746,6 +14198,42 @@ module TencentCloud
13746
14198
  end
13747
14199
  end
13748
14200
 
14201
+ # UnbindTWeTalkAIBot请求参数结构体
14202
+ class UnbindTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
14203
+ # @param BotId: 智能体ID
14204
+ # @type BotId: String
14205
+ # @param ProductId: 产品ID
14206
+ # @type ProductId: String
14207
+
14208
+ attr_accessor :BotId, :ProductId
14209
+
14210
+ def initialize(botid=nil, productid=nil)
14211
+ @BotId = botid
14212
+ @ProductId = productid
14213
+ end
14214
+
14215
+ def deserialize(params)
14216
+ @BotId = params['BotId']
14217
+ @ProductId = params['ProductId']
14218
+ end
14219
+ end
14220
+
14221
+ # UnbindTWeTalkAIBot返回参数结构体
14222
+ class UnbindTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
14223
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14224
+ # @type RequestId: String
14225
+
14226
+ attr_accessor :RequestId
14227
+
14228
+ def initialize(requestid=nil)
14229
+ @RequestId = requestid
14230
+ end
14231
+
14232
+ def deserialize(params)
14233
+ @RequestId = params['RequestId']
14234
+ end
14235
+ end
14236
+
13749
14237
  # UpdateDeviceTWeCallAuthorizeStatus请求参数结构体
13750
14238
  class UpdateDeviceTWeCallAuthorizeStatusRequest < TencentCloud::Common::AbstractModel
13751
14239
  # @param Status: TweCall授权状态:0未授权,1已授权
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-iotexplorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1171
4
+ version: 3.0.1174
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-20 00:00:00.000000000 Z
11
+ date: 2025-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,8 +33,8 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20190423/client.rb
37
36
  - lib/v20190423/models.rb
37
+ - lib/v20190423/client.rb
38
38
  - lib/tencentcloud-sdk-iotexplorer.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby