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
demandé il y a 2 mois92 vues
1 réponse
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
répondu il y a un mois
  • Thanks very much Osvaldo. I'll give it a try!

  • Let me know if this solution works

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions