tencentcloud-sdk-iotexplorer 3.0.1173 → 3.0.1175

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: 9a8b989c754a50ff533da7bb0419319d1bca49ef
4
- data.tar.gz: 5cb7933e8d40708cf49937c5b44e9c7bb909c60b
3
+ metadata.gz: aaee985e3aeffb33e52b27e9ce2b06ff4db41604
4
+ data.tar.gz: 47dd23c2f92e27b736fbf84008535b571feb555e
5
5
  SHA512:
6
- metadata.gz: 16e0bf1d93a84c924b0ac7a0a4bccc244fa01dd9e759b9d899dc215eec566dabc6ca1e6b919f09352b3159b89e056748ac5e0053bade2553cc2d070e14d12c3c
7
- data.tar.gz: 0fd3d4c5f036df79c6439c7bfd99b4030f0fa1b55e0d1791b48297dc9ee9670925677a31de44fd504d29693965e7c2386fd230001de7209b9d8c047fc3772e1f
6
+ metadata.gz: 05cbdcc432036dce3826aef369505cff1af97d0d71cc98de3b9e1b4eeee0340a0c40fa038628fb8ae8e24a4f09ae5b4d0864548407e93fc5f767b10f3dc16839
7
+ data.tar.gz: cc1afd4de57a4c7eb6a49db87ae7462f98bd821304114b461be57082448913fff94a4d03e6881dd56cc44d6d8d3f225058467cdb113437b01a8b85034bd2eb2b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1173
1
+ 3.0.1175
@@ -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.
@@ -100,8 +100,8 @@ module TencentCloud
100
100
 
101
101
  attr_accessor :PkgType, :MiniProgramAppId, :DeviceList
102
102
  extend Gem::Deprecate
103
- deprecate :MiniProgramAppId, :none, 2025, 11
104
- deprecate :MiniProgramAppId=, :none, 2025, 11
103
+ deprecate :MiniProgramAppId, :none, 2025, 12
104
+ deprecate :MiniProgramAppId=, :none, 2025, 12
105
105
 
106
106
  def initialize(pkgtype=nil, miniprogramappid=nil, devicelist=nil)
107
107
  @PkgType = pkgtype
@@ -136,8 +136,8 @@ module TencentCloud
136
136
 
137
137
  attr_accessor :DeviceList, :FailureList, :SuccessList, :RequestId
138
138
  extend Gem::Deprecate
139
- deprecate :DeviceList, :none, 2025, 11
140
- deprecate :DeviceList=, :none, 2025, 11
139
+ deprecate :DeviceList, :none, 2025, 12
140
+ deprecate :DeviceList=, :none, 2025, 12
141
141
 
142
142
  def initialize(devicelist=nil, failurelist=nil, successlist=nil, requestid=nil)
143
143
  @DeviceList = devicelist
@@ -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
@@ -2691,6 +2731,82 @@ module TencentCloud
2691
2731
  end
2692
2732
  end
2693
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
+
2694
2810
  # CreateTWeTalkProductConfig请求参数结构体
2695
2811
  class CreateTWeTalkProductConfigRequest < TencentCloud::Common::AbstractModel
2696
2812
  # @param ProductId: 产品ID
@@ -3445,6 +3561,38 @@ module TencentCloud
3445
3561
  end
3446
3562
  end
3447
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
+
3448
3596
  # DeleteTWeTalkProductConfigV2请求参数结构体
3449
3597
  class DeleteTWeTalkProductConfigV2Request < TencentCloud::Common::AbstractModel
3450
3598
  # @param ProductId: 产品ID
@@ -5696,12 +5844,14 @@ module TencentCloud
5696
5844
  # @type OverrideMode: Integer
5697
5845
  # @param TaskUserDefine: 用户自定义消息
5698
5846
  # @type TaskUserDefine: String
5847
+ # @param RateLimit: 每分钟发送设备量
5848
+ # @type RateLimit: Integer
5699
5849
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5700
5850
  # @type RequestId: String
5701
5851
 
5702
- attr_accessor :TaskId, :Status, :CreateTime, :Type, :ProductName, :UpgradeMode, :ProductId, :OriginalVersion, :CreateUserId, :CreatorNickName, :DelayTime, :TimeoutInterval, :UpgradeMethod, :MaxRetryNum, :FwType, :RetryInterval, :OverrideMode, :TaskUserDefine, :RequestId
5852
+ attr_accessor :TaskId, :Status, :CreateTime, :Type, :ProductName, :UpgradeMode, :ProductId, :OriginalVersion, :CreateUserId, :CreatorNickName, :DelayTime, :TimeoutInterval, :UpgradeMethod, :MaxRetryNum, :FwType, :RetryInterval, :OverrideMode, :TaskUserDefine, :RateLimit, :RequestId
5703
5853
 
5704
- def initialize(taskid=nil, status=nil, createtime=nil, type=nil, productname=nil, upgrademode=nil, productid=nil, originalversion=nil, createuserid=nil, creatornickname=nil, delaytime=nil, timeoutinterval=nil, upgrademethod=nil, maxretrynum=nil, fwtype=nil, retryinterval=nil, overridemode=nil, taskuserdefine=nil, requestid=nil)
5854
+ def initialize(taskid=nil, status=nil, createtime=nil, type=nil, productname=nil, upgrademode=nil, productid=nil, originalversion=nil, createuserid=nil, creatornickname=nil, delaytime=nil, timeoutinterval=nil, upgrademethod=nil, maxretrynum=nil, fwtype=nil, retryinterval=nil, overridemode=nil, taskuserdefine=nil, ratelimit=nil, requestid=nil)
5705
5855
  @TaskId = taskid
5706
5856
  @Status = status
5707
5857
  @CreateTime = createtime
@@ -5720,6 +5870,7 @@ module TencentCloud
5720
5870
  @RetryInterval = retryinterval
5721
5871
  @OverrideMode = overridemode
5722
5872
  @TaskUserDefine = taskuserdefine
5873
+ @RateLimit = ratelimit
5723
5874
  @RequestId = requestid
5724
5875
  end
5725
5876
 
@@ -5742,6 +5893,7 @@ module TencentCloud
5742
5893
  @RetryInterval = params['RetryInterval']
5743
5894
  @OverrideMode = params['OverrideMode']
5744
5895
  @TaskUserDefine = params['TaskUserDefine']
5896
+ @RateLimit = params['RateLimit']
5745
5897
  @RequestId = params['RequestId']
5746
5898
  end
5747
5899
  end
@@ -6742,6 +6894,45 @@ module TencentCloud
6742
6894
  end
6743
6895
  end
6744
6896
 
6897
+ # DescribeTWeTalkAIBot请求参数结构体
6898
+ class DescribeTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
6899
+ # @param BotId: 智能体ID
6900
+ # @type BotId: String
6901
+
6902
+ attr_accessor :BotId
6903
+
6904
+ def initialize(botid=nil)
6905
+ @BotId = botid
6906
+ end
6907
+
6908
+ def deserialize(params)
6909
+ @BotId = params['BotId']
6910
+ end
6911
+ end
6912
+
6913
+ # DescribeTWeTalkAIBot返回参数结构体
6914
+ class DescribeTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
6915
+ # @param Data: 无
6916
+ # @type Data: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkAIBotInfo`
6917
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6918
+ # @type RequestId: String
6919
+
6920
+ attr_accessor :Data, :RequestId
6921
+
6922
+ def initialize(data=nil, requestid=nil)
6923
+ @Data = data
6924
+ @RequestId = requestid
6925
+ end
6926
+
6927
+ def deserialize(params)
6928
+ unless params['Data'].nil?
6929
+ @Data = TalkAIBotInfo.new
6930
+ @Data.deserialize(params['Data'])
6931
+ end
6932
+ @RequestId = params['RequestId']
6933
+ end
6934
+ end
6935
+
6745
6936
  # DescribeTWeTalkProductConfig请求参数结构体
6746
6937
  class DescribeTWeTalkProductConfigRequest < TencentCloud::Common::AbstractModel
6747
6938
  # @param ProductId: 产品ID
@@ -7090,8 +7281,8 @@ module TencentCloud
7090
7281
 
7091
7282
  attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
7092
7283
  extend Gem::Deprecate
7093
- deprecate :ModelId, :none, 2025, 11
7094
- deprecate :ModelId=, :none, 2025, 11
7284
+ deprecate :ModelId, :none, 2025, 12
7285
+ deprecate :ModelId=, :none, 2025, 12
7095
7286
 
