tencentcloud-sdk-tdai 3.0.1140
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 +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-tdai.rb +11 -0
- data/lib/v20250717/client.rb +468 -0
- data/lib/v20250717/models.rb +1348 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cb5cd292c13f81b5a3a3ea17ab83f441ccc1ccf2
|
4
|
+
data.tar.gz: 7f905a1e29c80ba9abb590b8f30a948816b3b690
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d80b0d88c9c84ef29f04ac7bd51e8911710a1fd85142288b033d12a8aaab70b82e2953bcb7bca2e21ac2fa58cf27a8ed889c749defd9be0de6d3fda226b056b5
|
7
|
+
data.tar.gz: 07d5c990282d021897002eb7a6b9fd5cacec6a411ed8bce74166b6fb5596faa0ed6395bed9dcaec895c1e7445b188bcb289190a78f53e6144dbb55e11c52231b
|
data/lib/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.0.1140
|
@@ -0,0 +1,468 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require 'json'
|
18
|
+
|
19
|
+
module TencentCloud
|
20
|
+
module Tdai
|
21
|
+
module V20250717
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2025-07-17'
|
26
|
+
api_endpoint = 'tdai.tencentcloudapi.com'
|
27
|
+
sdk_version = 'TDAI_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 本接口(ContinueAgentWork)用于重启智能体实例的值守任务,通常在用户需要重启时使用。
|
33
|
+
|
34
|
+
# @param request: Request instance for ContinueAgentWork.
|
35
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::ContinueAgentWorkRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::ContinueAgentWorkResponse`
|
37
|
+
def ContinueAgentWork(request)
|
38
|
+
body = send_request('ContinueAgentWork', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = ContinueAgentWorkResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 本接口(CreateAgentInstance)用于创建一个智能体实例,通常在用户购买一个智能体实例时使用。
|
57
|
+
|
58
|
+
# @param request: Request instance for CreateAgentInstance.
|
59
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::CreateAgentInstanceRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::CreateAgentInstanceResponse`
|
61
|
+
def CreateAgentInstance(request)
|
62
|
+
body = send_request('CreateAgentInstance', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateAgentInstanceResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 用于创建一次回话的SSE接口
|
81
|
+
|
82
|
+
# @param request: Request instance for CreateChatCompletion.
|
83
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::CreateChatCompletionRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::CreateChatCompletionResponse`
|
85
|
+
def CreateChatCompletion(request)
|
86
|
+
body = send_request('CreateChatCompletion', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateChatCompletionResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 查询智能体值守任务详情
|
105
|
+
|
106
|
+
# @param request: Request instance for DescribeAgentDutyTaskDetail.
|
107
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeAgentDutyTaskDetailRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeAgentDutyTaskDetailResponse`
|
109
|
+
def DescribeAgentDutyTaskDetail(request)
|
110
|
+
body = send_request('DescribeAgentDutyTaskDetail', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = DescribeAgentDutyTaskDetailResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 查询智能体值守任务列表
|
129
|
+
|
130
|
+
# @param request: Request instance for DescribeAgentDutyTasks.
|
131
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeAgentDutyTasksRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeAgentDutyTasksResponse`
|
133
|
+
def DescribeAgentDutyTasks(request)
|
134
|
+
body = send_request('DescribeAgentDutyTasks', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = DescribeAgentDutyTasksResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
152
|
+
# 本接口(DescribeAgentInstance)用于查询智能体实例详情,通常在用户查询所购买的所有智能体实例详情时使用。
|
153
|
+
|
154
|
+
# @param request: Request instance for DescribeAgentInstance.
|
155
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeAgentInstanceRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeAgentInstanceResponse`
|
157
|
+
def DescribeAgentInstance(request)
|
158
|
+
body = send_request('DescribeAgentInstance', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = DescribeAgentInstanceResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 本接口(DescribeAgentInstances)用于查询智能体实例列表,通常在用户查询所购买的所有智能体列表。
|
177
|
+
|
178
|
+
# @param request: Request instance for DescribeAgentInstances.
|
179
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeAgentInstancesRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeAgentInstancesResponse`
|
181
|
+
def DescribeAgentInstances(request)
|
182
|
+
body = send_request('DescribeAgentInstances', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DescribeAgentInstancesResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 本接口(DescribeAgents)用于查询智能体列表,通常在用户查询所购买的所有智能体列表。
|
201
|
+
|
202
|
+
# @param request: Request instance for DescribeAgents.
|
203
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeAgentsRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeAgentsResponse`
|
205
|
+
def DescribeAgents(request)
|
206
|
+
body = send_request('DescribeAgents', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribeAgentsResponse.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
|
+
|
224
|
+
# 本接口(DescribeChatDetail)用于查询对话详情,通常在用户查询会话的历史记录时使用。
|
225
|
+
|
226
|
+
# @param request: Request instance for DescribeChatDetail.
|
227
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeChatDetailRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeChatDetailResponse`
|
229
|
+
def DescribeChatDetail(request)
|
230
|
+
body = send_request('DescribeChatDetail', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribeChatDetailResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 本接口(DescribeChats)用于查询对话列表,通常在用户查询会话列表时使用。
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeChats.
|
251
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeChatsRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeChatsResponse`
|
253
|
+
def DescribeChats(request)
|
254
|
+
body = send_request('DescribeChats', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeChatsResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
# 智能体报告地址生成并下载
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeReportUrl.
|
275
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::DescribeReportUrlRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::DescribeReportUrlResponse`
|
277
|
+
def DescribeReportUrl(request)
|
278
|
+
body = send_request('DescribeReportUrl', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeReportUrlResponse.new
|
282
|
+
model.deserialize(response['Response'])
|
283
|
+
model
|
284
|
+
else
|
285
|
+
code = response['Response']['Error']['Code']
|
286
|
+
message = response['Response']['Error']['Message']
|
287
|
+
reqid = response['Response']['RequestId']
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
289
|
+
end
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
291
|
+
raise e
|
292
|
+
rescue StandardError => e
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
294
|
+
end
|
295
|
+
|
296
|
+
# 本接口(IsolateAgentInstance)用于隔离智能体实例,通常在用户需要隔离智能体实例时使用。
|
297
|
+
|
298
|
+
# @param request: Request instance for IsolateAgentInstance.
|
299
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::IsolateAgentInstanceRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::IsolateAgentInstanceResponse`
|
301
|
+
def IsolateAgentInstance(request)
|
302
|
+
body = send_request('IsolateAgentInstance', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = IsolateAgentInstanceResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 本接口(ModifyAgentInstanceParameters)用于修改智能体实例的参数列表,通常在用户需要配置智能体实例时使用。
|
321
|
+
|
322
|
+
# @param request: Request instance for ModifyAgentInstanceParameters.
|
323
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::ModifyAgentInstanceParametersRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::ModifyAgentInstanceParametersResponse`
|
325
|
+
def ModifyAgentInstanceParameters(request)
|
326
|
+
body = send_request('ModifyAgentInstanceParameters', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = ModifyAgentInstanceParametersResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
344
|
+
# 本接口(ModifyChatTitle)用于修改会话标题,通常在用户修改会话标题时使用。
|
345
|
+
|
346
|
+
# @param request: Request instance for ModifyChatTitle.
|
347
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::ModifyChatTitleRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::ModifyChatTitleResponse`
|
349
|
+
def ModifyChatTitle(request)
|
350
|
+
body = send_request('ModifyChatTitle', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = ModifyChatTitleResponse.new
|
354
|
+
model.deserialize(response['Response'])
|
355
|
+
model
|
356
|
+
else
|
357
|
+
code = response['Response']['Error']['Code']
|
358
|
+
message = response['Response']['Error']['Message']
|
359
|
+
reqid = response['Response']['RequestId']
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
361
|
+
end
|
362
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
363
|
+
raise e
|
364
|
+
rescue StandardError => e
|
365
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
366
|
+
end
|
367
|
+
|
368
|
+
# 本接口(PauseAgentWork)用于暂停智能体实例的值守任务,通常在用户需要暂停时使用。
|
369
|
+
|
370
|
+
# @param request: Request instance for PauseAgentWork.
|
371
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::PauseAgentWorkRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::PauseAgentWorkResponse`
|
373
|
+
def PauseAgentWork(request)
|
374
|
+
body = send_request('PauseAgentWork', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = PauseAgentWorkResponse.new
|
378
|
+
model.deserialize(response['Response'])
|
379
|
+
model
|
380
|
+
else
|
381
|
+
code = response['Response']['Error']['Code']
|
382
|
+
message = response['Response']['Error']['Message']
|
383
|
+
reqid = response['Response']['RequestId']
|
384
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
385
|
+
end
|
386
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
387
|
+
raise e
|
388
|
+
rescue StandardError => e
|
389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
390
|
+
end
|
391
|
+
|
392
|
+
# 本接口(RecoverAgentInstance)用于解隔离智能体实例,通常在用户需要解隔离智能体实例时使用。
|
393
|
+
|
394
|
+
# @param request: Request instance for RecoverAgentInstance.
|
395
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::RecoverAgentInstanceRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::RecoverAgentInstanceResponse`
|
397
|
+
def RecoverAgentInstance(request)
|
398
|
+
body = send_request('RecoverAgentInstance', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = RecoverAgentInstanceResponse.new
|
402
|
+
model.deserialize(response['Response'])
|
403
|
+
model
|
404
|
+
else
|
405
|
+
code = response['Response']['Error']['Code']
|
406
|
+
message = response['Response']['Error']['Message']
|
407
|
+
reqid = response['Response']['RequestId']
|
408
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
409
|
+
end
|
410
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
411
|
+
raise e
|
412
|
+
rescue StandardError => e
|
413
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
414
|
+
end
|
415
|
+
|
416
|
+
# 本接口(RemoveChat)用于删除会话,通常在用户删除会话时使用。
|
417
|
+
|
418
|
+
# @param request: Request instance for RemoveChat.
|
419
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::RemoveChatRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::RemoveChatResponse`
|
421
|
+
def RemoveChat(request)
|
422
|
+
body = send_request('RemoveChat', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = RemoveChatResponse.new
|
426
|
+
model.deserialize(response['Response'])
|
427
|
+
model
|
428
|
+
else
|
429
|
+
code = response['Response']['Error']['Code']
|
430
|
+
message = response['Response']['Error']['Message']
|
431
|
+
reqid = response['Response']['RequestId']
|
432
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
433
|
+
end
|
434
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
435
|
+
raise e
|
436
|
+
rescue StandardError => e
|
437
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
438
|
+
end
|
439
|
+
|
440
|
+
# 本接口(TerminateAgentInstance)用于下线智能体实例,通常在用户需要下线智能体实例时使用。
|
441
|
+
|
442
|
+
# @param request: Request instance for TerminateAgentInstance.
|
443
|
+
# @type request: :class:`Tencentcloud::tdai::V20250717::TerminateAgentInstanceRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::tdai::V20250717::TerminateAgentInstanceResponse`
|
445
|
+
def TerminateAgentInstance(request)
|
446
|
+
body = send_request('TerminateAgentInstance', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = TerminateAgentInstanceResponse.new
|
450
|
+
model.deserialize(response['Response'])
|
451
|
+
model
|
452
|
+
else
|
453
|
+
code = response['Response']['Error']['Code']
|
454
|
+
message = response['Response']['Error']['Message']
|
455
|
+
reqid = response['Response']['RequestId']
|
456
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
457
|
+
end
|
458
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
459
|
+
raise e
|
460
|
+
rescue StandardError => e
|
461
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
462
|
+
end
|
463
|
+
|
464
|
+
|
465
|
+
end
|
466
|
+
end
|
467
|
+
end
|
468
|
+
end
|