aws-sdk-qconnect 1.43.0 → 1.44.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 +794 -28
- data/lib/aws-sdk-qconnect/client_api.rb +473 -1
- data/lib/aws-sdk-qconnect/errors.rb +16 -0
- data/lib/aws-sdk-qconnect/types.rb +1509 -32
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +315 -22
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +475 -19
- metadata +1 -1
|
@@ -568,7 +568,7 @@ module Aws::QConnect
|
|
|
568
568
|
# client_token: "ClientToken",
|
|
569
569
|
# assistant_id: "UuidOrArn", # required
|
|
570
570
|
# name: "Name", # required
|
|
571
|
-
# type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER
|
|
571
|
+
# type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
572
572
|
# configuration: { # required
|
|
573
573
|
# manual_search_ai_agent_configuration: {
|
|
574
574
|
# answer_generation_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -657,6 +657,7 @@ module Aws::QConnect
|
|
|
657
657
|
# },
|
|
658
658
|
# ],
|
|
659
659
|
# locale: "NonEmptyString",
|
|
660
|
+
# suggested_messages: ["NonEmptySensitiveString"],
|
|
660
661
|
# },
|
|
661
662
|
# self_service_ai_agent_configuration: {
|
|
662
663
|
# self_service_pre_processing_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -791,6 +792,66 @@ module Aws::QConnect
|
|
|
791
792
|
# },
|
|
792
793
|
# ],
|
|
793
794
|
# },
|
|
795
|
+
# orchestration_ai_agent_configuration: {
|
|
796
|
+
# orchestration_ai_prompt_id: "UuidWithQualifier", # required
|
|
797
|
+
# orchestration_ai_guardrail_id: "UuidWithQualifier",
|
|
798
|
+
# tool_configurations: [
|
|
799
|
+
# {
|
|
800
|
+
# tool_name: "NonEmptyString", # required
|
|
801
|
+
# tool_type: "MODEL_CONTEXT_PROTOCOL", # required, accepts MODEL_CONTEXT_PROTOCOL, RETURN_TO_CONTROL, CONSTANT
|
|
802
|
+
# title: "NonEmptyString",
|
|
803
|
+
# tool_id: "NonEmptyString",
|
|
804
|
+
# description: "String",
|
|
805
|
+
# instruction: {
|
|
806
|
+
# instruction: "String",
|
|
807
|
+
# examples: ["String"],
|
|
808
|
+
# },
|
|
809
|
+
# override_input_values: [
|
|
810
|
+
# {
|
|
811
|
+
# json_path: "NonEmptyString", # required
|
|
812
|
+
# value: { # required
|
|
813
|
+
# constant: {
|
|
814
|
+
# type: "STRING", # required, accepts STRING, NUMBER, JSON_STRING
|
|
815
|
+
# value: "NonEmptySensitiveString", # required
|
|
816
|
+
# },
|
|
817
|
+
# },
|
|
818
|
+
# },
|
|
819
|
+
# ],
|
|
820
|
+
# output_filters: [
|
|
821
|
+
# {
|
|
822
|
+
# json_path: "NonEmptyString", # required
|
|
823
|
+
# output_configuration: {
|
|
824
|
+
# output_variable_name_override: "NonEmptyString",
|
|
825
|
+
# session_data_namespace: "NonEmptyString",
|
|
826
|
+
# },
|
|
827
|
+
# },
|
|
828
|
+
# ],
|
|
829
|
+
# input_schema: {
|
|
830
|
+
# },
|
|
831
|
+
# output_schema: {
|
|
832
|
+
# },
|
|
833
|
+
# annotations: {
|
|
834
|
+
# title: "String",
|
|
835
|
+
# destructive_hint: false,
|
|
836
|
+
# },
|
|
837
|
+
# user_interaction_configuration: {
|
|
838
|
+
# is_user_confirmation_required: false,
|
|
839
|
+
# },
|
|
840
|
+
# },
|
|
841
|
+
# ],
|
|
842
|
+
# connect_instance_arn: "GenericArn",
|
|
843
|
+
# locale: "NonEmptyString",
|
|
844
|
+
# },
|
|
845
|
+
# note_taking_ai_agent_configuration: {
|
|
846
|
+
# note_taking_ai_prompt_id: "UuidWithQualifier",
|
|
847
|
+
# note_taking_ai_guardrail_id: "UuidWithQualifier",
|
|
848
|
+
# locale: "NonEmptyString",
|
|
849
|
+
# },
|
|
850
|
+
# case_summarization_ai_agent_configuration: {
|
|
851
|
+
# case_summarization_ai_prompt_id: "UuidWithQualifier",
|
|
852
|
+
# case_summarization_ai_guardrail_id: "UuidWithQualifier",
|
|
853
|
+
# locale: "NonEmptyString",
|
|
854
|
+
# },
|
|
794
855
|
# },
|
|
795
856
|
# visibility_status: "SAVED", # required, accepts SAVED, PUBLISHED
|
|
796
857
|
# tags: {
|
|
@@ -806,7 +867,7 @@ module Aws::QConnect
|
|
|
806
867
|
# resp.ai_agent.ai_agent_id #=> String
|
|
807
868
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
808
869
|
# resp.ai_agent.name #=> String
|
|
809
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
870
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
810
871
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
811
872
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
812
873
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -847,6 +908,8 @@ module Aws::QConnect
|
|
|
847
908
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
848
909
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
849
910
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
911
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
912
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
850
913
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
851
914
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
852
915
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -906,6 +969,36 @@ module Aws::QConnect
|
|
|
906
969
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
907
970
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
908
971
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
972
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
973
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
974
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
975
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
976
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
977
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
978
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
979
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
980
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
981
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
982
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
983
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
984
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
985
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
986
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
987
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
988
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
989
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
990
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
991
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
992
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
993
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
994
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
995
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
996
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
997
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
998
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
999
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
1000
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
1001
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
909
1002
|
# resp.ai_agent.modified_time #=> Time
|
|
910
1003
|
# resp.ai_agent.description #=> String
|
|
911
1004
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -974,7 +1067,7 @@ module Aws::QConnect
|
|
|
974
1067
|
# resp.ai_agent.ai_agent_id #=> String
|
|
975
1068
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
976
1069
|
# resp.ai_agent.name #=> String
|
|
977
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
1070
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
978
1071
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
979
1072
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
980
1073
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -1015,6 +1108,8 @@ module Aws::QConnect
|
|
|
1015
1108
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
1016
1109
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
1017
1110
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
1111
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
1112
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
1018
1113
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
1019
1114
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
1020
1115
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -1074,6 +1169,36 @@ module Aws::QConnect
|
|
|
1074
1169
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
1075
1170
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
1076
1171
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
1172
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
1173
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
1174
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
1175
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
1176
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
1177
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
1178
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
1179
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
1180
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
1181
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
1182
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
1183
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
1184
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
1185
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
1186
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
1187
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
1188
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
1189
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
1190
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
1191
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
1192
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
1193
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
1194
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
1195
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
1196
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
1197
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
1198
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
1199
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
1200
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
1201
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
1077
1202
|
# resp.ai_agent.modified_time #=> Time
|
|
1078
1203
|
# resp.ai_agent.description #=> String
|
|
1079
1204
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -1421,6 +1546,9 @@ module Aws::QConnect
|
|
|
1421
1546
|
# @option params [String] :description
|
|
1422
1547
|
# The description of the AI Prompt.
|
|
1423
1548
|
#
|
|
1549
|
+
# @option params [Types::AIPromptInferenceConfiguration] :inference_configuration
|
|
1550
|
+
# The inference configuration for the AI Prompt being created.
|
|
1551
|
+
#
|
|
1424
1552
|
# @return [Types::CreateAIPromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1425
1553
|
#
|
|
1426
1554
|
# * {Types::CreateAIPromptResponse#ai_prompt #ai_prompt} => Types::AIPromptData
|
|
@@ -1431,7 +1559,7 @@ module Aws::QConnect
|
|
|
1431
1559
|
# client_token: "ClientToken",
|
|
1432
1560
|
# assistant_id: "UuidOrArn", # required
|
|
1433
1561
|
# name: "Name", # required
|
|
1434
|
-
# type: "ANSWER_GENERATION", # required, accepts ANSWER_GENERATION, INTENT_LABELING_GENERATION, QUERY_REFORMULATION, SELF_SERVICE_PRE_PROCESSING, SELF_SERVICE_ANSWER_GENERATION, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, EMAIL_QUERY_REFORMULATION
|
|
1562
|
+
# type: "ANSWER_GENERATION", # required, accepts ANSWER_GENERATION, INTENT_LABELING_GENERATION, QUERY_REFORMULATION, SELF_SERVICE_PRE_PROCESSING, SELF_SERVICE_ANSWER_GENERATION, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, EMAIL_QUERY_REFORMULATION, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
1435
1563
|
# template_configuration: { # required
|
|
1436
1564
|
# text_full_ai_prompt_edit_template_configuration: {
|
|
1437
1565
|
# text: "TextAIPrompt", # required
|
|
@@ -1445,6 +1573,14 @@ module Aws::QConnect
|
|
|
1445
1573
|
# "TagKey" => "TagValue",
|
|
1446
1574
|
# },
|
|
1447
1575
|
# description: "Description",
|
|
1576
|
+
# inference_configuration: {
|
|
1577
|
+
# text_ai_prompt_inference_configuration: {
|
|
1578
|
+
# temperature: 1.0,
|
|
1579
|
+
# top_p: 1.0,
|
|
1580
|
+
# top_k: 1,
|
|
1581
|
+
# max_tokens_to_sample: 1,
|
|
1582
|
+
# },
|
|
1583
|
+
# },
|
|
1448
1584
|
# })
|
|
1449
1585
|
#
|
|
1450
1586
|
# @example Response structure
|
|
@@ -1454,11 +1590,15 @@ module Aws::QConnect
|
|
|
1454
1590
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
1455
1591
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
1456
1592
|
# resp.ai_prompt.name #=> String
|
|
1457
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
1593
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
1458
1594
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
1459
1595
|
# resp.ai_prompt.model_id #=> String
|
|
1460
1596
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
1461
1597
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
1598
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
1599
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
1600
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
1601
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
1462
1602
|
# resp.ai_prompt.modified_time #=> Time
|
|
1463
1603
|
# resp.ai_prompt.description #=> String
|
|
1464
1604
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -1522,11 +1662,15 @@ module Aws::QConnect
|
|
|
1522
1662
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
1523
1663
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
1524
1664
|
# resp.ai_prompt.name #=> String
|
|
1525
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
1665
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
1526
1666
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
1527
1667
|
# resp.ai_prompt.model_id #=> String
|
|
1528
1668
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
1529
1669
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
1670
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
1671
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
1672
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
1673
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
1530
1674
|
# resp.ai_prompt.modified_time #=> Time
|
|
1531
1675
|
# resp.ai_prompt.description #=> String
|
|
1532
1676
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -1626,6 +1770,9 @@ module Aws::QConnect
|
|
|
1626
1770
|
# resp.assistant.capability_configuration.type #=> String, one of "V1", "V2"
|
|
1627
1771
|
# resp.assistant.ai_agent_configuration #=> Hash
|
|
1628
1772
|
# resp.assistant.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
1773
|
+
# resp.assistant.orchestrator_configuration_list #=> Array
|
|
1774
|
+
# resp.assistant.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
1775
|
+
# resp.assistant.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
1629
1776
|
#
|
|
1630
1777
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/CreateAssistant AWS API Documentation
|
|
1631
1778
|
#
|
|
@@ -1674,9 +1821,13 @@ module Aws::QConnect
|
|
|
1674
1821
|
#
|
|
1675
1822
|
# resp = client.create_assistant_association({
|
|
1676
1823
|
# assistant_id: "UuidOrArn", # required
|
|
1677
|
-
# association_type: "KNOWLEDGE_BASE", # required, accepts KNOWLEDGE_BASE
|
|
1824
|
+
# association_type: "KNOWLEDGE_BASE", # required, accepts KNOWLEDGE_BASE, EXTERNAL_BEDROCK_KNOWLEDGE_BASE
|
|
1678
1825
|
# association: { # required
|
|
1679
1826
|
# knowledge_base_id: "Uuid",
|
|
1827
|
+
# external_bedrock_knowledge_base_config: {
|
|
1828
|
+
# bedrock_knowledge_base_arn: "BedrockKnowledgeBaseArn", # required
|
|
1829
|
+
# access_role_arn: "AccessRoleArn", # required
|
|
1830
|
+
# },
|
|
1680
1831
|
# },
|
|
1681
1832
|
# client_token: "ClientToken",
|
|
1682
1833
|
# tags: {
|
|
@@ -1690,9 +1841,11 @@ module Aws::QConnect
|
|
|
1690
1841
|
# resp.assistant_association.assistant_association_arn #=> String
|
|
1691
1842
|
# resp.assistant_association.assistant_id #=> String
|
|
1692
1843
|
# resp.assistant_association.assistant_arn #=> String
|
|
1693
|
-
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE"
|
|
1844
|
+
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE", "EXTERNAL_BEDROCK_KNOWLEDGE_BASE"
|
|
1694
1845
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_id #=> String
|
|
1695
1846
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_arn #=> String
|
|
1847
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.bedrock_knowledge_base_arn #=> String
|
|
1848
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.access_role_arn #=> String
|
|
1696
1849
|
# resp.assistant_association.tags #=> Hash
|
|
1697
1850
|
# resp.assistant_association.tags["TagKey"] #=> String
|
|
1698
1851
|
#
|
|
@@ -2958,6 +3111,12 @@ module Aws::QConnect
|
|
|
2958
3111
|
# Used to retrieve email content and establish session context for
|
|
2959
3112
|
# AI-powered email assistance.
|
|
2960
3113
|
#
|
|
3114
|
+
# @option params [Array<Types::OrchestratorConfigurationEntry>] :orchestrator_configuration_list
|
|
3115
|
+
# The list of orchestrator configurations for the session being created.
|
|
3116
|
+
#
|
|
3117
|
+
# @option params [Boolean] :remove_orchestrator_configuration_list
|
|
3118
|
+
# The list of orchestrator configurations to remove from the session.
|
|
3119
|
+
#
|
|
2961
3120
|
# @return [Types::CreateSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2962
3121
|
#
|
|
2963
3122
|
# * {Types::CreateSessionResponse#session #session} => Types::SessionData
|
|
@@ -3004,6 +3163,13 @@ module Aws::QConnect
|
|
|
3004
3163
|
# },
|
|
3005
3164
|
# },
|
|
3006
3165
|
# contact_arn: "GenericArn",
|
|
3166
|
+
# orchestrator_configuration_list: [
|
|
3167
|
+
# {
|
|
3168
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
3169
|
+
# orchestrator_use_case: "NonEmptyString", # required
|
|
3170
|
+
# },
|
|
3171
|
+
# ],
|
|
3172
|
+
# remove_orchestrator_configuration_list: false,
|
|
3007
3173
|
# })
|
|
3008
3174
|
#
|
|
3009
3175
|
# @example Response structure
|
|
@@ -3029,6 +3195,9 @@ module Aws::QConnect
|
|
|
3029
3195
|
# resp.session.ai_agent_configuration #=> Hash
|
|
3030
3196
|
# resp.session.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
3031
3197
|
# resp.session.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
3198
|
+
# resp.session.orchestrator_configuration_list #=> Array
|
|
3199
|
+
# resp.session.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
3200
|
+
# resp.session.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
3032
3201
|
#
|
|
3033
3202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/CreateSession AWS API Documentation
|
|
3034
3203
|
#
|
|
@@ -3568,7 +3737,7 @@ module Aws::QConnect
|
|
|
3568
3737
|
# resp.ai_agent.ai_agent_id #=> String
|
|
3569
3738
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
3570
3739
|
# resp.ai_agent.name #=> String
|
|
3571
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
3740
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
3572
3741
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
3573
3742
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
3574
3743
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -3609,6 +3778,8 @@ module Aws::QConnect
|
|
|
3609
3778
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
3610
3779
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
3611
3780
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
3781
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
3782
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
3612
3783
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
3613
3784
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
3614
3785
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -3668,6 +3839,36 @@ module Aws::QConnect
|
|
|
3668
3839
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
3669
3840
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
3670
3841
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
3842
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
3843
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
3844
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
3845
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
3846
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
3847
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
3848
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
3849
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
3850
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
3851
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
3852
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
3853
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
3854
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
3855
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
3856
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
3857
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
3858
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
3859
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
3860
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
3861
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
3862
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
3863
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
3864
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
3865
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
3866
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
3867
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
3868
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
3869
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
3870
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
3871
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
3671
3872
|
# resp.ai_agent.modified_time #=> Time
|
|
3672
3873
|
# resp.ai_agent.description #=> String
|
|
3673
3874
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -3786,11 +3987,15 @@ module Aws::QConnect
|
|
|
3786
3987
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
3787
3988
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
3788
3989
|
# resp.ai_prompt.name #=> String
|
|
3789
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
3990
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
3790
3991
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
3791
3992
|
# resp.ai_prompt.model_id #=> String
|
|
3792
3993
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
3793
3994
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
3995
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
3996
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
3997
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
3998
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
3794
3999
|
# resp.ai_prompt.modified_time #=> Time
|
|
3795
4000
|
# resp.ai_prompt.description #=> String
|
|
3796
4001
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -3840,6 +4045,9 @@ module Aws::QConnect
|
|
|
3840
4045
|
# resp.assistant.capability_configuration.type #=> String, one of "V1", "V2"
|
|
3841
4046
|
# resp.assistant.ai_agent_configuration #=> Hash
|
|
3842
4047
|
# resp.assistant.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
4048
|
+
# resp.assistant.orchestrator_configuration_list #=> Array
|
|
4049
|
+
# resp.assistant.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
4050
|
+
# resp.assistant.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
3843
4051
|
#
|
|
3844
4052
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/GetAssistant AWS API Documentation
|
|
3845
4053
|
#
|
|
@@ -3877,9 +4085,11 @@ module Aws::QConnect
|
|
|
3877
4085
|
# resp.assistant_association.assistant_association_arn #=> String
|
|
3878
4086
|
# resp.assistant_association.assistant_id #=> String
|
|
3879
4087
|
# resp.assistant_association.assistant_arn #=> String
|
|
3880
|
-
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE"
|
|
4088
|
+
# resp.assistant_association.association_type #=> String, one of "KNOWLEDGE_BASE", "EXTERNAL_BEDROCK_KNOWLEDGE_BASE"
|
|
3881
4089
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_id #=> String
|
|
3882
4090
|
# resp.assistant_association.association_data.knowledge_base_association.knowledge_base_arn #=> String
|
|
4091
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.bedrock_knowledge_base_arn #=> String
|
|
4092
|
+
# resp.assistant_association.association_data.external_bedrock_knowledge_base_config.access_role_arn #=> String
|
|
3883
4093
|
# resp.assistant_association.tags #=> Hash
|
|
3884
4094
|
# resp.assistant_association.tags["TagKey"] #=> String
|
|
3885
4095
|
#
|
|
@@ -4357,6 +4567,7 @@ module Aws::QConnect
|
|
|
4357
4567
|
# * {Types::GetNextMessageResponse#conversation_state #conversation_state} => Types::ConversationState
|
|
4358
4568
|
# * {Types::GetNextMessageResponse#next_message_token #next_message_token} => String
|
|
4359
4569
|
# * {Types::GetNextMessageResponse#conversation_session_data #conversation_session_data} => Array<Types::RuntimeSessionData>
|
|
4570
|
+
# * {Types::GetNextMessageResponse#chunked_response_terminated #chunked_response_terminated} => Boolean
|
|
4360
4571
|
#
|
|
4361
4572
|
# @example Request syntax with placeholder values
|
|
4362
4573
|
#
|
|
@@ -4370,6 +4581,17 @@ module Aws::QConnect
|
|
|
4370
4581
|
#
|
|
4371
4582
|
# resp.type #=> String, one of "TEXT"
|
|
4372
4583
|
# resp.response.value.text.value #=> String
|
|
4584
|
+
# resp.response.value.text.citations #=> Array
|
|
4585
|
+
# resp.response.value.text.citations[0].content_id #=> String
|
|
4586
|
+
# resp.response.value.text.citations[0].title #=> String
|
|
4587
|
+
# resp.response.value.text.citations[0].knowledge_base_id #=> String
|
|
4588
|
+
# resp.response.value.text.citations[0].citation_span.begin_offset_inclusive #=> Integer
|
|
4589
|
+
# resp.response.value.text.citations[0].citation_span.end_offset_exclusive #=> Integer
|
|
4590
|
+
# resp.response.value.text.citations[0].source_url #=> String
|
|
4591
|
+
# resp.response.value.text.citations[0].reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
4592
|
+
# resp.response.value.text.ai_guardrail_assessment.blocked #=> Boolean
|
|
4593
|
+
# resp.response.value.tool_use_result.tool_use_id #=> String
|
|
4594
|
+
# resp.response.value.tool_use_result.tool_name #=> String
|
|
4373
4595
|
# resp.response.message_id #=> String
|
|
4374
4596
|
# resp.response.participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
4375
4597
|
# resp.response.timestamp #=> Time
|
|
@@ -4380,6 +4602,7 @@ module Aws::QConnect
|
|
|
4380
4602
|
# resp.conversation_session_data #=> Array
|
|
4381
4603
|
# resp.conversation_session_data[0].key #=> String
|
|
4382
4604
|
# resp.conversation_session_data[0].value.string_value #=> String
|
|
4605
|
+
# resp.chunked_response_terminated #=> Boolean
|
|
4383
4606
|
#
|
|
4384
4607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/GetNextMessage AWS API Documentation
|
|
4385
4608
|
#
|
|
@@ -4487,6 +4710,9 @@ module Aws::QConnect
|
|
|
4487
4710
|
# previous response in the next request to retrieve the next set of
|
|
4488
4711
|
# chunks.
|
|
4489
4712
|
#
|
|
4713
|
+
# @option params [String] :recommendation_type
|
|
4714
|
+
# The type of recommendation being requested.
|
|
4715
|
+
#
|
|
4490
4716
|
# @return [Types::GetRecommendationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4491
4717
|
#
|
|
4492
4718
|
# * {Types::GetRecommendationsResponse#recommendations #recommendations} => Array<Types::RecommendationData>
|
|
@@ -4500,6 +4726,7 @@ module Aws::QConnect
|
|
|
4500
4726
|
# max_results: 1,
|
|
4501
4727
|
# wait_time_seconds: 1,
|
|
4502
4728
|
# next_chunk_token: "NextToken",
|
|
4729
|
+
# recommendation_type: "KNOWLEDGE_CONTENT", # accepts KNOWLEDGE_CONTENT, GENERATIVE_RESPONSE, GENERATIVE_ANSWER, DETECTED_INTENT, GENERATIVE_ANSWER_CHUNK, BLOCKED_GENERATIVE_ANSWER_CHUNK, INTENT_ANSWER_CHUNK, BLOCKED_INTENT_ANSWER_CHUNK, EMAIL_RESPONSE_CHUNK, EMAIL_OVERVIEW_CHUNK, EMAIL_GENERATIVE_ANSWER_CHUNK, CASE_SUMMARIZATION_CHUNK, BLOCKED_CASE_SUMMARIZATION_CHUNK, SUGGESTED_MESSAGE, NOTES_CHUNK, BLOCKED_NOTES_CHUNK
|
|
4503
4730
|
# })
|
|
4504
4731
|
#
|
|
4505
4732
|
# @example Response structure
|
|
@@ -4511,7 +4738,7 @@ module Aws::QConnect
|
|
|
4511
4738
|
# resp.recommendations[0].document.content_reference.content_arn #=> String
|
|
4512
4739
|
# resp.recommendations[0].document.content_reference.content_id #=> String
|
|
4513
4740
|
# resp.recommendations[0].document.content_reference.source_url #=> String
|
|
4514
|
-
# resp.recommendations[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
4741
|
+
# resp.recommendations[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
4515
4742
|
# resp.recommendations[0].document.title.text #=> String
|
|
4516
4743
|
# resp.recommendations[0].document.title.highlights #=> Array
|
|
4517
4744
|
# resp.recommendations[0].document.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -4522,15 +4749,17 @@ module Aws::QConnect
|
|
|
4522
4749
|
# resp.recommendations[0].document.excerpt.highlights[0].end_offset_exclusive #=> Integer
|
|
4523
4750
|
# resp.recommendations[0].relevance_score #=> Float
|
|
4524
4751
|
# resp.recommendations[0].relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
4525
|
-
# resp.recommendations[0].type #=> String, one of "KNOWLEDGE_CONTENT", "GENERATIVE_RESPONSE", "GENERATIVE_ANSWER", "DETECTED_INTENT", "GENERATIVE_ANSWER_CHUNK", "BLOCKED_GENERATIVE_ANSWER_CHUNK", "INTENT_ANSWER_CHUNK", "BLOCKED_INTENT_ANSWER_CHUNK", "EMAIL_RESPONSE_CHUNK", "EMAIL_OVERVIEW_CHUNK", "EMAIL_GENERATIVE_ANSWER_CHUNK"
|
|
4752
|
+
# resp.recommendations[0].type #=> String, one of "KNOWLEDGE_CONTENT", "GENERATIVE_RESPONSE", "GENERATIVE_ANSWER", "DETECTED_INTENT", "GENERATIVE_ANSWER_CHUNK", "BLOCKED_GENERATIVE_ANSWER_CHUNK", "INTENT_ANSWER_CHUNK", "BLOCKED_INTENT_ANSWER_CHUNK", "EMAIL_RESPONSE_CHUNK", "EMAIL_OVERVIEW_CHUNK", "EMAIL_GENERATIVE_ANSWER_CHUNK", "CASE_SUMMARIZATION_CHUNK", "BLOCKED_CASE_SUMMARIZATION_CHUNK", "SUGGESTED_MESSAGE", "NOTES_CHUNK", "BLOCKED_NOTES_CHUNK"
|
|
4526
4753
|
# resp.recommendations[0].data.reference.content_reference.knowledge_base_arn #=> String
|
|
4527
4754
|
# resp.recommendations[0].data.reference.content_reference.knowledge_base_id #=> String
|
|
4528
4755
|
# resp.recommendations[0].data.reference.content_reference.content_arn #=> String
|
|
4529
4756
|
# resp.recommendations[0].data.reference.content_reference.content_id #=> String
|
|
4530
4757
|
# resp.recommendations[0].data.reference.content_reference.source_url #=> String
|
|
4531
|
-
# resp.recommendations[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
4758
|
+
# resp.recommendations[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
4532
4759
|
# resp.recommendations[0].data.reference.generative_reference.model_id #=> String
|
|
4533
4760
|
# resp.recommendations[0].data.reference.generative_reference.generation_id #=> String
|
|
4761
|
+
# resp.recommendations[0].data.reference.suggested_message_reference.ai_agent_id #=> String
|
|
4762
|
+
# resp.recommendations[0].data.reference.suggested_message_reference.ai_agent_arn #=> String
|
|
4534
4763
|
# resp.recommendations[0].data.details.content_data.text_data.title.text #=> String
|
|
4535
4764
|
# resp.recommendations[0].data.details.content_data.text_data.title.highlights #=> Array
|
|
4536
4765
|
# resp.recommendations[0].data.details.content_data.text_data.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -4548,6 +4777,7 @@ module Aws::QConnect
|
|
|
4548
4777
|
# resp.recommendations[0].data.details.generative_data.ranking_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
4549
4778
|
# resp.recommendations[0].data.details.intent_detected_data.intent #=> String
|
|
4550
4779
|
# resp.recommendations[0].data.details.intent_detected_data.intent_id #=> String
|
|
4780
|
+
# resp.recommendations[0].data.details.intent_detected_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
4551
4781
|
# resp.recommendations[0].data.details.source_content_data.id #=> String
|
|
4552
4782
|
# resp.recommendations[0].data.details.source_content_data.type #=> String, one of "KNOWLEDGE_CONTENT"
|
|
4553
4783
|
# resp.recommendations[0].data.details.source_content_data.text_data.title.text #=> String
|
|
@@ -4574,6 +4804,12 @@ module Aws::QConnect
|
|
|
4574
4804
|
# resp.recommendations[0].data.details.email_generative_answer_chunk_data.references #=> Array
|
|
4575
4805
|
# resp.recommendations[0].data.details.email_generative_answer_chunk_data.references[0] #=> Types::DataSummary
|
|
4576
4806
|
# resp.recommendations[0].data.details.email_generative_answer_chunk_data.next_chunk_token #=> String
|
|
4807
|
+
# resp.recommendations[0].data.details.case_summarization_chunk_data.completion #=> String
|
|
4808
|
+
# resp.recommendations[0].data.details.case_summarization_chunk_data.next_chunk_token #=> String
|
|
4809
|
+
# resp.recommendations[0].data.details.suggested_message_data.message_text #=> String
|
|
4810
|
+
# resp.recommendations[0].data.details.notes_data.completion #=> String
|
|
4811
|
+
# resp.recommendations[0].data.details.notes_chunk_data.completion #=> String
|
|
4812
|
+
# resp.recommendations[0].data.details.notes_chunk_data.next_chunk_token #=> String
|
|
4577
4813
|
# resp.triggers #=> Array
|
|
4578
4814
|
# resp.triggers[0].id #=> String
|
|
4579
4815
|
# resp.triggers[0].type #=> String, one of "QUERY", "GENERATIVE"
|
|
@@ -4635,6 +4871,9 @@ module Aws::QConnect
|
|
|
4635
4871
|
# resp.session.ai_agent_configuration #=> Hash
|
|
4636
4872
|
# resp.session.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
4637
4873
|
# resp.session.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
4874
|
+
# resp.session.orchestrator_configuration_list #=> Array
|
|
4875
|
+
# resp.session.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
4876
|
+
# resp.session.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
4638
4877
|
#
|
|
4639
4878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/GetSession AWS API Documentation
|
|
4640
4879
|
#
|
|
@@ -4692,7 +4931,7 @@ module Aws::QConnect
|
|
|
4692
4931
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.assistant_id #=> String
|
|
4693
4932
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.assistant_arn #=> String
|
|
4694
4933
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.ai_agent_id #=> String
|
|
4695
|
-
# resp.ai_agent_version_summaries[0].ai_agent_summary.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
4934
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
4696
4935
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.ai_agent_arn #=> String
|
|
4697
4936
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.modified_time #=> Time
|
|
4698
4937
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -4736,6 +4975,8 @@ module Aws::QConnect
|
|
|
4736
4975
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4737
4976
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
4738
4977
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
4978
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
4979
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
4739
4980
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
4740
4981
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
4741
4982
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -4795,6 +5036,36 @@ module Aws::QConnect
|
|
|
4795
5036
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
4796
5037
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4797
5038
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
5039
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
5040
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
5041
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
5042
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
5043
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
5044
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
5045
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
5046
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
5047
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
5048
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
5049
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
5050
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
5051
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
5052
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
5053
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
5054
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
5055
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
5056
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
5057
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
5058
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
5059
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
5060
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
5061
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
5062
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
5063
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
5064
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
5065
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
5066
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
5067
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
5068
|
+
# resp.ai_agent_version_summaries[0].ai_agent_summary.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
4798
5069
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
4799
5070
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.description #=> String
|
|
4800
5071
|
# resp.ai_agent_version_summaries[0].ai_agent_summary.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETED"
|
|
@@ -4854,7 +5125,7 @@ module Aws::QConnect
|
|
|
4854
5125
|
# resp.ai_agent_summaries[0].assistant_id #=> String
|
|
4855
5126
|
# resp.ai_agent_summaries[0].assistant_arn #=> String
|
|
4856
5127
|
# resp.ai_agent_summaries[0].ai_agent_id #=> String
|
|
4857
|
-
# resp.ai_agent_summaries[0].type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
5128
|
+
# resp.ai_agent_summaries[0].type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
4858
5129
|
# resp.ai_agent_summaries[0].ai_agent_arn #=> String
|
|
4859
5130
|
# resp.ai_agent_summaries[0].modified_time #=> Time
|
|
4860
5131
|
# resp.ai_agent_summaries[0].visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -4898,6 +5169,8 @@ module Aws::QConnect
|
|
|
4898
5169
|
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4899
5170
|
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
4900
5171
|
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
5172
|
+
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
5173
|
+
# resp.ai_agent_summaries[0].configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
4901
5174
|
# resp.ai_agent_summaries[0].configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
4902
5175
|
# resp.ai_agent_summaries[0].configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
4903
5176
|
# resp.ai_agent_summaries[0].configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -4957,6 +5230,36 @@ module Aws::QConnect
|
|
|
4957
5230
|
# resp.ai_agent_summaries[0].configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
4958
5231
|
# resp.ai_agent_summaries[0].configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
4959
5232
|
# resp.ai_agent_summaries[0].configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
5233
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
5234
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
5235
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
5236
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
5237
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
5238
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
5239
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
5240
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
5241
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
5242
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
5243
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
5244
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
5245
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
5246
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
5247
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
5248
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
5249
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
5250
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
5251
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
5252
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
5253
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
5254
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
5255
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
5256
|
+
# resp.ai_agent_summaries[0].configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
5257
|
+
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
5258
|
+
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
5259
|
+
# resp.ai_agent_summaries[0].configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
5260
|
+
# resp.ai_agent_summaries[0].configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
5261
|
+
# resp.ai_agent_summaries[0].configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
5262
|
+
# resp.ai_agent_summaries[0].configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
4960
5263
|
# resp.ai_agent_summaries[0].origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
4961
5264
|
# resp.ai_agent_summaries[0].description #=> String
|
|
4962
5265
|
# resp.ai_agent_summaries[0].status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETED"
|
|
@@ -5135,7 +5438,7 @@ module Aws::QConnect
|
|
|
5135
5438
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.assistant_id #=> String
|
|
5136
5439
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.assistant_arn #=> String
|
|
5137
5440
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.ai_prompt_id #=> String
|
|
5138
|
-
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
5441
|
+
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
5139
5442
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.ai_prompt_arn #=> String
|
|
5140
5443
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.modified_time #=> Time
|
|
5141
5444
|
# resp.ai_prompt_version_summaries[0].ai_prompt_summary.template_type #=> String, one of "TEXT"
|
|
@@ -5201,7 +5504,7 @@ module Aws::QConnect
|
|
|
5201
5504
|
# resp.ai_prompt_summaries[0].assistant_id #=> String
|
|
5202
5505
|
# resp.ai_prompt_summaries[0].assistant_arn #=> String
|
|
5203
5506
|
# resp.ai_prompt_summaries[0].ai_prompt_id #=> String
|
|
5204
|
-
# resp.ai_prompt_summaries[0].type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
5507
|
+
# resp.ai_prompt_summaries[0].type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
5205
5508
|
# resp.ai_prompt_summaries[0].ai_prompt_arn #=> String
|
|
5206
5509
|
# resp.ai_prompt_summaries[0].modified_time #=> Time
|
|
5207
5510
|
# resp.ai_prompt_summaries[0].template_type #=> String, one of "TEXT"
|
|
@@ -5260,9 +5563,11 @@ module Aws::QConnect
|
|
|
5260
5563
|
# resp.assistant_association_summaries[0].assistant_association_arn #=> String
|
|
5261
5564
|
# resp.assistant_association_summaries[0].assistant_id #=> String
|
|
5262
5565
|
# resp.assistant_association_summaries[0].assistant_arn #=> String
|
|
5263
|
-
# resp.assistant_association_summaries[0].association_type #=> String, one of "KNOWLEDGE_BASE"
|
|
5566
|
+
# resp.assistant_association_summaries[0].association_type #=> String, one of "KNOWLEDGE_BASE", "EXTERNAL_BEDROCK_KNOWLEDGE_BASE"
|
|
5264
5567
|
# resp.assistant_association_summaries[0].association_data.knowledge_base_association.knowledge_base_id #=> String
|
|
5265
5568
|
# resp.assistant_association_summaries[0].association_data.knowledge_base_association.knowledge_base_arn #=> String
|
|
5569
|
+
# resp.assistant_association_summaries[0].association_data.external_bedrock_knowledge_base_config.bedrock_knowledge_base_arn #=> String
|
|
5570
|
+
# resp.assistant_association_summaries[0].association_data.external_bedrock_knowledge_base_config.access_role_arn #=> String
|
|
5266
5571
|
# resp.assistant_association_summaries[0].tags #=> Hash
|
|
5267
5572
|
# resp.assistant_association_summaries[0].tags["TagKey"] #=> String
|
|
5268
5573
|
# resp.next_token #=> String
|
|
@@ -5316,6 +5621,9 @@ module Aws::QConnect
|
|
|
5316
5621
|
# resp.assistant_summaries[0].capability_configuration.type #=> String, one of "V1", "V2"
|
|
5317
5622
|
# resp.assistant_summaries[0].ai_agent_configuration #=> Hash
|
|
5318
5623
|
# resp.assistant_summaries[0].ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
5624
|
+
# resp.assistant_summaries[0].orchestrator_configuration_list #=> Array
|
|
5625
|
+
# resp.assistant_summaries[0].orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
5626
|
+
# resp.assistant_summaries[0].orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
5319
5627
|
# resp.next_token #=> String
|
|
5320
5628
|
#
|
|
5321
5629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/ListAssistants AWS API Documentation
|
|
@@ -5710,6 +6018,9 @@ module Aws::QConnect
|
|
|
5710
6018
|
# @option params [Integer] :max_results
|
|
5711
6019
|
# The maximum number of results to return per page.
|
|
5712
6020
|
#
|
|
6021
|
+
# @option params [String] :filter
|
|
6022
|
+
# The filter criteria for listing messages.
|
|
6023
|
+
#
|
|
5713
6024
|
# @return [Types::ListMessagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5714
6025
|
#
|
|
5715
6026
|
# * {Types::ListMessagesResponse#messages #messages} => Array<Types::MessageOutput>
|
|
@@ -5724,12 +6035,24 @@ module Aws::QConnect
|
|
|
5724
6035
|
# session_id: "UuidOrArn", # required
|
|
5725
6036
|
# next_token: "NextToken",
|
|
5726
6037
|
# max_results: 1,
|
|
6038
|
+
# filter: "ALL", # accepts ALL, TEXT_ONLY
|
|
5727
6039
|
# })
|
|
5728
6040
|
#
|
|
5729
6041
|
# @example Response structure
|
|
5730
6042
|
#
|
|
5731
6043
|
# resp.messages #=> Array
|
|
5732
6044
|
# resp.messages[0].value.text.value #=> String
|
|
6045
|
+
# resp.messages[0].value.text.citations #=> Array
|
|
6046
|
+
# resp.messages[0].value.text.citations[0].content_id #=> String
|
|
6047
|
+
# resp.messages[0].value.text.citations[0].title #=> String
|
|
6048
|
+
# resp.messages[0].value.text.citations[0].knowledge_base_id #=> String
|
|
6049
|
+
# resp.messages[0].value.text.citations[0].citation_span.begin_offset_inclusive #=> Integer
|
|
6050
|
+
# resp.messages[0].value.text.citations[0].citation_span.end_offset_exclusive #=> Integer
|
|
6051
|
+
# resp.messages[0].value.text.citations[0].source_url #=> String
|
|
6052
|
+
# resp.messages[0].value.text.citations[0].reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
6053
|
+
# resp.messages[0].value.text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6054
|
+
# resp.messages[0].value.tool_use_result.tool_use_id #=> String
|
|
6055
|
+
# resp.messages[0].value.tool_use_result.tool_name #=> String
|
|
5733
6056
|
# resp.messages[0].message_id #=> String
|
|
5734
6057
|
# resp.messages[0].participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
5735
6058
|
# resp.messages[0].timestamp #=> Time
|
|
@@ -5803,6 +6126,141 @@ module Aws::QConnect
|
|
|
5803
6126
|
req.send_request(options)
|
|
5804
6127
|
end
|
|
5805
6128
|
|
|
6129
|
+
# Retrieves AI agent execution traces for a session, providing granular
|
|
6130
|
+
# visibility into agent orchestration flows, LLM interactions, and tool
|
|
6131
|
+
# invocations.
|
|
6132
|
+
#
|
|
6133
|
+
# @option params [required, String] :assistant_id
|
|
6134
|
+
# UUID or ARN of the Connect AI Assistant resource
|
|
6135
|
+
#
|
|
6136
|
+
# @option params [required, String] :session_id
|
|
6137
|
+
# UUID or ARN of the Connect AI Session resource
|
|
6138
|
+
#
|
|
6139
|
+
# @option params [String] :next_token
|
|
6140
|
+
# Pagination token for retrieving the next page of results
|
|
6141
|
+
#
|
|
6142
|
+
# @option params [Integer] :max_results
|
|
6143
|
+
# Maximum number of spans to return per page
|
|
6144
|
+
#
|
|
6145
|
+
# @return [Types::ListSpansResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6146
|
+
#
|
|
6147
|
+
# * {Types::ListSpansResponse#spans #spans} => Array<Types::Span>
|
|
6148
|
+
# * {Types::ListSpansResponse#next_token #next_token} => String
|
|
6149
|
+
#
|
|
6150
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
6151
|
+
#
|
|
6152
|
+
# @example Request syntax with placeholder values
|
|
6153
|
+
#
|
|
6154
|
+
# resp = client.list_spans({
|
|
6155
|
+
# assistant_id: "UuidOrArn", # required
|
|
6156
|
+
# session_id: "UuidOrArn", # required
|
|
6157
|
+
# next_token: "NextToken",
|
|
6158
|
+
# max_results: 1,
|
|
6159
|
+
# })
|
|
6160
|
+
#
|
|
6161
|
+
# @example Response structure
|
|
6162
|
+
#
|
|
6163
|
+
# resp.spans #=> Array
|
|
6164
|
+
# resp.spans[0].span_id #=> String
|
|
6165
|
+
# resp.spans[0].assistant_id #=> String
|
|
6166
|
+
# resp.spans[0].session_id #=> String
|
|
6167
|
+
# resp.spans[0].parent_span_id #=> String
|
|
6168
|
+
# resp.spans[0].span_name #=> String
|
|
6169
|
+
# resp.spans[0].span_type #=> String, one of "CLIENT", "SERVER", "INTERNAL"
|
|
6170
|
+
# resp.spans[0].start_timestamp #=> Time
|
|
6171
|
+
# resp.spans[0].end_timestamp #=> Time
|
|
6172
|
+
# resp.spans[0].status #=> String, one of "OK", "ERROR", "TIMEOUT"
|
|
6173
|
+
# resp.spans[0].request_id #=> String
|
|
6174
|
+
# resp.spans[0].attributes.operation_name #=> String
|
|
6175
|
+
# resp.spans[0].attributes.provider_name #=> String
|
|
6176
|
+
# resp.spans[0].attributes.error_type #=> String
|
|
6177
|
+
# resp.spans[0].attributes.agent_id #=> String
|
|
6178
|
+
# resp.spans[0].attributes.instance_arn #=> String
|
|
6179
|
+
# resp.spans[0].attributes.contact_id #=> String
|
|
6180
|
+
# resp.spans[0].attributes.initial_contact_id #=> String
|
|
6181
|
+
# resp.spans[0].attributes.session_name #=> String
|
|
6182
|
+
# resp.spans[0].attributes.ai_agent_arn #=> String
|
|
6183
|
+
# resp.spans[0].attributes.ai_agent_type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
6184
|
+
# resp.spans[0].attributes.ai_agent_name #=> String
|
|
6185
|
+
# resp.spans[0].attributes.ai_agent_id #=> String
|
|
6186
|
+
# resp.spans[0].attributes.ai_agent_version #=> Integer
|
|
6187
|
+
# resp.spans[0].attributes.ai_agent_invoker #=> String
|
|
6188
|
+
# resp.spans[0].attributes.ai_agent_orchestrator_use_case #=> String
|
|
6189
|
+
# resp.spans[0].attributes.request_model #=> String
|
|
6190
|
+
# resp.spans[0].attributes.request_max_tokens #=> Integer
|
|
6191
|
+
# resp.spans[0].attributes.temperature #=> Float
|
|
6192
|
+
# resp.spans[0].attributes.top_p #=> Float
|
|
6193
|
+
# resp.spans[0].attributes.response_model #=> String
|
|
6194
|
+
# resp.spans[0].attributes.response_finish_reasons #=> Array
|
|
6195
|
+
# resp.spans[0].attributes.response_finish_reasons[0] #=> String
|
|
6196
|
+
# resp.spans[0].attributes.usage_input_tokens #=> Integer
|
|
6197
|
+
# resp.spans[0].attributes.usage_output_tokens #=> Integer
|
|
6198
|
+
# resp.spans[0].attributes.usage_total_tokens #=> Integer
|
|
6199
|
+
# resp.spans[0].attributes.cache_read_input_tokens #=> Integer
|
|
6200
|
+
# resp.spans[0].attributes.cache_write_input_tokens #=> Integer
|
|
6201
|
+
# resp.spans[0].attributes.input_messages #=> Array
|
|
6202
|
+
# resp.spans[0].attributes.input_messages[0].message_id #=> String
|
|
6203
|
+
# resp.spans[0].attributes.input_messages[0].participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
6204
|
+
# resp.spans[0].attributes.input_messages[0].timestamp #=> Time
|
|
6205
|
+
# resp.spans[0].attributes.input_messages[0].values #=> Array
|
|
6206
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.value #=> String
|
|
6207
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations #=> Array
|
|
6208
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].content_id #=> String
|
|
6209
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].title #=> String
|
|
6210
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].knowledge_base_id #=> String
|
|
6211
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.citations[0].knowledge_base_arn #=> String
|
|
6212
|
+
# resp.spans[0].attributes.input_messages[0].values[0].text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6213
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_use.tool_use_id #=> String
|
|
6214
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_use.name #=> String
|
|
6215
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_result.tool_use_id #=> String
|
|
6216
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_result.values #=> Types::SpanMessageValueList
|
|
6217
|
+
# resp.spans[0].attributes.input_messages[0].values[0].tool_result.error #=> String
|
|
6218
|
+
# resp.spans[0].attributes.output_messages #=> Array
|
|
6219
|
+
# resp.spans[0].attributes.output_messages[0].message_id #=> String
|
|
6220
|
+
# resp.spans[0].attributes.output_messages[0].participant #=> String, one of "CUSTOMER", "AGENT", "BOT"
|
|
6221
|
+
# resp.spans[0].attributes.output_messages[0].timestamp #=> Time
|
|
6222
|
+
# resp.spans[0].attributes.output_messages[0].values #=> Array
|
|
6223
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.value #=> String
|
|
6224
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations #=> Array
|
|
6225
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].content_id #=> String
|
|
6226
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].title #=> String
|
|
6227
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].knowledge_base_id #=> String
|
|
6228
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.citations[0].knowledge_base_arn #=> String
|
|
6229
|
+
# resp.spans[0].attributes.output_messages[0].values[0].text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6230
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_use.tool_use_id #=> String
|
|
6231
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_use.name #=> String
|
|
6232
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_result.tool_use_id #=> String
|
|
6233
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_result.values #=> Types::SpanMessageValueList
|
|
6234
|
+
# resp.spans[0].attributes.output_messages[0].values[0].tool_result.error #=> String
|
|
6235
|
+
# resp.spans[0].attributes.system_instructions #=> Array
|
|
6236
|
+
# resp.spans[0].attributes.system_instructions[0].text.value #=> String
|
|
6237
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations #=> Array
|
|
6238
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].content_id #=> String
|
|
6239
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].title #=> String
|
|
6240
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].knowledge_base_id #=> String
|
|
6241
|
+
# resp.spans[0].attributes.system_instructions[0].text.citations[0].knowledge_base_arn #=> String
|
|
6242
|
+
# resp.spans[0].attributes.system_instructions[0].text.ai_guardrail_assessment.blocked #=> Boolean
|
|
6243
|
+
# resp.spans[0].attributes.system_instructions[0].tool_use.tool_use_id #=> String
|
|
6244
|
+
# resp.spans[0].attributes.system_instructions[0].tool_use.name #=> String
|
|
6245
|
+
# resp.spans[0].attributes.system_instructions[0].tool_result.tool_use_id #=> String
|
|
6246
|
+
# resp.spans[0].attributes.system_instructions[0].tool_result.values #=> Types::SpanMessageValueList
|
|
6247
|
+
# resp.spans[0].attributes.system_instructions[0].tool_result.error #=> String
|
|
6248
|
+
# resp.spans[0].attributes.prompt_arn #=> String
|
|
6249
|
+
# resp.spans[0].attributes.prompt_id #=> String
|
|
6250
|
+
# resp.spans[0].attributes.prompt_type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
6251
|
+
# resp.spans[0].attributes.prompt_name #=> String
|
|
6252
|
+
# resp.spans[0].attributes.prompt_version #=> Integer
|
|
6253
|
+
# resp.next_token #=> String
|
|
6254
|
+
#
|
|
6255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/ListSpans AWS API Documentation
|
|
6256
|
+
#
|
|
6257
|
+
# @overload list_spans(params = {})
|
|
6258
|
+
# @param [Hash] params ({})
|
|
6259
|
+
def list_spans(params = {}, options = {})
|
|
6260
|
+
req = build_request(:list_spans, params)
|
|
6261
|
+
req.send_request(options)
|
|
6262
|
+
end
|
|
6263
|
+
|
|
5806
6264
|
# Lists the tags for the specified resource.
|
|
5807
6265
|
#
|
|
5808
6266
|
# @option params [required, String] :resource_arn
|
|
@@ -6009,6 +6467,9 @@ module Aws::QConnect
|
|
|
6009
6467
|
# intent_input_data: {
|
|
6010
6468
|
# intent_id: "Uuid", # required
|
|
6011
6469
|
# },
|
|
6470
|
+
# case_summarization_input_data: {
|
|
6471
|
+
# case_arn: "CaseArn", # required
|
|
6472
|
+
# },
|
|
6012
6473
|
# },
|
|
6013
6474
|
# override_knowledge_base_search_type: "HYBRID", # accepts HYBRID, SEMANTIC
|
|
6014
6475
|
# })
|
|
@@ -6022,7 +6483,7 @@ module Aws::QConnect
|
|
|
6022
6483
|
# resp.results[0].document.content_reference.content_arn #=> String
|
|
6023
6484
|
# resp.results[0].document.content_reference.content_id #=> String
|
|
6024
6485
|
# resp.results[0].document.content_reference.source_url #=> String
|
|
6025
|
-
# resp.results[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
6486
|
+
# resp.results[0].document.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
6026
6487
|
# resp.results[0].document.title.text #=> String
|
|
6027
6488
|
# resp.results[0].document.title.highlights #=> Array
|
|
6028
6489
|
# resp.results[0].document.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -6037,9 +6498,11 @@ module Aws::QConnect
|
|
|
6037
6498
|
# resp.results[0].data.reference.content_reference.content_arn #=> String
|
|
6038
6499
|
# resp.results[0].data.reference.content_reference.content_id #=> String
|
|
6039
6500
|
# resp.results[0].data.reference.content_reference.source_url #=> String
|
|
6040
|
-
# resp.results[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE"
|
|
6501
|
+
# resp.results[0].data.reference.content_reference.reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
6041
6502
|
# resp.results[0].data.reference.generative_reference.model_id #=> String
|
|
6042
6503
|
# resp.results[0].data.reference.generative_reference.generation_id #=> String
|
|
6504
|
+
# resp.results[0].data.reference.suggested_message_reference.ai_agent_id #=> String
|
|
6505
|
+
# resp.results[0].data.reference.suggested_message_reference.ai_agent_arn #=> String
|
|
6043
6506
|
# resp.results[0].data.details.content_data.text_data.title.text #=> String
|
|
6044
6507
|
# resp.results[0].data.details.content_data.text_data.title.highlights #=> Array
|
|
6045
6508
|
# resp.results[0].data.details.content_data.text_data.title.highlights[0].begin_offset_inclusive #=> Integer
|
|
@@ -6057,6 +6520,7 @@ module Aws::QConnect
|
|
|
6057
6520
|
# resp.results[0].data.details.generative_data.ranking_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
6058
6521
|
# resp.results[0].data.details.intent_detected_data.intent #=> String
|
|
6059
6522
|
# resp.results[0].data.details.intent_detected_data.intent_id #=> String
|
|
6523
|
+
# resp.results[0].data.details.intent_detected_data.relevance_level #=> String, one of "HIGH", "MEDIUM", "LOW"
|
|
6060
6524
|
# resp.results[0].data.details.source_content_data.id #=> String
|
|
6061
6525
|
# resp.results[0].data.details.source_content_data.type #=> String, one of "KNOWLEDGE_CONTENT"
|
|
6062
6526
|
# resp.results[0].data.details.source_content_data.text_data.title.text #=> String
|
|
@@ -6083,7 +6547,13 @@ module Aws::QConnect
|
|
|
6083
6547
|
# resp.results[0].data.details.email_generative_answer_chunk_data.references #=> Array
|
|
6084
6548
|
# resp.results[0].data.details.email_generative_answer_chunk_data.references[0] #=> Types::DataSummary
|
|
6085
6549
|
# resp.results[0].data.details.email_generative_answer_chunk_data.next_chunk_token #=> String
|
|
6086
|
-
# resp.results[0].
|
|
6550
|
+
# resp.results[0].data.details.case_summarization_chunk_data.completion #=> String
|
|
6551
|
+
# resp.results[0].data.details.case_summarization_chunk_data.next_chunk_token #=> String
|
|
6552
|
+
# resp.results[0].data.details.suggested_message_data.message_text #=> String
|
|
6553
|
+
# resp.results[0].data.details.notes_data.completion #=> String
|
|
6554
|
+
# resp.results[0].data.details.notes_chunk_data.completion #=> String
|
|
6555
|
+
# resp.results[0].data.details.notes_chunk_data.next_chunk_token #=> String
|
|
6556
|
+
# resp.results[0].type #=> String, one of "KNOWLEDGE_CONTENT", "INTENT_ANSWER", "GENERATIVE_ANSWER", "GENERATIVE_ANSWER_CHUNK", "BLOCKED_GENERATIVE_ANSWER_CHUNK", "INTENT_ANSWER_CHUNK", "BLOCKED_INTENT_ANSWER_CHUNK", "EMAIL_RESPONSE_CHUNK", "EMAIL_OVERVIEW_CHUNK", "EMAIL_GENERATIVE_ANSWER_CHUNK", "CASE_SUMMARIZATION_CHUNK", "BLOCKED_CASE_SUMMARIZATION_CHUNK", "NOTES", "NOTES_CHUNK", "BLOCKED_NOTES_CHUNK"
|
|
6087
6557
|
# resp.next_token #=> String
|
|
6088
6558
|
#
|
|
6089
6559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/QueryAssistant AWS API Documentation
|
|
@@ -6106,13 +6576,17 @@ module Aws::QConnect
|
|
|
6106
6576
|
# The type of the AI Agent being removed for use by default from the
|
|
6107
6577
|
# Amazon Q in Connect Assistant.
|
|
6108
6578
|
#
|
|
6579
|
+
# @option params [String] :orchestrator_use_case
|
|
6580
|
+
# The orchestrator use case for the AI Agent being removed.
|
|
6581
|
+
#
|
|
6109
6582
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
6110
6583
|
#
|
|
6111
6584
|
# @example Request syntax with placeholder values
|
|
6112
6585
|
#
|
|
6113
6586
|
# resp = client.remove_assistant_ai_agent({
|
|
6114
6587
|
# assistant_id: "UuidOrArn", # required
|
|
6115
|
-
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER
|
|
6588
|
+
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
6589
|
+
# orchestrator_use_case: "NonEmptyString",
|
|
6116
6590
|
# })
|
|
6117
6591
|
#
|
|
6118
6592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/RemoveAssistantAIAgent AWS API Documentation
|
|
@@ -6335,6 +6809,120 @@ module Aws::QConnect
|
|
|
6335
6809
|
req.send_request(options)
|
|
6336
6810
|
end
|
|
6337
6811
|
|
|
6812
|
+
# Retrieves content from knowledge sources based on a query.
|
|
6813
|
+
#
|
|
6814
|
+
# @option params [required, String] :assistant_id
|
|
6815
|
+
# The identifier of the Amazon Q in Connect assistant for content
|
|
6816
|
+
# retrieval.
|
|
6817
|
+
#
|
|
6818
|
+
# @option params [required, Types::RetrievalConfiguration] :retrieval_configuration
|
|
6819
|
+
# The configuration for the content retrieval operation.
|
|
6820
|
+
#
|
|
6821
|
+
# @option params [required, String] :retrieval_query
|
|
6822
|
+
# The query for content retrieval.
|
|
6823
|
+
#
|
|
6824
|
+
# @return [Types::RetrieveResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6825
|
+
#
|
|
6826
|
+
# * {Types::RetrieveResponse#results #results} => Array<Types::RetrieveResult>
|
|
6827
|
+
#
|
|
6828
|
+
# @example Request syntax with placeholder values
|
|
6829
|
+
#
|
|
6830
|
+
# resp = client.retrieve({
|
|
6831
|
+
# assistant_id: "UuidOrArn", # required
|
|
6832
|
+
# retrieval_configuration: { # required
|
|
6833
|
+
# knowledge_source: { # required
|
|
6834
|
+
# assistant_association_ids: ["UuidOrArn"],
|
|
6835
|
+
# },
|
|
6836
|
+
# filter: {
|
|
6837
|
+
# and_all: [
|
|
6838
|
+
# {
|
|
6839
|
+
# # recursive RetrievalFilterConfiguration
|
|
6840
|
+
# },
|
|
6841
|
+
# ],
|
|
6842
|
+
# equals: {
|
|
6843
|
+
# key: "FilterAttributeKey", # required
|
|
6844
|
+
# value: { # required
|
|
6845
|
+
# },
|
|
6846
|
+
# },
|
|
6847
|
+
# greater_than: {
|
|
6848
|
+
# key: "FilterAttributeKey", # required
|
|
6849
|
+
# value: { # required
|
|
6850
|
+
# },
|
|
6851
|
+
# },
|
|
6852
|
+
# greater_than_or_equals: {
|
|
6853
|
+
# key: "FilterAttributeKey", # required
|
|
6854
|
+
# value: { # required
|
|
6855
|
+
# },
|
|
6856
|
+
# },
|
|
6857
|
+
# in: {
|
|
6858
|
+
# key: "FilterAttributeKey", # required
|
|
6859
|
+
# value: { # required
|
|
6860
|
+
# },
|
|
6861
|
+
# },
|
|
6862
|
+
# less_than: {
|
|
6863
|
+
# key: "FilterAttributeKey", # required
|
|
6864
|
+
# value: { # required
|
|
6865
|
+
# },
|
|
6866
|
+
# },
|
|
6867
|
+
# less_than_or_equals: {
|
|
6868
|
+
# key: "FilterAttributeKey", # required
|
|
6869
|
+
# value: { # required
|
|
6870
|
+
# },
|
|
6871
|
+
# },
|
|
6872
|
+
# list_contains: {
|
|
6873
|
+
# key: "FilterAttributeKey", # required
|
|
6874
|
+
# value: { # required
|
|
6875
|
+
# },
|
|
6876
|
+
# },
|
|
6877
|
+
# not_equals: {
|
|
6878
|
+
# key: "FilterAttributeKey", # required
|
|
6879
|
+
# value: { # required
|
|
6880
|
+
# },
|
|
6881
|
+
# },
|
|
6882
|
+
# not_in: {
|
|
6883
|
+
# key: "FilterAttributeKey", # required
|
|
6884
|
+
# value: { # required
|
|
6885
|
+
# },
|
|
6886
|
+
# },
|
|
6887
|
+
# or_all: [
|
|
6888
|
+
# {
|
|
6889
|
+
# # recursive RetrievalFilterConfiguration
|
|
6890
|
+
# },
|
|
6891
|
+
# ],
|
|
6892
|
+
# starts_with: {
|
|
6893
|
+
# key: "FilterAttributeKey", # required
|
|
6894
|
+
# value: { # required
|
|
6895
|
+
# },
|
|
6896
|
+
# },
|
|
6897
|
+
# string_contains: {
|
|
6898
|
+
# key: "FilterAttributeKey", # required
|
|
6899
|
+
# value: { # required
|
|
6900
|
+
# },
|
|
6901
|
+
# },
|
|
6902
|
+
# },
|
|
6903
|
+
# number_of_results: 1,
|
|
6904
|
+
# override_knowledge_base_search_type: "HYBRID", # accepts HYBRID, SEMANTIC
|
|
6905
|
+
# },
|
|
6906
|
+
# retrieval_query: "NonEmptySensitiveString", # required
|
|
6907
|
+
# })
|
|
6908
|
+
#
|
|
6909
|
+
# @example Response structure
|
|
6910
|
+
#
|
|
6911
|
+
# resp.results #=> Array
|
|
6912
|
+
# resp.results[0].association_id #=> String
|
|
6913
|
+
# resp.results[0].source_id #=> String
|
|
6914
|
+
# resp.results[0].reference_type #=> String, one of "WEB_CRAWLER", "KNOWLEDGE_BASE", "BEDROCK_KB_S3", "BEDROCK_KB_WEB", "BEDROCK_KB_CONFLUENCE", "BEDROCK_KB_SALESFORCE", "BEDROCK_KB_SHAREPOINT", "BEDROCK_KB_KENDRA", "BEDROCK_KB_CUSTOM_DOCUMENT", "BEDROCK_KB_SQL"
|
|
6915
|
+
# resp.results[0].content_text #=> String
|
|
6916
|
+
#
|
|
6917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/Retrieve AWS API Documentation
|
|
6918
|
+
#
|
|
6919
|
+
# @overload retrieve(params = {})
|
|
6920
|
+
# @param [Hash] params ({})
|
|
6921
|
+
def retrieve(params = {}, options = {})
|
|
6922
|
+
req = build_request(:retrieve, params)
|
|
6923
|
+
req.send_request(options)
|
|
6924
|
+
end
|
|
6925
|
+
|
|
6338
6926
|
# Searches for content in a specified knowledge base. Can be used to get
|
|
6339
6927
|
# a specific content resource by its name.
|
|
6340
6928
|
#
|
|
@@ -6684,6 +7272,9 @@ module Aws::QConnect
|
|
|
6684
7272
|
# @option params [required, Types::MessageInput] :message
|
|
6685
7273
|
# The message data to submit to the Amazon Q in Connect session.
|
|
6686
7274
|
#
|
|
7275
|
+
# @option params [String] :ai_agent_id
|
|
7276
|
+
# The identifier of the AI Agent to use for processing the message.
|
|
7277
|
+
#
|
|
6687
7278
|
# @option params [Types::ConversationContext] :conversation_context
|
|
6688
7279
|
# The conversation context before the Amazon Q in Connect session.
|
|
6689
7280
|
#
|
|
@@ -6703,6 +7294,12 @@ module Aws::QConnect
|
|
|
6703
7294
|
# **A suitable default value is auto-generated.** You should normally
|
|
6704
7295
|
# not need to pass this option.**
|
|
6705
7296
|
#
|
|
7297
|
+
# @option params [String] :orchestrator_use_case
|
|
7298
|
+
# The orchestrator use case for message processing.
|
|
7299
|
+
#
|
|
7300
|
+
# @option params [Hash<String,String>] :metadata
|
|
7301
|
+
# Additional metadata for the message.
|
|
7302
|
+
#
|
|
6706
7303
|
# @return [Types::SendMessageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6707
7304
|
#
|
|
6708
7305
|
# * {Types::SendMessageResponse#request_message_id #request_message_id} => String
|
|
@@ -6719,28 +7316,60 @@ module Aws::QConnect
|
|
|
6719
7316
|
# value: { # required
|
|
6720
7317
|
# text: {
|
|
6721
7318
|
# value: "TextMessageValueString",
|
|
7319
|
+
# citations: [
|
|
7320
|
+
# {
|
|
7321
|
+
# content_id: "Uuid",
|
|
7322
|
+
# title: "SensitiveString",
|
|
7323
|
+
# knowledge_base_id: "Uuid",
|
|
7324
|
+
# citation_span: { # required
|
|
7325
|
+
# begin_offset_inclusive: 1,
|
|
7326
|
+
# end_offset_exclusive: 1,
|
|
7327
|
+
# },
|
|
7328
|
+
# source_url: "SensitiveString",
|
|
7329
|
+
# reference_type: "WEB_CRAWLER", # required, accepts WEB_CRAWLER, KNOWLEDGE_BASE, BEDROCK_KB_S3, BEDROCK_KB_WEB, BEDROCK_KB_CONFLUENCE, BEDROCK_KB_SALESFORCE, BEDROCK_KB_SHAREPOINT, BEDROCK_KB_KENDRA, BEDROCK_KB_CUSTOM_DOCUMENT, BEDROCK_KB_SQL
|
|
7330
|
+
# },
|
|
7331
|
+
# ],
|
|
7332
|
+
# ai_guardrail_assessment: {
|
|
7333
|
+
# blocked: false, # required
|
|
7334
|
+
# },
|
|
7335
|
+
# },
|
|
7336
|
+
# tool_use_result: {
|
|
7337
|
+
# tool_use_id: "NonEmptyString", # required
|
|
7338
|
+
# tool_name: "NonEmptyString", # required
|
|
7339
|
+
# tool_result: { # required
|
|
7340
|
+
# },
|
|
7341
|
+
# input_schema: {
|
|
7342
|
+
# },
|
|
6722
7343
|
# },
|
|
6723
7344
|
# },
|
|
6724
7345
|
# },
|
|
7346
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
6725
7347
|
# conversation_context: {
|
|
6726
7348
|
# self_service_conversation_history: [ # required
|
|
6727
7349
|
# {
|
|
6728
|
-
# turn_number: 1,
|
|
7350
|
+
# turn_number: 1,
|
|
6729
7351
|
# input_transcript: "SensitiveString",
|
|
6730
7352
|
# bot_response: "SensitiveString",
|
|
7353
|
+
# timestamp: Time.now,
|
|
6731
7354
|
# },
|
|
6732
7355
|
# ],
|
|
6733
7356
|
# },
|
|
6734
7357
|
# configuration: {
|
|
6735
7358
|
# generate_filler_message: false,
|
|
7359
|
+
# generate_chunked_message: false,
|
|
6736
7360
|
# },
|
|
6737
7361
|
# client_token: "ClientToken",
|
|
7362
|
+
# orchestrator_use_case: "NonEmptyString",
|
|
7363
|
+
# metadata: {
|
|
7364
|
+
# "NonEmptyString" => "NonEmptyString",
|
|
7365
|
+
# },
|
|
6738
7366
|
# })
|
|
6739
7367
|
#
|
|
6740
7368
|
# @example Response structure
|
|
6741
7369
|
#
|
|
6742
7370
|
# resp.request_message_id #=> String
|
|
6743
7371
|
# resp.configuration.generate_filler_message #=> Boolean
|
|
7372
|
+
# resp.configuration.generate_chunked_message #=> Boolean
|
|
6744
7373
|
# resp.next_message_token #=> String
|
|
6745
7374
|
#
|
|
6746
7375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/SendMessage AWS API Documentation
|
|
@@ -7097,6 +7726,7 @@ module Aws::QConnect
|
|
|
7097
7726
|
# },
|
|
7098
7727
|
# ],
|
|
7099
7728
|
# locale: "NonEmptyString",
|
|
7729
|
+
# suggested_messages: ["NonEmptySensitiveString"],
|
|
7100
7730
|
# },
|
|
7101
7731
|
# self_service_ai_agent_configuration: {
|
|
7102
7732
|
# self_service_pre_processing_ai_prompt_id: "UuidWithQualifier",
|
|
@@ -7231,6 +7861,66 @@ module Aws::QConnect
|
|
|
7231
7861
|
# },
|
|
7232
7862
|
# ],
|
|
7233
7863
|
# },
|
|
7864
|
+
# orchestration_ai_agent_configuration: {
|
|
7865
|
+
# orchestration_ai_prompt_id: "UuidWithQualifier", # required
|
|
7866
|
+
# orchestration_ai_guardrail_id: "UuidWithQualifier",
|
|
7867
|
+
# tool_configurations: [
|
|
7868
|
+
# {
|
|
7869
|
+
# tool_name: "NonEmptyString", # required
|
|
7870
|
+
# tool_type: "MODEL_CONTEXT_PROTOCOL", # required, accepts MODEL_CONTEXT_PROTOCOL, RETURN_TO_CONTROL, CONSTANT
|
|
7871
|
+
# title: "NonEmptyString",
|
|
7872
|
+
# tool_id: "NonEmptyString",
|
|
7873
|
+
# description: "String",
|
|
7874
|
+
# instruction: {
|
|
7875
|
+
# instruction: "String",
|
|
7876
|
+
# examples: ["String"],
|
|
7877
|
+
# },
|
|
7878
|
+
# override_input_values: [
|
|
7879
|
+
# {
|
|
7880
|
+
# json_path: "NonEmptyString", # required
|
|
7881
|
+
# value: { # required
|
|
7882
|
+
# constant: {
|
|
7883
|
+
# type: "STRING", # required, accepts STRING, NUMBER, JSON_STRING
|
|
7884
|
+
# value: "NonEmptySensitiveString", # required
|
|
7885
|
+
# },
|
|
7886
|
+
# },
|
|
7887
|
+
# },
|
|
7888
|
+
# ],
|
|
7889
|
+
# output_filters: [
|
|
7890
|
+
# {
|
|
7891
|
+
# json_path: "NonEmptyString", # required
|
|
7892
|
+
# output_configuration: {
|
|
7893
|
+
# output_variable_name_override: "NonEmptyString",
|
|
7894
|
+
# session_data_namespace: "NonEmptyString",
|
|
7895
|
+
# },
|
|
7896
|
+
# },
|
|
7897
|
+
# ],
|
|
7898
|
+
# input_schema: {
|
|
7899
|
+
# },
|
|
7900
|
+
# output_schema: {
|
|
7901
|
+
# },
|
|
7902
|
+
# annotations: {
|
|
7903
|
+
# title: "String",
|
|
7904
|
+
# destructive_hint: false,
|
|
7905
|
+
# },
|
|
7906
|
+
# user_interaction_configuration: {
|
|
7907
|
+
# is_user_confirmation_required: false,
|
|
7908
|
+
# },
|
|
7909
|
+
# },
|
|
7910
|
+
# ],
|
|
7911
|
+
# connect_instance_arn: "GenericArn",
|
|
7912
|
+
# locale: "NonEmptyString",
|
|
7913
|
+
# },
|
|
7914
|
+
# note_taking_ai_agent_configuration: {
|
|
7915
|
+
# note_taking_ai_prompt_id: "UuidWithQualifier",
|
|
7916
|
+
# note_taking_ai_guardrail_id: "UuidWithQualifier",
|
|
7917
|
+
# locale: "NonEmptyString",
|
|
7918
|
+
# },
|
|
7919
|
+
# case_summarization_ai_agent_configuration: {
|
|
7920
|
+
# case_summarization_ai_prompt_id: "UuidWithQualifier",
|
|
7921
|
+
# case_summarization_ai_guardrail_id: "UuidWithQualifier",
|
|
7922
|
+
# locale: "NonEmptyString",
|
|
7923
|
+
# },
|
|
7234
7924
|
# },
|
|
7235
7925
|
# description: "Description",
|
|
7236
7926
|
# })
|
|
@@ -7242,7 +7932,7 @@ module Aws::QConnect
|
|
|
7242
7932
|
# resp.ai_agent.ai_agent_id #=> String
|
|
7243
7933
|
# resp.ai_agent.ai_agent_arn #=> String
|
|
7244
7934
|
# resp.ai_agent.name #=> String
|
|
7245
|
-
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER"
|
|
7935
|
+
# resp.ai_agent.type #=> String, one of "MANUAL_SEARCH", "ANSWER_RECOMMENDATION", "SELF_SERVICE", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
7246
7936
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_prompt_id #=> String
|
|
7247
7937
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.answer_generation_ai_guardrail_id #=> String
|
|
7248
7938
|
# resp.ai_agent.configuration.manual_search_ai_agent_configuration.association_configurations #=> Array
|
|
@@ -7283,6 +7973,8 @@ module Aws::QConnect
|
|
|
7283
7973
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
7284
7974
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
7285
7975
|
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.locale #=> String
|
|
7976
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages #=> Array
|
|
7977
|
+
# resp.ai_agent.configuration.answer_recommendation_ai_agent_configuration.suggested_messages[0] #=> String
|
|
7286
7978
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_pre_processing_ai_prompt_id #=> String
|
|
7287
7979
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_answer_generation_ai_prompt_id #=> String
|
|
7288
7980
|
# resp.ai_agent.configuration.self_service_ai_agent_configuration.self_service_ai_guardrail_id #=> String
|
|
@@ -7342,6 +8034,36 @@ module Aws::QConnect
|
|
|
7342
8034
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.content_tag_filter.or_conditions[0].tag_condition.value #=> String
|
|
7343
8035
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.max_results #=> Integer
|
|
7344
8036
|
# resp.ai_agent.configuration.email_generative_answer_ai_agent_configuration.association_configurations[0].association_configuration_data.knowledge_base_association_configuration_data.override_knowledge_base_search_type #=> String, one of "HYBRID", "SEMANTIC"
|
|
8037
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_prompt_id #=> String
|
|
8038
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.orchestration_ai_guardrail_id #=> String
|
|
8039
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations #=> Array
|
|
8040
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_name #=> String
|
|
8041
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_type #=> String, one of "MODEL_CONTEXT_PROTOCOL", "RETURN_TO_CONTROL", "CONSTANT"
|
|
8042
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].title #=> String
|
|
8043
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].tool_id #=> String
|
|
8044
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].description #=> String
|
|
8045
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.instruction #=> String
|
|
8046
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples #=> Array
|
|
8047
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].instruction.examples[0] #=> String
|
|
8048
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values #=> Array
|
|
8049
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].json_path #=> String
|
|
8050
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.type #=> String, one of "STRING", "NUMBER", "JSON_STRING"
|
|
8051
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].override_input_values[0].value.constant.value #=> String
|
|
8052
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters #=> Array
|
|
8053
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].json_path #=> String
|
|
8054
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.output_variable_name_override #=> String
|
|
8055
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].output_filters[0].output_configuration.session_data_namespace #=> String
|
|
8056
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.title #=> String
|
|
8057
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].annotations.destructive_hint #=> Boolean
|
|
8058
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.tool_configurations[0].user_interaction_configuration.is_user_confirmation_required #=> Boolean
|
|
8059
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.connect_instance_arn #=> String
|
|
8060
|
+
# resp.ai_agent.configuration.orchestration_ai_agent_configuration.locale #=> String
|
|
8061
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_prompt_id #=> String
|
|
8062
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.note_taking_ai_guardrail_id #=> String
|
|
8063
|
+
# resp.ai_agent.configuration.note_taking_ai_agent_configuration.locale #=> String
|
|
8064
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_prompt_id #=> String
|
|
8065
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.case_summarization_ai_guardrail_id #=> String
|
|
8066
|
+
# resp.ai_agent.configuration.case_summarization_ai_agent_configuration.locale #=> String
|
|
7345
8067
|
# resp.ai_agent.modified_time #=> Time
|
|
7346
8068
|
# resp.ai_agent.description #=> String
|
|
7347
8069
|
# resp.ai_agent.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -7573,6 +8295,9 @@ module Aws::QConnect
|
|
|
7573
8295
|
#
|
|
7574
8296
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-ai-prompts.html#cli-create-aiprompt
|
|
7575
8297
|
#
|
|
8298
|
+
# @option params [Types::AIPromptInferenceConfiguration] :inference_configuration
|
|
8299
|
+
# The updated inference configuration for the AI Prompt.
|
|
8300
|
+
#
|
|
7576
8301
|
# @return [Types::UpdateAIPromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7577
8302
|
#
|
|
7578
8303
|
# * {Types::UpdateAIPromptResponse#ai_prompt #ai_prompt} => Types::AIPromptData
|
|
@@ -7591,6 +8316,14 @@ module Aws::QConnect
|
|
|
7591
8316
|
# },
|
|
7592
8317
|
# description: "Description",
|
|
7593
8318
|
# model_id: "AIPromptModelIdentifier",
|
|
8319
|
+
# inference_configuration: {
|
|
8320
|
+
# text_ai_prompt_inference_configuration: {
|
|
8321
|
+
# temperature: 1.0,
|
|
8322
|
+
# top_p: 1.0,
|
|
8323
|
+
# top_k: 1,
|
|
8324
|
+
# max_tokens_to_sample: 1,
|
|
8325
|
+
# },
|
|
8326
|
+
# },
|
|
7594
8327
|
# })
|
|
7595
8328
|
#
|
|
7596
8329
|
# @example Response structure
|
|
@@ -7600,11 +8333,15 @@ module Aws::QConnect
|
|
|
7600
8333
|
# resp.ai_prompt.ai_prompt_id #=> String
|
|
7601
8334
|
# resp.ai_prompt.ai_prompt_arn #=> String
|
|
7602
8335
|
# resp.ai_prompt.name #=> String
|
|
7603
|
-
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION"
|
|
8336
|
+
# resp.ai_prompt.type #=> String, one of "ANSWER_GENERATION", "INTENT_LABELING_GENERATION", "QUERY_REFORMULATION", "SELF_SERVICE_PRE_PROCESSING", "SELF_SERVICE_ANSWER_GENERATION", "EMAIL_RESPONSE", "EMAIL_OVERVIEW", "EMAIL_GENERATIVE_ANSWER", "EMAIL_QUERY_REFORMULATION", "ORCHESTRATION", "NOTE_TAKING", "CASE_SUMMARIZATION"
|
|
7604
8337
|
# resp.ai_prompt.template_type #=> String, one of "TEXT"
|
|
7605
8338
|
# resp.ai_prompt.model_id #=> String
|
|
7606
8339
|
# resp.ai_prompt.api_format #=> String, one of "ANTHROPIC_CLAUDE_MESSAGES", "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS", "MESSAGES", "TEXT_COMPLETIONS"
|
|
7607
8340
|
# resp.ai_prompt.template_configuration.text_full_ai_prompt_edit_template_configuration.text #=> String
|
|
8341
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.temperature #=> Float
|
|
8342
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_p #=> Float
|
|
8343
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.top_k #=> Integer
|
|
8344
|
+
# resp.ai_prompt.inference_configuration.text_ai_prompt_inference_configuration.max_tokens_to_sample #=> Integer
|
|
7608
8345
|
# resp.ai_prompt.modified_time #=> Time
|
|
7609
8346
|
# resp.ai_prompt.description #=> String
|
|
7610
8347
|
# resp.ai_prompt.visibility_status #=> String, one of "SAVED", "PUBLISHED"
|
|
@@ -7637,6 +8374,10 @@ module Aws::QConnect
|
|
|
7637
8374
|
# The configuration of the AI Agent being updated for use by default on
|
|
7638
8375
|
# the Amazon Q in Connect Assistant.
|
|
7639
8376
|
#
|
|
8377
|
+
# @option params [Array<Types::OrchestratorConfigurationEntry>] :orchestrator_configuration_list
|
|
8378
|
+
# The updated list of orchestrator configurations for the assistant AI
|
|
8379
|
+
# Agent.
|
|
8380
|
+
#
|
|
7640
8381
|
# @return [Types::UpdateAssistantAIAgentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7641
8382
|
#
|
|
7642
8383
|
# * {Types::UpdateAssistantAIAgentResponse#assistant #assistant} => Types::AssistantData
|
|
@@ -7645,10 +8386,16 @@ module Aws::QConnect
|
|
|
7645
8386
|
#
|
|
7646
8387
|
# resp = client.update_assistant_ai_agent({
|
|
7647
8388
|
# assistant_id: "UuidOrArn", # required
|
|
7648
|
-
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER
|
|
8389
|
+
# ai_agent_type: "MANUAL_SEARCH", # required, accepts MANUAL_SEARCH, ANSWER_RECOMMENDATION, SELF_SERVICE, EMAIL_RESPONSE, EMAIL_OVERVIEW, EMAIL_GENERATIVE_ANSWER, ORCHESTRATION, NOTE_TAKING, CASE_SUMMARIZATION
|
|
7649
8390
|
# configuration: { # required
|
|
7650
8391
|
# ai_agent_id: "UuidWithQualifier", # required
|
|
7651
8392
|
# },
|
|
8393
|
+
# orchestrator_configuration_list: [
|
|
8394
|
+
# {
|
|
8395
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
8396
|
+
# orchestrator_use_case: "NonEmptyString", # required
|
|
8397
|
+
# },
|
|
8398
|
+
# ],
|
|
7652
8399
|
# })
|
|
7653
8400
|
#
|
|
7654
8401
|
# @example Response structure
|
|
@@ -7666,6 +8413,9 @@ module Aws::QConnect
|
|
|
7666
8413
|
# resp.assistant.capability_configuration.type #=> String, one of "V1", "V2"
|
|
7667
8414
|
# resp.assistant.ai_agent_configuration #=> Hash
|
|
7668
8415
|
# resp.assistant.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
8416
|
+
# resp.assistant.orchestrator_configuration_list #=> Array
|
|
8417
|
+
# resp.assistant.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
8418
|
+
# resp.assistant.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
7669
8419
|
#
|
|
7670
8420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/UpdateAssistantAIAgent AWS API Documentation
|
|
7671
8421
|
#
|
|
@@ -8545,6 +9295,12 @@ module Aws::QConnect
|
|
|
8545
9295
|
# Agent version) that should be used by Amazon Q in Connect for this
|
|
8546
9296
|
# Session.
|
|
8547
9297
|
#
|
|
9298
|
+
# @option params [Array<Types::OrchestratorConfigurationEntry>] :orchestrator_configuration_list
|
|
9299
|
+
# The updated list of orchestrator configurations for the session.
|
|
9300
|
+
#
|
|
9301
|
+
# @option params [Boolean] :remove_orchestrator_configuration_list
|
|
9302
|
+
# The list of orchestrator configurations to remove from the session.
|
|
9303
|
+
#
|
|
8548
9304
|
# @return [Types::UpdateSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8549
9305
|
#
|
|
8550
9306
|
# * {Types::UpdateSessionResponse#session #session} => Types::SessionData
|
|
@@ -8586,6 +9342,13 @@ module Aws::QConnect
|
|
|
8586
9342
|
# ai_agent_id: "UuidWithQualifier", # required
|
|
8587
9343
|
# },
|
|
8588
9344
|
# },
|
|
9345
|
+
# orchestrator_configuration_list: [
|
|
9346
|
+
# {
|
|
9347
|
+
# ai_agent_id: "UuidOrArnOrEitherWithQualifier",
|
|
9348
|
+
# orchestrator_use_case: "NonEmptyString", # required
|
|
9349
|
+
# },
|
|
9350
|
+
# ],
|
|
9351
|
+
# remove_orchestrator_configuration_list: false,
|
|
8589
9352
|
# })
|
|
8590
9353
|
#
|
|
8591
9354
|
# @example Response structure
|
|
@@ -8611,6 +9374,9 @@ module Aws::QConnect
|
|
|
8611
9374
|
# resp.session.ai_agent_configuration #=> Hash
|
|
8612
9375
|
# resp.session.ai_agent_configuration["AIAgentType"].ai_agent_id #=> String
|
|
8613
9376
|
# resp.session.origin #=> String, one of "SYSTEM", "CUSTOMER"
|
|
9377
|
+
# resp.session.orchestrator_configuration_list #=> Array
|
|
9378
|
+
# resp.session.orchestrator_configuration_list[0].ai_agent_id #=> String
|
|
9379
|
+
# resp.session.orchestrator_configuration_list[0].orchestrator_use_case #=> String
|
|
8614
9380
|
#
|
|
8615
9381
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/UpdateSession AWS API Documentation
|
|
8616
9382
|
#
|
|
@@ -8697,7 +9463,7 @@ module Aws::QConnect
|
|
|
8697
9463
|
tracer: tracer
|
|
8698
9464
|
)
|
|
8699
9465
|
context[:gem_name] = 'aws-sdk-qconnect'
|
|
8700
|
-
context[:gem_version] = '1.
|
|
9466
|
+
context[:gem_version] = '1.44.0'
|
|
8701
9467
|
Seahorse::Client::Request.new(handlers, context)
|
|
8702
9468
|
end
|
|
8703
9469
|
|