7096
7287
  def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
7097
7288
  @ModelId = modelid
@@ -8807,8 +8998,8 @@ module TencentCloud
8807
8998
 
8808
8999
  attr_accessor :MiniProgramAppId, :DeviceList
8809
9000
  extend Gem::Deprecate
8810
- deprecate :MiniProgramAppId, :none, 2025, 11
8811
- deprecate :MiniProgramAppId=, :none, 2025, 11
9001
+ deprecate :MiniProgramAppId, :none, 2025, 12
9002
+ deprecate :MiniProgramAppId=, :none, 2025, 12
8812
9003
 
8813
9004
  def initialize(miniprogramappid=nil, devicelist=nil)
8814
9005
  @MiniProgramAppId = miniprogramappid
@@ -8855,6 +9046,73 @@ module TencentCloud
8855
9046
  end
8856
9047
  end
8857
9048
 
9049
+ # GetTWeTalkAIBotList请求参数结构体
9050
+ class GetTWeTalkAIBotListRequest < TencentCloud::Common::AbstractModel
9051
+ # @param BotId: 智能体ID
9052
+ # @type BotId: String
9053
+ # @param ProductId: 产品ID
9054
+ # @type ProductId: String
9055
+ # @param InstanceId: 实例ID
9056
+ # @type InstanceId: String
9057
+ # @param IncludeCredentials: 是否脱敏
9058
+ # @type IncludeCredentials: Boolean
9059
+ # @param Offset: 1
9060
+ # @type Offset: Integer
9061
+ # @param Limit: 10
9062
+ # @type Limit: Integer
9063
+
9064
+ attr_accessor :BotId, :ProductId, :InstanceId, :IncludeCredentials, :Offset, :Limit
9065
+
9066
+ def initialize(botid=nil, productid=nil, instanceid=nil, includecredentials=nil, offset=nil, limit=nil)
9067
+ @BotId = botid
9068
+ @ProductId = productid
9069
+ @InstanceId = instanceid
9070
+ @IncludeCredentials = includecredentials
9071
+ @Offset = offset
9072
+ @Limit = limit
9073
+ end
9074
+
9075
+ def deserialize(params)
9076
+ @BotId = params['BotId']
9077
+ @ProductId = params['ProductId']
9078
+ @InstanceId = params['InstanceId']
9079
+ @IncludeCredentials = params['IncludeCredentials']
9080
+ @Offset = params['Offset']
9081
+ @Limit = params['Limit']
9082
+ end
9083
+ end
9084
+
9085
+ # GetTWeTalkAIBotList返回参数结构体
9086
+ class GetTWeTalkAIBotListResponse < TencentCloud::Common::AbstractModel
9087
+ # @param Data: 无
9088
+ # @type Data: Array
9089
+ # @param TotalCount: 1
9090
+ # @type TotalCount: Integer
9091
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9092
+ # @type RequestId: String
9093
+
9094
+ attr_accessor :Data, :TotalCount, :RequestId
9095
+
9096
+ def initialize(data=nil, totalcount=nil, requestid=nil)
9097
+ @Data = data
9098
+ @TotalCount = totalcount
9099
+ @RequestId = requestid
9100
+ end
9101
+
9102
+ def deserialize(params)
9103
+ unless params['Data'].nil?
9104
+ @Data = []
9105
+ params['Data'].each do |i|
9106
+ talkaibotinfo_tmp = TalkAIBotInfo.new
9107
+ talkaibotinfo_tmp.deserialize(i)
9108
+ @Data << talkaibotinfo_tmp
9109
+ end
9110
+ end
9111
+ @TotalCount = params['TotalCount']
9112
+ @RequestId = params['RequestId']
9113
+ end
9114
+ end
9115
+
8858
9116
  # GetTWeTalkProductConfigList请求参数结构体
8859
9117
  class GetTWeTalkProductConfigListRequest < TencentCloud::Common::AbstractModel
8860
9118
  # @param ProductId: 产品ID
@@ -11194,6 +11452,78 @@ module TencentCloud
11194
11452
  end
11195
11453
  end
11196
11454
 
