|
755 | 755 | },
|
756 | 756 | "documentation":"<p>Contains configurations for a reranker model.</p>"
|
757 | 757 | },
|
| 758 | + "Blob":{"type":"blob"}, |
758 | 759 | "Boolean":{
|
759 | 760 | "type":"boolean",
|
760 | 761 | "box":true
|
|
3250 | 3251 | "MaximumLength":{
|
3251 | 3252 | "type":"integer",
|
3252 | 3253 | "box":true,
|
3253 |
| - "max":4096, |
| 3254 | + "max":8192, |
3254 | 3255 | "min":0
|
3255 | 3256 | },
|
3256 | 3257 | "Memories":{
|
|
3673 | 3674 | "shape":"RawResponse",
|
3674 | 3675 | "documentation":"<p>Contains details of the raw response from the foundation model output.</p>"
|
3675 | 3676 | },
|
| 3677 | + "reasoningContent":{ |
| 3678 | + "shape":"ReasoningContentBlock", |
| 3679 | + "documentation":"<p>Contains content about the reasoning that the model made during the orchestration step. </p>" |
| 3680 | + }, |
3676 | 3681 | "traceId":{
|
3677 | 3682 | "shape":"TraceId",
|
3678 | 3683 | "documentation":"<p>The unique identifier of the trace.</p>"
|
|
3872 | 3877 | "shape":"RawResponse",
|
3873 | 3878 | "documentation":"<p> Details of the raw response from the foundation model output. </p>"
|
3874 | 3879 | },
|
| 3880 | + "reasoningContent":{ |
| 3881 | + "shape":"ReasoningContentBlock", |
| 3882 | + "documentation":"<p>Contains content about the reasoning that the model made during the post-processing step.</p>" |
| 3883 | + }, |
3875 | 3884 | "traceId":{
|
3876 | 3885 | "shape":"TraceId",
|
3877 | 3886 | "documentation":"<p>The unique identifier of the trace.</p>"
|
|
3922 | 3931 | "shape":"RawResponse",
|
3923 | 3932 | "documentation":"<p> Details of the raw response from the foundation model output. </p>"
|
3924 | 3933 | },
|
| 3934 | + "reasoningContent":{ |
| 3935 | + "shape":"ReasoningContentBlock", |
| 3936 | + "documentation":"<p>Contains content about the reasoning that the model made during the pre-processing step. </p>" |
| 3937 | + }, |
3925 | 3938 | "traceId":{
|
3926 | 3939 | "shape":"TraceId",
|
3927 | 3940 | "documentation":"<p>The unique identifier of the trace.</p>"
|
|
3978 | 3991 | },
|
3979 | 3992 | "parserMode":{
|
3980 | 3993 | "shape":"CreationMode",
|
3981 |
| - "documentation":"<p>Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the <code>promptType</code>. If you set the field as <code>OVERRIDEN</code>, the <code>overrideLambda</code> field in the <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_PromptOverrideConfiguration.html\">PromptOverrideConfiguration</a> must be specified with the ARN of a Lambda function.</p>" |
| 3994 | + "documentation":"<p>Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the <code>promptType</code>. If you set the field as <code>OVERRIDDEN</code>, the <code>overrideLambda</code> field in the <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_PromptOverrideConfiguration.html\">PromptOverrideConfiguration</a> must be specified with the ARN of a Lambda function.</p>" |
3982 | 3995 | },
|
3983 | 3996 | "promptCreationMode":{
|
3984 | 3997 | "shape":"CreationMode",
|
|
4147 | 4160 | "documentation":"<p>Contains the raw output from the foundation model.</p>",
|
4148 | 4161 | "sensitive":true
|
4149 | 4162 | },
|
| 4163 | + "ReasoningContentBlock":{ |
| 4164 | + "type":"structure", |
| 4165 | + "members":{ |
| 4166 | + "reasoningText":{ |
| 4167 | + "shape":"ReasoningTextBlock", |
| 4168 | + "documentation":"<p>Contains information about the reasoning that the model used to return the content in the content block.</p>" |
| 4169 | + }, |
| 4170 | + "redactedContent":{ |
| 4171 | + "shape":"Blob", |
| 4172 | + "documentation":"<p>The content in the reasoning that was encrypted by the model provider for trust and safety reasons.</p>" |
| 4173 | + } |
| 4174 | + }, |
| 4175 | + "documentation":"<p>Contains content regarding the reasoning that the foundation model made with respect to the content in the content block. Reasoning refers to a Chain of Thought (CoT) that the model generates to enhance the accuracy of its final response.</p>", |
| 4176 | + "sensitive":true, |
| 4177 | + "union":true |
| 4178 | + }, |
| 4179 | + "ReasoningTextBlock":{ |
| 4180 | + "type":"structure", |
| 4181 | + "required":["text"], |
| 4182 | + "members":{ |
| 4183 | + "signature":{ |
| 4184 | + "shape":"String", |
| 4185 | + "documentation":"<p>A hash of all the messages in the conversation to ensure that the content in the reasoning text block isn't tampered with. You must submit the signature in subsequent <code>Converse</code> requests, in addition to the previous messages. If the previous messages are tampered with, the response throws an error.</p>" |
| 4186 | + }, |
| 4187 | + "text":{ |
| 4188 | + "shape":"String", |
| 4189 | + "documentation":"<p>Text describing the reasoning that the model used to return the content in the content block.</p>" |
| 4190 | + } |
| 4191 | + }, |
| 4192 | + "documentation":"<p>Contains information about the reasoning that the model used to return the content in the content block.</p>", |
| 4193 | + "sensitive":true |
| 4194 | + }, |
4150 | 4195 | "RepromptResponse":{
|
4151 | 4196 | "type":"structure",
|
4152 | 4197 | "members":{
|
|
0 commit comments