tencentcloud-sdk-iotexplorer 3.0.1174 → 3.0.1210
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190423/client.rb +24 -26
- data/lib/v20190423/models.rb +87 -53
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5a7f8d2eb9a03ace92e50094d0e6c1fa14342d2
|
|
4
|
+
data.tar.gz: 91cb21812c84e1220ecfb1821e5f8204428f9bad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34be3dc1cc226a59189bc588d40f760d902ddfab9396be32ffc0320c726e188327eb986ee591c974891caf3f1382a02c444daba474a2fb48262ed4e84f882406
|
|
7
|
+
data.tar.gz: 665a3dd93c16dfb026bfba4e4592ef999d272f7ecf897cf3deb102a781b7d9c7ebbadc3120c16cd494b22fd7ac8942bc630ee8919c220dc05a08b1c9100c94b4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1210
|
data/lib/v20190423/client.rb
CHANGED
|
@@ -269,32 +269,6 @@ module TencentCloud
|
|
|
269
269
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
270
270
|
end
|
|
271
271
|
|
|
272
|
-
# 业务已下线
|
|
273
|
-
|
|
274
|
-
# 取消分配
|
|
275
|
-
|
|
276
|
-
# @param request: Request instance for CancelAssignTWeCallLicense.
|
|
277
|
-
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::CancelAssignTWeCallLicenseRequest`
|
|
278
|
-
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::CancelAssignTWeCallLicenseResponse`
|
|
279
|
-
def CancelAssignTWeCallLicense(request)
|
|
280
|
-
body = send_request('CancelAssignTWeCallLicense', request.serialize)
|
|
281
|
-
response = JSON.parse(body)
|
|
282
|
-
if response['Response'].key?('Error') == false
|
|
283
|
-
model = CancelAssignTWeCallLicenseResponse.new
|
|
284
|
-
model.deserialize(response['Response'])
|
|
285
|
-
model
|
|
286
|
-
else
|
|
287
|
-
code = response['Response']['Error']['Code']
|
|
288
|
-
message = response['Response']['Error']['Message']
|
|
289
|
-
reqid = response['Response']['RequestId']
|
|
290
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
291
|
-
end
|
|
292
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
293
|
-
raise e
|
|
294
|
-
rescue StandardError => e
|
|
295
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
296
|
-
end
|
|
297
|
-
|
|
298
272
|
# p2p路线切换(此接口目前处于内测接口,可以联系申请加白 )
|
|
299
273
|
|
|
300
274
|
# @param request: Request instance for ChangeP2PRoute.
|
|
@@ -511,6 +485,30 @@ module TencentCloud
|
|
|
511
485
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
512
486
|
end
|
|
513
487
|
|
|
488
|
+
# 创建设备SDP应答
|
|
489
|
+
|
|
490
|
+
# @param request: Request instance for CreateDeviceSDPAnswer.
|
|
491
|
+
# @type request: :class:`Tencentcloud::iotexplorer::V20190423::CreateDeviceSDPAnswerRequest`
|
|
492
|
+
# @rtype: :class:`Tencentcloud::iotexplorer::V20190423::CreateDeviceSDPAnswerResponse`
|
|
493
|
+
def CreateDeviceSDPAnswer(request)
|
|
494
|
+
body = send_request('CreateDeviceSDPAnswer', request.serialize)
|
|
495
|
+
response = JSON.parse(body)
|
|
496
|
+
if response['Response'].key?('Error') == false
|
|
497
|
+
model = CreateDeviceSDPAnswerResponse.new
|
|
498
|
+
model.deserialize(response['Response'])
|
|
499
|
+
model
|
|
500
|
+
else
|
|
501
|
+
code = response['Response']['Error']['Code']
|
|
502
|
+
message = response['Response']['Error']['Message']
|
|
503
|
+
reqid = response['Response']['RequestId']
|
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
505
|
+
end
|
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
507
|
+
raise e
|
|
508
|
+
rescue StandardError => e
|
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
510
|
+
end
|
|
511
|
+
|
|
514
512
|
# 创建外部视频 AI 分析任务
|
|
515
513
|
|
|
516
514
|
# @param request: Request instance for CreateExternalSourceAIServiceTask.
|
data/lib/v20190423/models.rb
CHANGED
|
@@ -100,8 +100,8 @@ module TencentCloud
|
|
|
100
100
|
|
|
101
101
|
attr_accessor :PkgType, :MiniProgramAppId, :DeviceList
|
|
102
102
|
extend Gem::Deprecate
|
|
103
|
-
deprecate :MiniProgramAppId, :none,
|
|
104
|
-
deprecate :MiniProgramAppId=, :none,
|
|
103
|
+
deprecate :MiniProgramAppId, :none, 2026, 1
|
|
104
|
+
deprecate :MiniProgramAppId=, :none, 2026, 1
|
|
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,
|
|
140
|
-
deprecate :DeviceList=, :none,
|
|
139
|
+
deprecate :DeviceList, :none, 2026, 1
|
|
140
|
+
deprecate :DeviceList=, :none, 2026, 1
|
|
141
141
|
|
|
142
142
|
def initialize(devicelist=nil, failurelist=nil, successlist=nil, requestid=nil)
|
|
143
143
|
@DeviceList = devicelist
|
|
@@ -847,38 +847,6 @@ module TencentCloud
|
|
|
847
847
|
end
|
|
848
848
|
end
|
|
849
849
|
|
|
850
|
-
# CancelAssignTWeCallLicense请求参数结构体
|
|
851
|
-
class CancelAssignTWeCallLicenseRequest < TencentCloud::Common::AbstractModel
|
|
852
|
-
# @param PkgId: 订单号
|
|
853
|
-
# @type PkgId: String
|
|
854
|
-
|
|
855
|
-
attr_accessor :PkgId
|
|
856
|
-
|
|
857
|
-
def initialize(pkgid=nil)
|
|
858
|
-
@PkgId = pkgid
|
|
859
|
-
end
|
|
860
|
-
|
|
861
|
-
def deserialize(params)
|
|
862
|
-
@PkgId = params['PkgId']
|
|
863
|
-
end
|
|
864
|
-
end
|
|
865
|
-
|
|
866
|
-
# CancelAssignTWeCallLicense返回参数结构体
|
|
867
|
-
class CancelAssignTWeCallLicenseResponse < TencentCloud::Common::AbstractModel
|
|
868
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
869
|
-
# @type RequestId: String
|
|
870
|
-
|
|
871
|
-
attr_accessor :RequestId
|
|
872
|
-
|
|
873
|
-
def initialize(requestid=nil)
|
|
874
|
-
@RequestId = requestid
|
|
875
|
-
end
|
|
876
|
-
|
|
877
|
-
def deserialize(params)
|
|
878
|
-
@RequestId = params['RequestId']
|
|
879
|
-
end
|
|
880
|
-
end
|
|
881
|
-
|
|
882
850
|
# ChangeP2PRoute请求参数结构体
|
|
883
851
|
class ChangeP2PRouteRequest < TencentCloud::Common::AbstractModel
|
|
884
852
|
# @param ProductId: 产品ID
|
|
@@ -1775,6 +1743,50 @@ module TencentCloud
|
|
|
1775
1743
|
end
|
|
1776
1744
|
end
|
|
1777
1745
|
|
|
1746
|
+
# CreateDeviceSDPAnswer请求参数结构体
|
|
1747
|
+
class CreateDeviceSDPAnswerRequest < TencentCloud::Common::AbstractModel
|
|
1748
|
+
# @param ProductId: 产品ID
|
|
1749
|
+
# @type ProductId: String
|
|
1750
|
+
# @param DeviceName: 设备名称
|
|
1751
|
+
# @type DeviceName: String
|
|
1752
|
+
# @param SDPOffer: SDP提议
|
|
1753
|
+
# @type SDPOffer: String
|
|
1754
|
+
|
|
1755
|
+
attr_accessor :ProductId, :DeviceName, :SDPOffer
|
|
1756
|
+
|
|
1757
|
+
def initialize(productid=nil, devicename=nil, sdpoffer=nil)
|
|
1758
|
+
@ProductId = productid
|
|
1759
|
+
@DeviceName = devicename
|
|
1760
|
+
@SDPOffer = sdpoffer
|
|
1761
|
+
end
|
|
1762
|
+
|
|
1763
|
+
def deserialize(params)
|
|
1764
|
+
@ProductId = params['ProductId']
|
|
1765
|
+
@DeviceName = params['DeviceName']
|
|
1766
|
+
@SDPOffer = params['SDPOffer']
|
|
1767
|
+
end
|
|
1768
|
+
end
|
|
1769
|
+
|
|
1770
|
+
# CreateDeviceSDPAnswer返回参数结构体
|
|
1771
|
+
class CreateDeviceSDPAnswerResponse < TencentCloud::Common::AbstractModel
|
|
1772
|
+
# @param SDPAnswer: SDP应答
|
|
1773
|
+
# @type SDPAnswer: String
|
|
1774
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1775
|
+
# @type RequestId: String
|
|
1776
|
+
|
|
1777
|
+
attr_accessor :SDPAnswer, :RequestId
|
|
1778
|
+
|
|
1779
|
+
def initialize(sdpanswer=nil, requestid=nil)
|
|
1780
|
+
@SDPAnswer = sdpanswer
|
|
1781
|
+
@RequestId = requestid
|
|
1782
|
+
end
|
|
1783
|
+
|
|
1784
|
+
def deserialize(params)
|
|
1785
|
+
@SDPAnswer = params['SDPAnswer']
|
|
1786
|
+
@RequestId = params['RequestId']
|
|
1787
|
+
end
|
|
1788
|
+
end
|
|
1789
|
+
|
|
1778
1790
|
# CreateExternalSourceAIServiceTask请求参数结构体
|
|
1779
1791
|
class CreateExternalSourceAIServiceTaskRequest < TencentCloud::Common::AbstractModel
|
|
1780
1792
|
# @param ProductId: 产品 ID
|
|
@@ -5844,12 +5856,14 @@ module TencentCloud
|
|
|
5844
5856
|
# @type OverrideMode: Integer
|
|
5845
5857
|
# @param TaskUserDefine: 用户自定义消息
|
|
5846
5858
|
# @type TaskUserDefine: String
|
|
5859
|
+
# @param RateLimit: 每分钟发送设备量
|
|
5860
|
+
# @type RateLimit: Integer
|
|
5847
5861
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5848
5862
|
# @type RequestId: String
|
|
5849
5863
|
|
|
5850
|
-
attr_accessor :TaskId, :Status, :CreateTime, :Type, :ProductName, :UpgradeMode, :ProductId, :OriginalVersion, :CreateUserId, :CreatorNickName, :DelayTime, :TimeoutInterval, :UpgradeMethod, :MaxRetryNum, :FwType, :RetryInterval, :OverrideMode, :TaskUserDefine, :RequestId
|
|
5864
|
+
attr_accessor :TaskId, :Status, :CreateTime, :Type, :ProductName, :UpgradeMode, :ProductId, :OriginalVersion, :CreateUserId, :CreatorNickName, :DelayTime, :TimeoutInterval, :UpgradeMethod, :MaxRetryNum, :FwType, :RetryInterval, :OverrideMode, :TaskUserDefine, :RateLimit, :RequestId
|
|
5851
5865
|
|
|
5852
|
-
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)
|
|
5866
|
+
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)
|
|
5853
5867
|
@TaskId = taskid
|
|
5854
5868
|
@Status = status
|
|
5855
5869
|
@CreateTime = createtime
|
|
@@ -5868,6 +5882,7 @@ module TencentCloud
|
|
|
5868
5882
|
@RetryInterval = retryinterval
|
|
5869
5883
|
@OverrideMode = overridemode
|
|
5870
5884
|
@TaskUserDefine = taskuserdefine
|
|
5885
|
+
@RateLimit = ratelimit
|
|
5871
5886
|
@RequestId = requestid
|
|
5872
5887
|
end
|
|
5873
5888
|
|
|
@@ -5890,6 +5905,7 @@ module TencentCloud
|
|
|
5890
5905
|
@RetryInterval = params['RetryInterval']
|
|
5891
5906
|
@OverrideMode = params['OverrideMode']
|
|
5892
5907
|
@TaskUserDefine = params['TaskUserDefine']
|
|
5908
|
+
@RateLimit = params['RateLimit']
|
|
5893
5909
|
@RequestId = params['RequestId']
|
|
5894
5910
|
end
|
|
5895
5911
|
end
|
|
@@ -7277,8 +7293,8 @@ module TencentCloud
|
|
|
7277
7293
|
|
|
7278
7294
|
attr_accessor :ModelId, :Sn, :ErrCode, :ExpireTime
|
|
7279
7295
|
extend Gem::Deprecate
|
|
7280
|
-
deprecate :ModelId, :none,
|
|
7281
|
-
deprecate :ModelId=, :none,
|
|
7296
|
+
deprecate :ModelId, :none, 2026, 1
|
|
7297
|
+
deprecate :ModelId=, :none, 2026, 1
|
|
7282
7298
|
|
|
7283
7299
|
def initialize(modelid=nil, sn=nil, errcode=nil, expiretime=nil)
|
|
7284
7300
|
@ModelId = modelid
|
|
@@ -8994,8 +9010,8 @@ module TencentCloud
|
|
|
8994
9010
|
|
|
8995
9011
|
attr_accessor :MiniProgramAppId, :DeviceList
|
|
8996
9012
|
extend Gem::Deprecate
|
|
8997
|
-
deprecate :MiniProgramAppId, :none,
|
|
8998
|
-
deprecate :MiniProgramAppId=, :none,
|
|
9013
|
+
deprecate :MiniProgramAppId, :none, 2026, 1
|
|
9014
|
+
deprecate :MiniProgramAppId=, :none, 2026, 1
|
|
8999
9015
|
|
|
9000
9016
|
def initialize(miniprogramappid=nil, devicelist=nil)
|
|
9001
9017
|
@MiniProgramAppId = miniprogramappid
|
|
@@ -9046,6 +9062,8 @@ module TencentCloud
|
|
|
9046
9062
|
class GetTWeTalkAIBotListRequest < TencentCloud::Common::AbstractModel
|
|
9047
9063
|
# @param BotId: 智能体ID
|
|
9048
9064
|
# @type BotId: String
|
|
9065
|
+
# @param Name: 智能体名称
|
|
9066
|
+
# @type Name: String
|
|
9049
9067
|
# @param ProductId: 产品ID
|
|
9050
9068
|
# @type ProductId: String
|
|
9051
9069
|
# @param InstanceId: 实例ID
|
|
@@ -9057,10 +9075,11 @@ module TencentCloud
|
|
|
9057
9075
|
# @param Limit: 10
|
|
9058
9076
|
# @type Limit: Integer
|
|
9059
9077
|
|
|
9060
|
-
attr_accessor :BotId, :ProductId, :InstanceId, :IncludeCredentials, :Offset, :Limit
|
|
9078
|
+
attr_accessor :BotId, :Name, :ProductId, :InstanceId, :IncludeCredentials, :Offset, :Limit
|
|
9061
9079
|
|
|
9062
|
-
def initialize(botid=nil, productid=nil, instanceid=nil, includecredentials=nil, offset=nil, limit=nil)
|
|
9080
|
+
def initialize(botid=nil, name=nil, productid=nil, instanceid=nil, includecredentials=nil, offset=nil, limit=nil)
|
|
9063
9081
|
@BotId = botid
|
|
9082
|
+
@Name = name
|
|
9064
9083
|
@ProductId = productid
|
|
9065
9084
|
@InstanceId = instanceid
|
|
9066
9085
|
@IncludeCredentials = includecredentials
|
|
@@ -9070,6 +9089,7 @@ module TencentCloud
|
|
|
9070
9089
|
|
|
9071
9090
|
def deserialize(params)
|
|
9072
9091
|
@BotId = params['BotId']
|
|
9092
|
+
@Name = params['Name']
|
|
9073
9093
|
@ProductId = params['ProductId']
|
|
9074
9094
|
@InstanceId = params['InstanceId']
|
|
9075
9095
|
@IncludeCredentials = params['IncludeCredentials']
|
|
@@ -13121,8 +13141,8 @@ module TencentCloud
|
|
|
13121
13141
|
|
|
13122
13142
|
attr_accessor :ModelId, :Sn, :ExpireTime, :PkgType
|
|
13123
13143
|
extend Gem::Deprecate
|
|
13124
|
-
deprecate :ModelId, :none,
|
|
13125
|
-
deprecate :ModelId=, :none,
|
|
13144
|
+
deprecate :ModelId, :none, 2026, 1
|
|
13145
|
+
deprecate :ModelId=, :none, 2026, 1
|
|
13126
13146
|
|
|
13127
13147
|
def initialize(modelid=nil, sn=nil, expiretime=nil, pkgtype=nil)
|
|
13128
13148
|
@ModelId = modelid
|
|
@@ -13152,10 +13172,10 @@ module TencentCloud
|
|
|
13152
13172
|
|
|
13153
13173
|
attr_accessor :Sn, :ModelId, :ActiveNum
|
|
13154
13174
|
extend Gem::Deprecate
|
|
13155
|
-
deprecate :ModelId, :none,
|
|
13156
|
-
deprecate :ModelId=, :none,
|
|
13157
|
-
deprecate :ActiveNum, :none,
|
|
13158
|
-
deprecate :ActiveNum=, :none,
|
|
13175
|
+
deprecate :ModelId, :none, 2026, 1
|
|
13176
|
+
deprecate :ModelId=, :none, 2026, 1
|
|
13177
|
+
deprecate :ActiveNum, :none, 2026, 1
|
|
13178
|
+
deprecate :ActiveNum=, :none, 2026, 1
|
|
13159
13179
|
|
|
13160
13180
|
def initialize(sn=nil, modelid=nil, activenum=nil)
|
|
13161
13181
|
@Sn = sn
|
|
@@ -13224,10 +13244,15 @@ module TencentCloud
|
|
|
13224
13244
|
# @type CreateTime: Integer
|
|
13225
13245
|
# @param UpdateTime: 更新时间
|
|
13226
13246
|
# @type UpdateTime: Integer
|
|
13247
|
+
# @param BoundProducts: 已关联产品信息列表
|
|
13248
|
+
# @type BoundProducts: Array
|
|
13227
13249
|
|
|
13228
|
-
attr_accessor :Uin, :AppId, :InstanceId, :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig, :ProductList, :CreateTime, :UpdateTime
|
|
13250
|
+
attr_accessor :Uin, :AppId, :InstanceId, :BotId, :Name, :Description, :TargetLanguage, :STTConfig, :LLMConfig, :TTSConfig, :AgentConfig, :ProductList, :CreateTime, :UpdateTime, :BoundProducts
|
|
13251
|
+
extend Gem::Deprecate
|
|
13252
|
+
deprecate :ProductList, :none, 2026, 1
|
|
13253
|
+
deprecate :ProductList=, :none, 2026, 1
|
|
13229
13254
|
|
|
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)
|
|
13255
|
+
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, boundproducts=nil)
|
|
13231
13256
|
@Uin = uin
|
|
13232
13257
|
@AppId = appid
|
|
13233
13258
|
@InstanceId = instanceid
|
|
@@ -13242,6 +13267,7 @@ module TencentCloud
|
|
|
13242
13267
|
@ProductList = productlist
|
|
13243
13268
|
@CreateTime = createtime
|
|
13244
13269
|
@UpdateTime = updatetime
|
|
13270
|
+
@BoundProducts = boundproducts
|
|
13245
13271
|
end
|
|
13246
13272
|
|
|
13247
13273
|
def deserialize(params)
|
|
@@ -13274,6 +13300,14 @@ module TencentCloud
|
|
|
13274
13300
|
end
|
|
13275
13301
|
@CreateTime = params['CreateTime']
|
|
13276
13302
|
@UpdateTime = params['UpdateTime']
|
|
13303
|
+
unless params['BoundProducts'].nil?
|
|
13304
|
+
@BoundProducts = []
|
|
13305
|
+
params['BoundProducts'].each do |i|
|
|
13306
|
+
talkproductinfo_tmp = TalkProductInfo.new
|
|
13307
|
+
talkproductinfo_tmp.deserialize(i)
|
|
13308
|
+
@BoundProducts << talkproductinfo_tmp
|
|
13309
|
+
end
|
|
13310
|
+
end
|
|
13277
13311
|
end
|
|
13278
13312
|
end
|
|
13279
13313
|
|
|
@@ -13297,7 +13331,7 @@ module TencentCloud
|
|
|
13297
13331
|
# @type SilenceTime: Integer
|
|
13298
13332
|
# @param NoiseFilterEnabled: 是否启用噪声过滤
|
|
13299
13333
|
# @type NoiseFilterEnabled: Boolean
|
|
13300
|
-
# @param LongTermMemoryEnabled:
|
|
13334
|
+
# @param LongTermMemoryEnabled: 是否开启长记忆,默认关闭
|
|
13301
13335
|
# @type LongTermMemoryEnabled: Boolean
|
|
13302
13336
|
# @param SystemPrompt: 系统提示词,仅当未配置LLMConfig时使用
|
|
13303
13337
|
# @type SystemPrompt: String
|
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.
|
|
4
|
+
version: 3.0.1210
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-29 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/models.rb
|
|
37
36
|
- lib/v20190423/client.rb
|
|
37
|
+
- lib/v20190423/models.rb
|
|
38
38
|
- lib/tencentcloud-sdk-iotexplorer.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|