11455
+ # ModifyTWeTalkAIBot请求参数结构体
11456
+ class ModifyTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
11457
+ # @param BotId: 智能体ID
11458
+ # @type BotId: String
11459
+ # @param Name: 产品ID
11460
+ # @type Name: String
11461
+ # @param Description: 名称
11462
+ # @type Description: String
11463
+ # @param TargetLanguage: 支持的语言,zh-中文;en-英文;默认zh
11464
+ # @type TargetLanguage: String
11465
+ # @param STTConfig: 自定义语音识别配置
11466
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
11467
+ # @param LLMConfig: 自定义大模型配置
11468
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
11469
+ # @param TTSConfig: 语音合成配置
11470
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
11471
+ # @param AgentConfig: 智能体配置
11472
+ # @type AgentConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkAgentConfigInfo`
11473
+
11474
+ attr_accessor :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig
11475
+
11476
+ def initialize(botid=nil, name=nil, description=nil, targetlanguage=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, agentconfig=nil)
11477
+ @BotId = botid
11478
+ @Name = name
11479
+ @Description = description
11480
+ @TargetLanguage = targetlanguage
11481
+ @STTConfig = sttconfig
11482
+ @LLMConfig = llmconfig
11483
+ @TTSConfig = ttsconfig
11484
+ @AgentConfig = agentconfig
11485
+ end
11486
+
11487
+ def deserialize(params)
11488
+ @BotId = params['BotId']
11489
+ @Name = params['Name']
11490
+ @Description = params['Description']
11491
+ @TargetLanguage = params['TargetLanguage']
11492
+ unless params['STTConfig'].nil?
11493
+ @STTConfig = TalkSTTConfigInfo.new
11494
+ @STTConfig.deserialize(params['STTConfig'])
11495
+ end
11496
+ unless params['LLMConfig'].nil?
11497
+ @LLMConfig = TalkLLMConfigInfo.new
11498
+ @LLMConfig.deserialize(params['LLMConfig'])
11499
+ end
11500
+ unless params['TTSConfig'].nil?
11501
+ @TTSConfig = TalkTTSConfigInfo.new
11502
+ @TTSConfig.deserialize(params['TTSConfig'])
11503
+ end
11504
+ unless params['AgentConfig'].nil?
11505
+ @AgentConfig = TalkAgentConfigInfo.new
11506
+ @AgentConfig.deserialize(params['AgentConfig'])
11507
+ end
11508
+ end
11509
+ end
11510
+
11511
+ # ModifyTWeTalkAIBot返回参数结构体
11512
+ class ModifyTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
11513
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11514
+ # @type RequestId: String
11515
+
11516
+ attr_accessor :RequestId
11517
+
11518
+ def initialize(requestid=nil)
11519
+ @RequestId = requestid
11520
+ end
11521
+
11522
+ def deserialize(params)
11523
+ @RequestId = params['RequestId']
11524
+ end
11525
+ end
11526
+
11197
11527
  # ModifyTWeTalkProductConfig请求参数结构体
11198
11528
  class ModifyTWeTalkProductConfigRequest < TencentCloud::Common::AbstractModel
11199
11529
  # @param ProductId: 产品ID
@@ -12795,8 +13125,8 @@ module TencentCloud
12795
13125
 
12796
13126
  attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
12797
13127
  extend Gem::Deprecate
12798
- deprecate :ModelId, :none, 2025, 11
12799
- deprecate :ModelId=, :none, 2025, 11
13128
+ deprecate :ModelId, :none, 2025, 12
13129
+ deprecate :ModelId=, :none, 2025, 12
12800
13130
 
12801
13131
  def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
12802
13132
  @ModelId = modelid
@@ -12826,10 +13156,10 @@ module TencentCloud
12826
13156
 
12827
13157
  attr_accessor :Sn, :ModelId, :ActiveNum
12828
13158
  extend Gem::Deprecate
12829
- deprecate :ModelId, :none, 2025, 11
12830
- deprecate :ModelId=, :none, 2025, 11
12831
- deprecate :ActiveNum, :none, 2025, 11
12832
- deprecate :ActiveNum=, :none, 2025, 11
13159
+ deprecate :ModelId, :none, 2025, 12
13160
+ deprecate :ModelId=, :none, 2025, 12
13161
+ deprecate :ActiveNum, :none, 2025, 12
13162
+ deprecate :ActiveNum=, :none, 2025, 12
12833
13163
 
12834
13164
  def initialize(sn=nil, modelid=nil, activenum=nil)
12835
13165
  @Sn = sn
@@ -12868,6 +13198,160 @@ module TencentCloud
12868
13198
  end
12869
13199
  end
12870
13200
 
13201
+ # Talk配置信息描述。
13202
+ class TalkAIBotInfo < TencentCloud::Common::AbstractModel
13203
+ # @param Uin: UIN
13204
+ # @type Uin: Integer
13205
+ # @param AppId: APPID
13206
+ # @type AppId: Integer
13207
+ # @param InstanceId: 实例ID
13208
+ # @type InstanceId: String
13209
+ # @param BotId: 智能体ID
13210
+ # @type BotId: String
13211
+ # @param Name: 名称
13212
+ # @type Name: String
13213
+ # @param Description: 描述
13214
+ # @type Description: String
13215
+ # @param TargetLanguage: 语言
13216
+ # @type TargetLanguage: String
13217
+ # @param STTConfig: 语音识别
13218
+ # @type STTConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkSTTConfigInfo`
13219
+ # @param LLMConfig: 大模型
13220
+ # @type LLMConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkLLMConfigInfo`
13221
+ # @param TTSConfig: 语音合成
13222
+ # @type TTSConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkTTSConfigInfo`
13223
+ # @param AgentConfig: 智能体配置
13224
+ # @type AgentConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkAgentConfigInfo`
13225
+ # @param ProductList: 产品信息列表
13226
+ # @type ProductList: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkProductInfo`
13227
+ # @param CreateTime: 创建时间
13228
+ # @type CreateTime: Integer
13229
+ # @param UpdateTime: 更新时间
13230
+ # @type UpdateTime: Integer
13231
+
13232
+ attr_accessor :Uin, :AppId, :InstanceId, :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig, :ProductList, :CreateTime, :UpdateTime
13233
+
13234
+ 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)
13235
+ @Uin = uin
13236
+ @AppId = appid
13237
+ @InstanceId = instanceid
13238
+ @BotId = botid
13239
+ @Name = name
13240
+ @Description = description
13241
+ @TargetLanguage = targetlanguage
13242
+ @STTConfig = sttconfig
13243
+ @LLMConfig = llmconfig
13244
+ @TTSConfig = ttsconfig
13245
+ @AgentConfig = agentconfig
13246
+ @ProductList = productlist
13247
+ @CreateTime = createtime
13248
+ @UpdateTime = updatetime
13249
+ end
13250
+
13251
+ def deserialize(params)
13252
+ @Uin = params['Uin']
13253
+ @AppId = params['AppId']
13254
+ @InstanceId = params['InstanceId']
13255
+ @BotId = params['BotId']
13256
+ @Name = params['Name']
13257
+ @Description = params['Description']
13258
+ @TargetLanguage = params['TargetLanguage']
13259
+ unless params['STTConfig'].nil?
13260
+ @STTConfig = TalkSTTConfigInfo.new
13261
+ @STTConfig.deserialize(params['STTConfig'])
13262
+ end
13263
+ unless params['LLMConfig'].nil?
13264
+ @LLMConfig = TalkLLMConfigInfo.new
13265
+ @LLMConfig.deserialize(params['LLMConfig'])
13266
+ end
13267
+ unless params['TTSConfig'].nil?
13268
+ @TTSConfig = TalkTTSConfigInfo.new
13269
+ @TTSConfig.deserialize(params['TTSConfig'])
13270
+ end
13271
+ unless params['AgentConfig'].nil?
13272
+ @AgentConfig = TalkAgentConfigInfo.new
13273
+ @AgentConfig.deserialize(params['AgentConfig'])
13274
+ end
13275
+ unless params['ProductList'].nil?
13276
+ @ProductList = TalkProductInfo.new
13277
+ @ProductList.deserialize(params['ProductList'])
13278
+ end
13279
+ @CreateTime = params['CreateTime']
13280
+ @UpdateTime = params['UpdateTime']
13281
+ end
13282
+ end
13283
+
13284
+ # 智能体配置信息。
13285
+ class TalkAgentConfigInfo < TencentCloud::Common::AbstractModel
13286
+ # @param SessionTimeout: 会话超时(秒),指连接会话的时间,例如30秒是指会话在30秒后断开
13287
+ # @type SessionTimeout: Integer
13288
+ # @param InterruptionEnabled: 允许打断
13289
+ # @type InterruptionEnabled: Boolean
13290
+ # @param MaxContextTokens: 最大上下文
13291
+ # @type MaxContextTokens: Integer
13292
+ # @param IdleDetection: 空闲检测配置
13293
+ # @type IdleDetection: :class:`Tencentcloud::Iotexplorer.v20190423.models.TalkIdleDetectionConfigInfo`
13294
+ # @param EmotionEnabled: 是否启用情绪识别
13295
+ # @type EmotionEnabled: Boolean
13296
+ # @param SemanticVADEnabled: 是否启用语义vad
13297
+ # @type SemanticVADEnabled: Boolean
13298
+ # @param SemanticVADSensitivity: 语义vad灵敏度, 1-慢 2-适中 3-快
13299
+ # @type SemanticVADSensitivity: Integer
13300
+ # @param SilenceTime: VAD 静默检测时间, 当开启语义vad此配置失效
13301
+ # @type SilenceTime: Integer
13302
+ # @param NoiseFilterEnabled: 是否启用噪声过滤
13303
+ # @type NoiseFilterEnabled: Boolean
13304
+ # @param LongTermMemoryEnabled: 是否开启长记忆,默认开启
13305
+ # @type LongTermMemoryEnabled: Boolean
13306
+ # @param SystemPrompt: 系统提示词,仅当未配置LLMConfig时使用
13307
+ # @type SystemPrompt: String
13308
+ # @param GreetingMessage: 开机问候语,如果未配置默认不开启
13309
+ # @type GreetingMessage: String
13310
+ # @param DefaultVoiceType: 系统默认音色,当配置复刻音色时,默认值为200000000
13311
+ # @type DefaultVoiceType: Integer
13312
+ # @param FastVoiceType: 复刻音色
13313
+ # @type FastVoiceType: String
13314
+
13315
+ attr_accessor :SessionTimeout, :InterruptionEnabled, :MaxContextTokens, :IdleDetection, :EmotionEnabled, :SemanticVADEnabled, :SemanticVADSensitivity, :SilenceTime, :NoiseFilterEnabled, :LongTermMemoryEnabled, :SystemPrompt, :GreetingMessage, :DefaultVoiceType, :FastVoiceType
13316
+
13317
+ 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)
13318
+ @SessionTimeout = sessiontimeout
13319
+ @InterruptionEnabled = interruptionenabled
13320
+ @MaxContextTokens = maxcontexttokens
13321
+ @IdleDetection = idledetection
13322
+ @EmotionEnabled = emotionenabled
13323
+ @SemanticVADEnabled = semanticvadenabled
13324
+ @SemanticVADSensitivity = semanticvadsensitivity
13325
+ @SilenceTime = silencetime
13326
+ @NoiseFilterEnabled = noisefilterenabled
13327
+ @LongTermMemoryEnabled = longtermmemoryenabled
13328
+ @SystemPrompt = systemprompt
13329
+ @GreetingMessage = greetingmessage
13330
+ @DefaultVoiceType = defaultvoicetype
13331
+ @FastVoiceType = fastvoicetype
13332
+ end
13333
+
13334
+ def deserialize(params)
13335
+ @SessionTimeout = params['SessionTimeout']
13336
+ @InterruptionEnabled = params['InterruptionEnabled']
13337
+ @MaxContextTokens = params['MaxContextTokens']
13338
+ unless params['IdleDetection'].nil?
13339
+ @IdleDetection = TalkIdleDetectionConfigInfo.new
13340
+ @IdleDetection.deserialize(params['IdleDetection'])
13341
+ end
13342
+ @EmotionEnabled = params['EmotionEnabled']
13343
+ @SemanticVADEnabled = params['SemanticVADEnabled']
13344
+ @SemanticVADSensitivity = params['SemanticVADSensitivity']
13345
+ @SilenceTime = params['SilenceTime']
13346
+ @NoiseFilterEnabled = params['NoiseFilterEnabled']
13347
+ @LongTermMemoryEnabled = params['LongTermMemoryEnabled']
13348
+ @SystemPrompt = params['SystemPrompt']
13349
+ @GreetingMessage = params['GreetingMessage']
13350
+ @DefaultVoiceType = params['DefaultVoiceType']
13351
+ @FastVoiceType = params['FastVoiceType']
13352
+ end
13353
+ end
13354
+
12871
13355
  # 基础配置信息。
