How to restrict number of words to be retrieved to a limit 50 using filter attribute?

0

{ "retrievalQuery": { "text": "What is aws?" }, "retrievalConfiguration": { "vectorSearchConfiguration": { "numberOfResults": 1 } } } }

  • any answers for this is much appreciated?

Guru
asked 24 days ago77 views
1 Answer
0

Hi Guru,

I apologize for responding to your post so late. I've been researching how to restrict the number of words retrieved to a maximum of 50 using the filter attribute. Unfortunately, Amazon Bedrock doesn't natively support truncating text responses based on word count using metadata attributes. Therefore, you would need to manage this requirement through:

  1. Calculate the numberOfWords for each document during pre-processing. Include this custom metadata in the document. For example, you can add "numberOfWords": 76 to indicate the total word count.
  2. Amazon Bedrock's filtering capabilities enable you to filter based on numerical comparisons in metadata values.
  3. You can query using a filter based on numberOfWords < 50 to include the documents that match this attribute.

⚠️ I haven't tested this solution, but it may work.


ℹ️ However, I believe preprocessing will be necessary to achieve this.

profile picture
EXPERT
answered 16 days ago
  • Thanks very much Osvaldo. I'll give it a try!

  • Let me know if this solution works

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions