|
924 | 924 | -type missing_loop_controller_node_flow_validation_details() :: #{binary() => any()}. |
925 | 925 |
|
926 | 926 |
|
| 927 | +%% Example: |
| 928 | +%% s3_vectors_configuration() :: #{ |
| 929 | +%% <<"indexArn">> => string(), |
| 930 | +%% <<"indexName">> => string(), |
| 931 | +%% <<"vectorBucketArn">> => string() |
| 932 | +%% } |
| 933 | +-type s3_vectors_configuration() :: #{binary() => any()}. |
| 934 | + |
| 935 | + |
927 | 936 | %% Example: |
928 | 937 | %% list_flow_versions_request() :: #{ |
929 | 938 | %% <<"maxResults">> => integer(), |
|
1782 | 1791 | %% <<"pineconeConfiguration">> => pinecone_configuration(), |
1783 | 1792 | %% <<"rdsConfiguration">> => rds_configuration(), |
1784 | 1793 | %% <<"redisEnterpriseCloudConfiguration">> => redis_enterprise_cloud_configuration(), |
| 1794 | +%% <<"s3VectorsConfiguration">> => s3_vectors_configuration(), |
1785 | 1795 | %% <<"type">> => list(any()) |
1786 | 1796 | %% } |
1787 | 1797 | -type storage_configuration() :: #{binary() => any()}. |
@@ -3994,13 +4004,13 @@ associate_agent_knowledge_base(Client, AgentId, AgentVersion, Input0, Options0) |
3994 | 4004 | %% expires, the subsequent `InvokeAgent' request begins a new session. |
3995 | 4005 | %% |
3996 | 4006 | %% To enable your agent to retain conversational context across multiple |
3997 | | -%% sessions, include a `memoryConfiguration' object. |
3998 | | -%% For more information, see Configure memory: |
| 4007 | +%% sessions, include a `memoryConfiguration' object. For more |
| 4008 | +%% information, see Configure memory: |
3999 | 4009 | %% https://docs.aws.amazon.com/bedrock/latest/userguide/agents-configure-memory.html. |
4000 | 4010 | %% |
4001 | 4011 | %% To override the default prompt behavior for agent orchestration and to use |
4002 | | -%% advanced prompts, include a `promptOverrideConfiguration' object. |
4003 | | -%% For more information, see Advanced prompts: |
| 4012 | +%% advanced prompts, include a `promptOverrideConfiguration' object. For |
| 4013 | +%% more information, see Advanced prompts: |
4004 | 4014 | %% https://docs.aws.amazon.com/bedrock/latest/userguide/advanced-prompts.html. |
4005 | 4015 | %% |
4006 | 4016 | %% If your agent fails to be created, the response returns a list of |
@@ -4050,13 +4060,12 @@ create_agent(Client, Input0, Options0) -> |
4050 | 4060 | %% calling them. |
4051 | 4061 | %% |
4052 | 4062 | %% To allow your agent to request the user for additional information when |
4053 | | -%% trying to complete a task, |
4054 | | -%% add an action group with the `parentActionGroupSignature' field set to |
4055 | | -%% `AMAZON.UserInput'. |
| 4063 | +%% trying to complete a task, add an action group with the |
| 4064 | +%% `parentActionGroupSignature' field set to `AMAZON.UserInput'. |
4056 | 4065 | %% |
4057 | 4066 | %% To allow your agent to generate, run, and troubleshoot code when trying to |
4058 | | -%% complete a task, |
4059 | | -%% add an action group with the `parentActionGroupSignature' field set to |
| 4067 | +%% complete a task, add an action group with the |
| 4068 | +%% `parentActionGroupSignature' field set to |
4060 | 4069 | %% `AMAZON.CodeInterpreter'. |
4061 | 4070 | %% |
4062 | 4071 | %% You must leave the `description', `apiSchema', and |
|
0 commit comments