12872
13356
  class TalkBasicConfigInfo < TencentCloud::Common::AbstractModel
12873
13357
  # @param SystemPrompt: 系统提示词
@@ -12976,7 +13460,7 @@ module TencentCloud
12976
13460
 
12977
13461
  # LLM配置信息。
12978
13462
  class TalkLLMConfigInfo < TencentCloud::Common::AbstractModel
12979
- # @param LLMType: 支持的LLM类型,tencent-腾讯;openai-OPENAI格式;anthropic-ANTHROPIC;gemini-GEMINI;gemini-GEMINI;coze-扣子;dify-DIFY;tencent_lke-腾讯智能体平台;系统默认-openai。
13463
+ # @param LLMType: 支持的LLM类型,openai-OPENAI格式。
12980
13464
  # @type LLMType: String
12981
13465
  # @param Enabled: 是否开启
12982
13466
  # @type Enabled: Boolean
@@ -12997,53 +13481,6 @@ module TencentCloud
12997
13481
  # "MetaInfo":{}
12998
13482
  # }
12999
13483
  # ```
13000
-
13001
- # ## anthropic
13002
- # ```
13003
- # {
13004
- # "ApiKey": "sk-XXXXXXXXXXXX",
13005
- # "ApiUrl": "https://api.openai.com/v1",
13006
- # "SystemPrompt": "一个小小助手"
13007
- # }
13008
- # ```
13009
- # ## gemini
13010
- # ```
13011
- # {
13012
- # "AppId": 123456,
13013
- # "AccessToken": "*****",
13014
- # "ResourceId": "SecretKey****",
13015
- # "ModelName": "16k_zh",
13016
- # "Language":""
13017
- # }
13018
- # ```
13019
- # ## coze
13020
- # ```
13021
- # {
13022
- # "ApiKey": "sk-XXXXXXXXXXXX",
13023
- # "BotId": "v1",
13024
- # "UserId": "xxx",
13025
- # "ApiUrl": "https://api.coze.cn/v3/chat"
13026
- # }
13027
- # ```
13028
- # ## dify
13029
- # ```
13030
- # {
13031
- # "ApiKey": "sk-XXXXXXXXXXXX",
13032
- # "ApiUrl": "https://api.openai.com/v1",
13033
- # "User": "xxx",
13034
- # "Inputs":{},
13035
- # "ConversationId":"c1"
13036
- # }
13037
- # ```
13038
- # ## tencent_lke
13039
- # ```
13040
- # {
13041
- # "ApiKey": "sk-XXXXXXXXXXXX",
13042
- # "ApiUrl": "https://api.openai.com/v1",
13043
- # "SystemRole": "一个小小助手",
13044
- # "SessionId":"123456"
13045
- # }
13046
- # ```
13047
13484
  # @type Config: String
