1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/document"
smithydocument "github.com/aws/smithy-go/document"
)
// The model must request at least one tool (no text is generated). For example,
// {"any" : {}} .
type AnyToolChoice struct {
noSmithyDocumentSerde
}
// The Model automatically decides if a tool should be called or whether to
// generate text instead. For example, {"auto" : {}} .
type AutoToolChoice struct {
noSmithyDocumentSerde
}
// A block of content for a message that you pass to, or receive from, a model
// with the [Converse]or [ConverseStream] API operations.
//
// The following types satisfy this interface:
//
// ContentBlockMemberDocument
// ContentBlockMemberGuardContent
// ContentBlockMemberImage
// ContentBlockMemberText
// ContentBlockMemberToolResult
// ContentBlockMemberToolUse
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
type ContentBlock interface {
isContentBlock()
}
// A document to include in the message.
type ContentBlockMemberDocument struct {
Value DocumentBlock
noSmithyDocumentSerde
}
func (*ContentBlockMemberDocument) isContentBlock() {}
// Contains the content to assess with the guardrail. If you don't specify
// guardContent in a call to the Converse API, the guardrail (if passed in the
// Converse API) assesses the entire message.
//
// For more information, see Use a guardrail with the Converse API in the Amazon
// Bedrock User Guide.
type ContentBlockMemberGuardContent struct {
Value GuardrailConverseContentBlock
noSmithyDocumentSerde
}
func (*ContentBlockMemberGuardContent) isContentBlock() {}
// Image to include in the message.
//
// This field is only supported by Anthropic Claude 3 models.
type ContentBlockMemberImage struct {
Value ImageBlock
noSmithyDocumentSerde
}
func (*ContentBlockMemberImage) isContentBlock() {}
// Text to include in the message.
type ContentBlockMemberText struct {
Value string
noSmithyDocumentSerde
}
func (*ContentBlockMemberText) isContentBlock() {}
// The result for a tool request that a model makes.
type ContentBlockMemberToolResult struct {
Value ToolResultBlock
noSmithyDocumentSerde
}
func (*ContentBlockMemberToolResult) isContentBlock() {}
// Information about a tool use request from a model.
type ContentBlockMemberToolUse struct {
Value ToolUseBlock
noSmithyDocumentSerde
}
func (*ContentBlockMemberToolUse) isContentBlock() {}
// A bock of content in a streaming response.
//
// The following types satisfy this interface:
//
// ContentBlockDeltaMemberText
// ContentBlockDeltaMemberToolUse
type ContentBlockDelta interface {
isContentBlockDelta()
}
// The content text.
type ContentBlockDeltaMemberText struct {
Value string
noSmithyDocumentSerde
}
func (*ContentBlockDeltaMemberText) isContentBlockDelta() {}
// Information about a tool that the model is requesting to use.
type ContentBlockDeltaMemberToolUse struct {
Value ToolUseBlockDelta
noSmithyDocumentSerde
}
func (*ContentBlockDeltaMemberToolUse) isContentBlockDelta() {}
// The content block delta event.
type ContentBlockDeltaEvent struct {
// The block index for a content block delta event.
//
// This member is required.
ContentBlockIndex *int32
// The delta for a content block delta event.
//
// This member is required.
Delta ContentBlockDelta
noSmithyDocumentSerde
}
// Content block start information.
//
// The following types satisfy this interface:
//
// ContentBlockStartMemberToolUse
type ContentBlockStart interface {
isContentBlockStart()
}
// Information about a tool that the model is requesting to use.
type ContentBlockStartMemberToolUse struct {
Value ToolUseBlockStart
noSmithyDocumentSerde
}
func (*ContentBlockStartMemberToolUse) isContentBlockStart() {}
// Content block start event.
type ContentBlockStartEvent struct {
// The index for a content block start event.
//
// This member is required.
ContentBlockIndex *int32
// Start information about a content block start event.
//
// This member is required.
Start ContentBlockStart
noSmithyDocumentSerde
}
// A content block stop event.
type ContentBlockStopEvent struct {
// The index for a content block.
//
// This member is required.
ContentBlockIndex *int32
noSmithyDocumentSerde
}
// Metrics for a call to [Converse].
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
type ConverseMetrics struct {
// The latency of the call to Converse , in milliseconds.
//
// This member is required.
LatencyMs *int64
noSmithyDocumentSerde
}
// The output from a call to [Converse].
//
// The following types satisfy this interface:
//
// ConverseOutputMemberMessage
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
type ConverseOutput interface {
isConverseOutput()
}
// The message that the model generates.
type ConverseOutputMemberMessage struct {
Value Message
noSmithyDocumentSerde
}
func (*ConverseOutputMemberMessage) isConverseOutput() {}
// A conversation stream metadata event.
type ConverseStreamMetadataEvent struct {
// The metrics for the conversation stream metadata event.
//
// This member is required.
Metrics *ConverseStreamMetrics
// Usage information for the conversation stream event.
//
// This member is required.
Usage *TokenUsage
// The trace object in the response from [ConverseStream] that contains information about the
// guardrail behavior.
//
// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
Trace *ConverseStreamTrace
noSmithyDocumentSerde
}
// Metrics for the stream.
type ConverseStreamMetrics struct {
// The latency for the streaming request, in milliseconds.
//
// This member is required.
LatencyMs *int64
noSmithyDocumentSerde
}
// The messages output stream
//
// The following types satisfy this interface:
//
// ConverseStreamOutputMemberContentBlockDelta
// ConverseStreamOutputMemberContentBlockStart
// ConverseStreamOutputMemberContentBlockStop
// ConverseStreamOutputMemberMessageStart
// ConverseStreamOutputMemberMessageStop
// ConverseStreamOutputMemberMetadata
type ConverseStreamOutput interface {
isConverseStreamOutput()
}
// The messages output content block delta.
type ConverseStreamOutputMemberContentBlockDelta struct {
Value ContentBlockDeltaEvent
noSmithyDocumentSerde
}
func (*ConverseStreamOutputMemberContentBlockDelta) isConverseStreamOutput() {}
// Start information for a content block.
type ConverseStreamOutputMemberContentBlockStart struct {
Value ContentBlockStartEvent
noSmithyDocumentSerde
}
func (*ConverseStreamOutputMemberContentBlockStart) isConverseStreamOutput() {}
// Stop information for a content block.
type ConverseStreamOutputMemberContentBlockStop struct {
Value ContentBlockStopEvent
noSmithyDocumentSerde
}
func (*ConverseStreamOutputMemberContentBlockStop) isConverseStreamOutput() {}
// Message start information.
type ConverseStreamOutputMemberMessageStart struct {
Value MessageStartEvent
noSmithyDocumentSerde
}
func (*ConverseStreamOutputMemberMessageStart) isConverseStreamOutput() {}
// Message stop information.
type ConverseStreamOutputMemberMessageStop struct {
Value MessageStopEvent
noSmithyDocumentSerde
}
func (*ConverseStreamOutputMemberMessageStop) isConverseStreamOutput() {}
// Metadata for the converse output stream.
type ConverseStreamOutputMemberMetadata struct {
Value ConverseStreamMetadataEvent
noSmithyDocumentSerde
}
func (*ConverseStreamOutputMemberMetadata) isConverseStreamOutput() {}
// The trace object in a response from [ConverseStream]. Currently, you can only trace guardrails.
//
// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
type ConverseStreamTrace struct {
// The guardrail trace object.
Guardrail *GuardrailTraceAssessment
noSmithyDocumentSerde
}
// The trace object in a response from [Converse]. Currently, you can only trace guardrails.
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
type ConverseTrace struct {
// The guardrail trace object.
Guardrail *GuardrailTraceAssessment
noSmithyDocumentSerde
}
// A document to include in a message.
type DocumentBlock struct {
// The format of a document, or its extension.
//
// This member is required.
Format DocumentFormat
// A name for the document. The name can only contain the following characters:
//
// - Alphanumeric characters
//
// - Whitespace characters (no more than one in a row)
//
// - Hyphens
//
// - Parentheses
//
// - Square brackets
//
// This field is vulnerable to prompt injections, because the model might
// inadvertently interpret it as instructions. Therefore, we recommend that you
// specify a neutral name.
//
// This member is required.
Name *string
// Contains the content of the document.
//
// This member is required.
Source DocumentSource
noSmithyDocumentSerde
}
// Contains the content of a document.
//
// The following types satisfy this interface:
//
// DocumentSourceMemberBytes
type DocumentSource interface {
isDocumentSource()
}
// The raw bytes for the document. If you use an Amazon Web Services SDK, you
// don't need to encode the bytes in base64.
type DocumentSourceMemberBytes struct {
Value []byte
noSmithyDocumentSerde
}
func (*DocumentSourceMemberBytes) isDocumentSource() {}
// A behavior assessment of the guardrail policies used in a call to the Converse
// API.
type GuardrailAssessment struct {
// The content policy.
ContentPolicy *GuardrailContentPolicyAssessment
// The contextual grounding policy used for the guardrail assessment.
ContextualGroundingPolicy *GuardrailContextualGroundingPolicyAssessment
// The sensitive information policy.
SensitiveInformationPolicy *GuardrailSensitiveInformationPolicyAssessment
// The topic policy.
TopicPolicy *GuardrailTopicPolicyAssessment
// The word policy.
WordPolicy *GuardrailWordPolicyAssessment
noSmithyDocumentSerde
}
// Configuration information for a guardrail that you use with the [Converse] operation.
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
type GuardrailConfiguration struct {
// The identifier for the guardrail.
//
// This member is required.
GuardrailIdentifier *string
// The version of the guardrail.
//
// This member is required.
GuardrailVersion *string
// The trace behavior for the guardrail.
Trace GuardrailTrace
noSmithyDocumentSerde
}
// The content block to be evaluated by the guardrail.
//
// The following types satisfy this interface:
//
// GuardrailContentBlockMemberText
type GuardrailContentBlock interface {
isGuardrailContentBlock()
}
// Text within content block to be evaluated by the guardrail.
type GuardrailContentBlockMemberText struct {
Value GuardrailTextBlock
noSmithyDocumentSerde
}
func (*GuardrailContentBlockMemberText) isGuardrailContentBlock() {}
// The content filter for a guardrail.
type GuardrailContentFilter struct {
// The guardrail action.
//
// This member is required.
Action GuardrailContentPolicyAction
// The guardrail confidence.
//
// This member is required.
Confidence GuardrailContentFilterConfidence
// The guardrail type.
//
// This member is required.
Type GuardrailContentFilterType
noSmithyDocumentSerde
}
// An assessment of a content policy for a guardrail.
type GuardrailContentPolicyAssessment struct {
// The content policy filters.
//
// This member is required.
Filters []GuardrailContentFilter
noSmithyDocumentSerde
}
// The details for the guardrails contextual grounding filter.
type GuardrailContextualGroundingFilter struct {
// The action performed by the guardrails contextual grounding filter.
//
// This member is required.
Action GuardrailContextualGroundingPolicyAction
// The score generated by contextual grounding filter.
//
// This member is required.
Score *float64
// The threshold used by contextual grounding filter to determine whether the
// content is grounded or not.
//
// This member is required.
Threshold *float64
// The contextual grounding filter type.
//
// This member is required.
Type GuardrailContextualGroundingFilterType
noSmithyDocumentSerde
}
// The policy assessment details for the guardrails contextual grounding filter.
type GuardrailContextualGroundingPolicyAssessment struct {
// The filter details for the guardrails contextual grounding filter.
Filters []GuardrailContextualGroundingFilter
noSmithyDocumentSerde
}
// A content block for selective guarding with the [Converse] or [ConverseStream] API operations.
//
// The following types satisfy this interface:
//
// GuardrailConverseContentBlockMemberText
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
type GuardrailConverseContentBlock interface {
isGuardrailConverseContentBlock()
}
// The text to guard.
type GuardrailConverseContentBlockMemberText struct {
Value GuardrailConverseTextBlock
noSmithyDocumentSerde
}
func (*GuardrailConverseContentBlockMemberText) isGuardrailConverseContentBlock() {}
// A text block that contains text that you want to assess with a guardrail. For
// more information, see GuardrailConverseContentBlock.
type GuardrailConverseTextBlock struct {
// The text that you want to guard.
//
// This member is required.
Text *string
// The qualifier details for the guardrails contextual grounding filter.
Qualifiers []GuardrailConverseContentQualifier
noSmithyDocumentSerde
}
// A custom word configured in a guardrail.
type GuardrailCustomWord struct {
// The action for the custom word.
//
// This member is required.
Action GuardrailWordPolicyAction
// The match for the custom word.
//
// This member is required.
Match *string
noSmithyDocumentSerde
}
// A managed word configured in a guardrail.
type GuardrailManagedWord struct {
// The action for the managed word.
//
// This member is required.
Action GuardrailWordPolicyAction
// The match for the managed word.
//
// This member is required.
Match *string
// The type for the managed word.
//
// This member is required.
Type GuardrailManagedWordType
noSmithyDocumentSerde
}
// The output content produced by the guardrail.
type GuardrailOutputContent struct {
// The specific text for the output content produced by the guardrail.
Text *string
noSmithyDocumentSerde
}
// A Personally Identifiable Information (PII) entity configured in a guardrail.
type GuardrailPiiEntityFilter struct {
// The PII entity filter action.
//
// This member is required.
Action GuardrailSensitiveInformationPolicyAction
// The PII entity filter match.
//
// This member is required.
Match *string
// The PII entity filter type.
//
// This member is required.
Type GuardrailPiiEntityType
noSmithyDocumentSerde
}
// A Regex filter configured in a guardrail.
type GuardrailRegexFilter struct {
// The region filter action.
//
// This member is required.
Action GuardrailSensitiveInformationPolicyAction
// The regesx filter match.
Match *string
// The regex filter name.
Name *string
// The regex query.
Regex *string
noSmithyDocumentSerde
}
// The assessment for aPersonally Identifiable Information (PII) policy.
type GuardrailSensitiveInformationPolicyAssessment struct {
// The PII entities in the assessment.
//
// This member is required.
PiiEntities []GuardrailPiiEntityFilter
// The regex queries in the assessment.
//
// This member is required.
Regexes []GuardrailRegexFilter
noSmithyDocumentSerde
}
// Configuration information for a guardrail that you use with the ConverseStream action.
type GuardrailStreamConfiguration struct {
// The identifier for the guardrail.
//
// This member is required.
GuardrailIdentifier *string
// The version of the guardrail.
//
// This member is required.
GuardrailVersion *string
// The processing mode.
//
// The processing mode. For more information, see Configure streaming response
// behavior in the Amazon Bedrock User Guide.
StreamProcessingMode GuardrailStreamProcessingMode
// The trace behavior for the guardrail.
Trace GuardrailTrace
noSmithyDocumentSerde
}
// The text block to be evaluated by the guardrail.
type GuardrailTextBlock struct {
// The input text details to be evaluated by the guardrail.
//
// This member is required.
Text *string
// The qualifiers describing the text block.
Qualifiers []GuardrailContentQualifier
noSmithyDocumentSerde
}
// Information about a topic guardrail.
type GuardrailTopic struct {
// The action the guardrail should take when it intervenes on a topic.
//
// This member is required.
Action GuardrailTopicPolicyAction
// The name for the guardrail.
//
// This member is required.
Name *string
// The type behavior that the guardrail should perform when the model detects the
// topic.
//
// This member is required.
Type GuardrailTopicType
noSmithyDocumentSerde
}
// A behavior assessment of a topic policy.
type GuardrailTopicPolicyAssessment struct {
// The topics in the assessment.
//
// This member is required.
Topics []GuardrailTopic
noSmithyDocumentSerde
}
// A Top level guardrail trace object. For more information, see ConverseTrace.
type GuardrailTraceAssessment struct {
// The input assessment.
InputAssessment map[string]GuardrailAssessment
// The output from the model.
ModelOutput []string
// the output assessments.
OutputAssessments map[string][]GuardrailAssessment
noSmithyDocumentSerde
}
// The details on the use of the guardrail.
type GuardrailUsage struct {
// The content policy units processed by the guardrail.
//
// This member is required.
ContentPolicyUnits *int32
// The contextual grounding policy units processed by the guardrail.
//
// This member is required.
ContextualGroundingPolicyUnits *int32
// The sensitive information policy free units processed by the guardrail.
//
// This member is required.
SensitiveInformationPolicyFreeUnits *int32
// The sensitive information policy units processed by the guardrail.
//
// This member is required.
SensitiveInformationPolicyUnits *int32
// The topic policy units processed by the guardrail.
//
// This member is required.
TopicPolicyUnits *int32
// The word policy units processed by the guardrail.
//
// This member is required.
WordPolicyUnits *int32
noSmithyDocumentSerde
}
// The word policy assessment.
type GuardrailWordPolicyAssessment struct {
// Custom words in the assessment.
//
// This member is required.
CustomWords []GuardrailCustomWord
// Managed word lists in the assessment.
//
// This member is required.
ManagedWordLists []GuardrailManagedWord
noSmithyDocumentSerde
}
// Image content for a message.
type ImageBlock struct {
// The format of the image.
//
// This member is required.
Format ImageFormat
// The source for the image.
//
// This member is required.
Source ImageSource
noSmithyDocumentSerde
}
// The source for an image.
//
// The following types satisfy this interface:
//
// ImageSourceMemberBytes
type ImageSource interface {
isImageSource()
}
// The raw image bytes for the image. If you use an AWS SDK, you don't need to
// encode the image bytes in base64.
type ImageSourceMemberBytes struct {
Value []byte
noSmithyDocumentSerde
}
func (*ImageSourceMemberBytes) isImageSource() {}
// Base inference parameters to pass to a model in a call to [Converse] or [ConverseStream]. For more
// information, see [Inference parameters for foundation models].
//
// If you need to pass additional parameters that the model supports, use the
// additionalModelRequestFields request field in the call to Converse or
// ConverseStream . For more information, see [Model parameters].
//
// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
// [Model parameters]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
type InferenceConfiguration struct {
// The maximum number of tokens to allow in the generated response. The default
// value is the maximum allowed value for the model that you are using. For more
// information, see [Inference parameters for foundation models].
//
// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
MaxTokens *int32
// A list of stop sequences. A stop sequence is a sequence of characters that
// causes the model to stop generating the response.
StopSequences []string
// The likelihood of the model selecting higher-probability options while
// generating a response. A lower value makes the model more likely to choose
// higher-probability options, while a higher value makes the model more likely to
// choose lower-probability options.
//
// The default value is the default value for the model that you are using. For
// more information, see [Inference parameters for foundation models].
//
// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
Temperature *float32
// The percentage of most-likely candidates that the model considers for the next
// token. For example, if you choose a value of 0.8 for topP , the model selects
// from the top 80% of the probability distribution of tokens that could be next in
// the sequence.
//
// The default value is the default value for the model that you are using. For
// more information, see [Inference parameters for foundation models].
//
// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
TopP *float32
noSmithyDocumentSerde
}
// A message input, or returned from, a call to [Converse] or [ConverseStream].
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
type Message struct {
// The message content. Note the following restrictions:
//
// - You can include up to 20 images. Each image's size, height, and width must
// be no more than 3.75 MB, 8000 px, and 8000 px, respectively.
//
// - You can include up to five documents. Each document's size must be no more
// than 4.5 MB.
//
// - If you include a ContentBlock with a document field in the array, you must
// also include a ContentBlock with a text field.
//
// - You can only include images and documents if the role is user .
//
// This member is required.
Content []ContentBlock
// The role that the message plays in the message.
//
// This member is required.
Role ConversationRole
noSmithyDocumentSerde
}
// The start of a message.
type MessageStartEvent struct {
// The role for the message.
//
// This member is required.
Role ConversationRole
noSmithyDocumentSerde
}
// The stop event for a message.
type MessageStopEvent struct {
// The reason why the model stopped generating output.
//
// This member is required.
StopReason StopReason
// The additional model response fields.
AdditionalModelResponseFields document.Interface
noSmithyDocumentSerde
}
// Payload content included in the response.
type PayloadPart struct {
// Base64-encoded bytes of payload data.
Bytes []byte
noSmithyDocumentSerde
}
// Definition of content in the response stream.
//
// The following types satisfy this interface:
//
// ResponseStreamMemberChunk
type ResponseStream interface {
isResponseStream()
}
// Content included in the response.
type ResponseStreamMemberChunk struct {
Value PayloadPart
noSmithyDocumentSerde
}
func (*ResponseStreamMemberChunk) isResponseStream() {}
// The model must request a specific tool. For example, {"tool" : {"name" : "Your
// tool name"}} .
//
// This field is only supported by Anthropic Claude 3 models.
type SpecificToolChoice struct {
// The name of the tool that the model must request.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// A system content block.
//
// The following types satisfy this interface:
//
// SystemContentBlockMemberGuardContent
// SystemContentBlockMemberText
type SystemContentBlock interface {
isSystemContentBlock()
}
// A content block to assess with the guardrail. Use with the [Converse] or [ConverseStream] API operations.
//
// For more information, see Use a guardrail with the Converse API in the Amazon
// Bedrock User Guide.
//
// [Converse]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html
// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
type SystemContentBlockMemberGuardContent struct {
Value GuardrailConverseContentBlock
noSmithyDocumentSerde
}
func (*SystemContentBlockMemberGuardContent) isSystemContentBlock() {}
// A system prompt for the model.
type SystemContentBlockMemberText struct {
Value string
noSmithyDocumentSerde
}
func (*SystemContentBlockMemberText) isSystemContentBlock() {}
// The tokens used in a message API inference call.
type TokenUsage struct {
// The number of tokens sent in the request to the model.
//
// This member is required.
InputTokens *int32
// The number of tokens that the model generated for the request.
//
// This member is required.
OutputTokens *int32
// The total of input tokens and tokens generated by the model.
//
// This member is required.
TotalTokens *int32
noSmithyDocumentSerde
}
// Information about a tool that you can use with the Converse API. For more
// information, see [Tool use (function calling)]in the Amazon Bedrock User Guide.
//
// The following types satisfy this interface:
//
// ToolMemberToolSpec
//
// [Tool use (function calling)]: https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html
type Tool interface {
isTool()
}
// The specfication for the tool.
type ToolMemberToolSpec struct {
Value ToolSpecification
noSmithyDocumentSerde
}
func (*ToolMemberToolSpec) isTool() {}
// Determines which tools the model should request in a call to Converse or
// ConverseStream . ToolChoice is only supported by Anthropic Claude 3 models and
// by Mistral AI Mistral Large.
//
// The following types satisfy this interface:
//
// ToolChoiceMemberAny
// ToolChoiceMemberAuto
// ToolChoiceMemberTool
type ToolChoice interface {
isToolChoice()
}
// The model must request at least one tool (no text is generated).
type ToolChoiceMemberAny struct {
Value AnyToolChoice
noSmithyDocumentSerde
}
func (*ToolChoiceMemberAny) isToolChoice() {}
// (Default). The Model automatically decides if a tool should be called or
// whether to generate text instead.
type ToolChoiceMemberAuto struct {
Value AutoToolChoice
noSmithyDocumentSerde
}
func (*ToolChoiceMemberAuto) isToolChoice() {}
// The Model must request the specified tool. Only supported by Anthropic Claude 3
// models.
type ToolChoiceMemberTool struct {
Value SpecificToolChoice
noSmithyDocumentSerde
}
func (*ToolChoiceMemberTool) isToolChoice() {}
// Configuration information for the tools that you pass to a model. For more
// information, see [Tool use (function calling)]in the Amazon Bedrock User Guide.
//
// This field is only supported by Anthropic Claude 3, Cohere Command R, Cohere
// Command R+, and Mistral Large models.
//
// [Tool use (function calling)]: https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html
type ToolConfiguration struct {
// An array of tools that you want to pass to a model.
//
// This member is required.
Tools []Tool
// If supported by model, forces the model to request a tool.
ToolChoice ToolChoice
noSmithyDocumentSerde
}
// The schema for the tool. The top level schema type must be object .
//
// The following types satisfy this interface:
//
// ToolInputSchemaMemberJson
type ToolInputSchema interface {
isToolInputSchema()
}
// The JSON schema for the tool. For more information, see [JSON Schema Reference].
//
// [JSON Schema Reference]: https://json-schema.org/understanding-json-schema/reference
type ToolInputSchemaMemberJson struct {
Value document.Interface
noSmithyDocumentSerde
}
func (*ToolInputSchemaMemberJson) isToolInputSchema() {}
// A tool result block that contains the results for a tool request that the model
// previously made.
type ToolResultBlock struct {
// The content for tool result content block.
//
// This member is required.
Content []ToolResultContentBlock
// The ID of the tool request that this is the result for.
//
// This member is required.
ToolUseId *string
// The status for the tool result content block.
//
// This field is only supported Anthropic Claude 3 models.
Status ToolResultStatus
noSmithyDocumentSerde
}
// The tool result content block.
//
// The following types satisfy this interface:
//
// ToolResultContentBlockMemberDocument
// ToolResultContentBlockMemberImage
// ToolResultContentBlockMemberJson
// ToolResultContentBlockMemberText
type ToolResultContentBlock interface {
isToolResultContentBlock()
}
// A tool result that is a document.
type ToolResultContentBlockMemberDocument struct {
Value DocumentBlock
noSmithyDocumentSerde
}
func (*ToolResultContentBlockMemberDocument) isToolResultContentBlock() {}
// A tool result that is an image.
//
// This field is only supported by Anthropic Claude 3 models.
type ToolResultContentBlockMemberImage struct {
Value ImageBlock
noSmithyDocumentSerde
}
func (*ToolResultContentBlockMemberImage) isToolResultContentBlock() {}
// A tool result that is JSON format data.
type ToolResultContentBlockMemberJson struct {
Value document.Interface
noSmithyDocumentSerde
}
func (*ToolResultContentBlockMemberJson) isToolResultContentBlock() {}
// A tool result that is text.
type ToolResultContentBlockMemberText struct {
Value string
noSmithyDocumentSerde
}
func (*ToolResultContentBlockMemberText) isToolResultContentBlock() {}
// The specification for the tool.
type ToolSpecification struct {
// The input schema for the tool in JSON format.
//
// This member is required.
InputSchema ToolInputSchema
// The name for the tool.
//
// This member is required.
Name *string
// The description for the tool.
Description *string
noSmithyDocumentSerde
}
// A tool use content block. Contains information about a tool that the model is
// requesting be run., The model uses the result from the tool to generate a
// response.
type ToolUseBlock struct {
// The input to pass to the tool.
//
// This member is required.
Input document.Interface
// The name of the tool that the model wants to use.
//
// This member is required.
Name *string
// The ID for the tool request.
//
// This member is required.
ToolUseId *string
noSmithyDocumentSerde
}
// The delta for a tool use block.
type ToolUseBlockDelta struct {
// The input for a requested tool.
//
// This member is required.
Input *string
noSmithyDocumentSerde
}
// The start of a tool use block.
type ToolUseBlockStart struct {
// The name of the tool that the model is requesting to use.
//
// This member is required.
Name *string
// The ID for the tool request.
//
// This member is required.
ToolUseId *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isContentBlock() {}
func (*UnknownUnionMember) isContentBlockDelta() {}
func (*UnknownUnionMember) isContentBlockStart() {}
func (*UnknownUnionMember) isConverseOutput() {}
func (*UnknownUnionMember) isConverseStreamOutput() {}
func (*UnknownUnionMember) isDocumentSource() {}
func (*UnknownUnionMember) isGuardrailContentBlock() {}
func (*UnknownUnionMember) isGuardrailConverseContentBlock() {}
func (*UnknownUnionMember) isImageSource() {}
func (*UnknownUnionMember) isResponseStream() {}
func (*UnknownUnionMember) isSystemContentBlock() {}
func (*UnknownUnionMember) isTool() {}
func (*UnknownUnionMember) isToolChoice() {}
func (*UnknownUnionMember) isToolInputSchema() {}
func (*UnknownUnionMember) isToolResultContentBlock() {}
|