aws-sdk-qconnect 1.49.0 → 1.50.0
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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qconnect/client.rb +3 -3
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e1459507c28c58df93faa4a5b7166dbbc193809a09006f8b42145d5a31f0261
|
|
4
|
+
data.tar.gz: b301892663cfb5df1a9bb525ba7ff8e5c612820db4185e0a9109530727ac28e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 42682754281325540df037213acd19b481bb9952c7f1b773fd7d6a4b79dffeccd86acc9cdbb9314308dde1ea703afb19176d9a400c654dfe75680e4637f1d7e2
|
|
7
|
+
data.tar.gz: 9be9d6a2a47f884f92af9bad8ad7c79fe36690f7229754208cf9c26b7b5f2e383d13c2fc3d3f0b14fade055485ad6f8ebc7eb572beb7734dcd2d9f6513ee7b41
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.50.0
|
|
@@ -4577,7 +4577,7 @@ module Aws::QConnect
|
|
|
4577
4577
|
#
|
|
4578
4578
|
# @example Response structure
|
|
4579
4579
|
#
|
|
4580
|
-
# resp.type #=> String, one of "TEXT"
|
|
4580
|
+
# resp.type #=> String, one of "TEXT", "TOOL_USE_RESULT"
|
|
4581
4581
|
# resp.response.value.text.value #=> String
|
|
4582
4582
|
# resp.response.value.text.citations #=> Array
|
|
4583
4583
|
# resp.response.value.text.citations[0].content_id #=> String
|
|
@@ -7309,7 +7309,7 @@ module Aws::QConnect
|
|
|
7309
7309
|
# resp = client.send_message({
|
|
7310
7310
|
# assistant_id: "UuidOrArn", # required
|
|
7311
7311
|
# session_id: "UuidOrArn", # required
|
|
7312
|
-
# type: "TEXT", # required, accepts TEXT
|
|
7312
|
+
# type: "TEXT", # required, accepts TEXT, TOOL_USE_RESULT
|
|
7313
7313
|
# message: { # required
|
|
7314
7314
|
# value: { # required
|
|
7315
7315
|
# text: {
|
|
@@ -9453,7 +9453,7 @@ module Aws::QConnect
|
|
|
9453
9453
|
tracer: tracer
|
|
9454
9454
|
)
|
|
9455
9455
|
context[:gem_name] = 'aws-sdk-qconnect'
|
|
9456
|
-
context[:gem_version] = '1.
|
|
9456
|
+
context[:gem_version] = '1.50.0'
|
|
9457
9457
|
Seahorse::Client::Request.new(handlers, context)
|
|
9458
9458
|
end
|
|
9459
9459
|
|
data/lib/aws-sdk-qconnect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1271,7 +1271,7 @@ module Aws
|
|
|
1271
1271
|
|
|
1272
1272
|
interface _GetNextMessageResponseSuccess
|
|
1273
1273
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNextMessageResponse]
|
|
1274
|
-
def type: () -> ("TEXT")
|
|
1274
|
+
def type: () -> ("TEXT" | "TOOL_USE_RESULT")
|
|
1275
1275
|
def response: () -> Types::MessageOutput
|
|
1276
1276
|
def request_message_id: () -> ::String
|
|
1277
1277
|
def conversation_state: () -> Types::ConversationState
|
|
@@ -1954,7 +1954,7 @@ module Aws
|
|
|
1954
1954
|
def send_message: (
|
|
1955
1955
|
assistant_id: ::String,
|
|
1956
1956
|
session_id: ::String,
|
|
1957
|
-
type: ("TEXT"),
|
|
1957
|
+
type: ("TEXT" | "TOOL_USE_RESULT"),
|
|
1958
1958
|
message: {
|
|
1959
1959
|
value: {
|
|
1960
1960
|
text: {
|
data/sig/types.rbs
CHANGED
|
@@ -1406,7 +1406,7 @@ module Aws::QConnect
|
|
|
1406
1406
|
end
|
|
1407
1407
|
|
|
1408
1408
|
class GetNextMessageResponse
|
|
1409
|
-
attr_accessor type: ("TEXT")
|
|
1409
|
+
attr_accessor type: ("TEXT" | "TOOL_USE_RESULT")
|
|
1410
1410
|
attr_accessor response: Types::MessageOutput
|
|
1411
1411
|
attr_accessor request_message_id: ::String
|
|
1412
1412
|
attr_accessor conversation_state: Types::ConversationState
|
|
@@ -2722,7 +2722,7 @@ module Aws::QConnect
|
|
|
2722
2722
|
class SendMessageRequest
|
|
2723
2723
|
attr_accessor assistant_id: ::String
|
|
2724
2724
|
attr_accessor session_id: ::String
|
|
2725
|
-
attr_accessor type: ("TEXT")
|
|
2725
|
+
attr_accessor type: ("TEXT" | "TOOL_USE_RESULT")
|
|
2726
2726
|
attr_accessor message: Types::MessageInput
|
|
2727
2727
|
attr_accessor ai_agent_id: ::String
|
|
2728
2728
|
attr_accessor conversation_context: Types::ConversationContext
|