13048
13485
  # @param Temperature: 温度
13049
13486
  # @type Temperature: Float
@@ -13051,10 +13488,12 @@ module TencentCloud
13051
13488
  # @type MaxTokens: Integer
13052
13489
  # @param TopP: topP
13053
13490
  # @type TopP: Float
13491
+ # @param Tools: 工具ID列表
13492
+ # @type Tools: Array
13054
13493
 
13055
- attr_accessor :LLMType, :Enabled, :Model, :Streaming, :Config, :Temperature, :MaxTokens, :TopP
13494
+ attr_accessor :LLMType, :Enabled, :Model, :Streaming, :Config, :Temperature, :MaxTokens, :TopP, :Tools
13056
13495
 
13057
- def initialize(llmtype=nil, enabled=nil, model=nil, streaming=nil, config=nil, temperature=nil, maxtokens=nil, topp=nil)
13496
+ def initialize(llmtype=nil, enabled=nil, model=nil, streaming=nil, config=nil, temperature=nil, maxtokens=nil, topp=nil, tools=nil)
13058
13497
  @LLMType = llmtype
13059
13498
  @Enabled = enabled
13060
13499
  @Model = model
@@ -13063,6 +13502,7 @@ module TencentCloud
13063
13502
  @Temperature = temperature
13064
13503
  @MaxTokens = maxtokens
13065
13504
  @TopP = topp
