[aws_bedrock] Map Converse API nested inference parameters and input/output messages to gen_ai fields. - #20868
Open
muskan-agarwal26 wants to merge 2 commits into
Open
Conversation
…output messages to gen_ai fields.
Contributor
✅ Elastic Docs Style Checker (Vale)No issues found on modified lines! The Vale linter checks documentation changes against the Elastic Docs style guide. To use Vale locally or report issues, refer to Elastic style guide for Vale. |
Contributor
|
/test |
efd6
reviewed
Aug 25, 2026
Comment on lines
+140
to
+145
| - name: gen_ai.input.messages | ||
| type: flattened | ||
| description: Chat history provided to the model as input. | ||
| - name: gen_ai.output.messages | ||
| type: flattened | ||
| description: Messages returned by the model for this invocation. |
Contributor
There was a problem hiding this comment.
Suggested change
| - name: gen_ai.input.messages | |
| type: flattened | |
| description: Chat history provided to the model as input. | |
| - name: gen_ai.output.messages | |
| type: flattened | |
| description: Messages returned by the model for this invocation. | |
| - name: gen_ai.input.messages | |
| external: ecs | |
| - name: gen_ai.output.messages | |
| external: ecs |
Comment on lines
+526
to
+531
| if (ctx.gen_ai == null) { | ||
| ctx.gen_ai = new HashMap(); | ||
| } | ||
| if (ctx.gen_ai.output == null) { | ||
| ctx.gen_ai.output = new HashMap(); | ||
| } |
Contributor
There was a problem hiding this comment.
Suggested change
| if (ctx.gen_ai == null) { | |
| ctx.gen_ai = new HashMap(); | |
| } | |
| if (ctx.gen_ai.output == null) { | |
| ctx.gen_ai.output = new HashMap(); | |
| } | |
| ctx.gen_ai = ctx.gen_ai ?: [:]; | |
| ctx.gen_ai.output = ctx.gen_ai.output ?: [:]; |
Contributor
|
✅ All changelog entries have the correct PR link. |
💔 Build Failed
Failed CI StepsHistory
|
Contributor
|
This is failing because 8.x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Type of change
Proposed commit message
Checklist
changelog.ymlfile.How to test this PR locally
Related issues