13505
+ @Tools = tools
13066
13506
  end
13067
13507
 
13068
13508
  def deserialize(params)
@@ -13074,6 +13514,7 @@ module TencentCloud
13074
13514
  @Temperature = params['Temperature']
13075
13515
  @MaxTokens = params['MaxTokens']
13076
13516
  @TopP = params['TopP']
13517
+ @Tools = params['Tools']
13077
13518
  end
13078
13519
  end
13079
13520
 
@@ -13200,9 +13641,29 @@ module TencentCloud
13200
13641
  end
13201
13642
  end
13202
13643
 
13644
+ # 智能体产品信息。
13645
+ class TalkProductInfo < TencentCloud::Common::AbstractModel
13646
+ # @param ProductId: 产品ID
13647
+ # @type ProductId: String
13648
+ # @param ProductName: 产品名称
13649
+ # @type ProductName: String
13650
+
13651
+ attr_accessor :ProductId, :ProductName
13652
+
13653
+ def initialize(productid=nil, productname=nil)
13654
+ @ProductId = productid
13655
+ @ProductName = productname
13656
+ end
13657
+
13658
+ def deserialize(params)
13659
+ @ProductId = params['ProductId']
13660
+ @ProductName = params['ProductName']
13661
+ end
13662
+ end
13663
+
13203
13664
  # STT配置信息。
13204
13665
  class TalkSTTConfigInfo < TencentCloud::Common::AbstractModel
13205
- # @param STTType: 支持的STT类型,tencent-腾讯;azure-亚马逊;volcengine-火山引擎;deepgram-Deepgram;系统默认-tencent。
13666
+ # @param STTType: 支持的STT类型,tencent-腾讯;azure-亚马逊;deepgram-Deepgram;系统默认-tencent。
13206
13667
  # @type STTType: String
13207
13668
  # @param Enabled: 是否开启
13208
13669
  # @type Enabled: Boolean
@@ -13227,16 +13688,7 @@ module TencentCloud
13227
13688
  # "SubscriptionKey": "*****"
13228
13689
  # }
13229
13690
  # ```
13230
- # ## volcengine
13231
- # ```
13232
- # {
13233
- # "AppId": 123456,
13234
- # "AccessToken": "*****",
13235
- # "ResourceId": "SecretKey****",
13236
- # "ModelName": "16k_zh",
13237
- # "Language":""
13238
- # }
13239
- # ```
13691
+
13240
13692
  # ## deepgram
13241
13693
  # ```
13242
13694
  # {
@@ -13750,6 +14202,42 @@ module TencentCloud
13750
14202
  end
13751
14203
  end
13752
14204
 
14205
+ # UnbindTWeTalkAIBot请求参数结构体
14206
+ class UnbindTWeTalkAIBotRequest < TencentCloud::Common::AbstractModel
14207
+ # @param BotId: 智能体ID
14208
+ # @type BotId: String
14209
+ # @param ProductId: 产品ID
14210
+ # @type ProductId: String
14211
+
14212
+ attr_accessor :BotId, :ProductId
14213
+
14214
+ def initialize(botid=nil, productid=nil)
14215
+ @BotId = botid
14216
+ @ProductId = productid
14217
+ end
14218
+
14219
+ def deserialize(params)
14220
+ @BotId = params['BotId']
14221
+ @ProductId = params['ProductId']
14222
+ end
14223
+ end
14224
+
14225
+ # UnbindTWeTalkAIBot返回参数结构体
14226
+ class UnbindTWeTalkAIBotResponse < TencentCloud::Common::AbstractModel
14227
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14228
+ # @type RequestId: String
14229
+
14230
+ attr_accessor :RequestId
14231
+
14232
+ def initialize(requestid=nil)
14233
+ @RequestId = requestid
14234
+ end
14235
+
14236
+ def deserialize(params)
14237
+ @RequestId = params['RequestId']
14238
+ end
14239
+ end
14240
+
13753
14241
  # UpdateDeviceTWeCallAuthorizeStatus请求参数结构体
13754
14242
  class UpdateDeviceTWeCallAuthorizeStatusRequest < TencentCloud::Common::AbstractModel
13755
14243
  # @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.1173
4
+ version: 3.0.1175
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-24 00:00:00.000000000 Z
11
+ date: 2025-12-01 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