Retrieve results outside the knowledgebase if answer cannot be found in the knowledgebase

0

Hi, Is there a way to get results from the web for the prompt if the answer is not available in the knowledgebase using Retrieve or RetrieveAndGenerate.

Thanks, Guru

Guru
已提问 1 个月前79 查看次数
2 回答
0
已接受的回答

https://docs.aws.amazon.com/bedrock/latest/userguide/agents-how.html with agents, you can design multi step orchestration. You can query your kb as first step, if no result found you can do alternative search with either of the following. you can do Kendra web crawler or write a lambda function to do web search via API or web scraping to get relevant information. https://docs.aws.amazon.com/kendra/latest/dg/data-source-web-crawler.html

profile pictureAWS
专家
SriniV
已回答 1 个月前
0

Hello,

If you are talking about Amazon Q which is integrated into AWS then the answer is no. However, you can build your custom Q models.

https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/what-is.html

profile picture
Julian
已回答 1 个月前
  • Sorry, I should have been clear. I have been using the bedrock agent runtime api to query the results from the knowledgebase. I have the pdf documents loaded in the knowledgebase. But the answer is not available in the knowledgebase. Instead I would like to get the answer from the web if the answer is not available in the knowledgebase.

    { "retrievalQuery": { "text": "what are causes of blurred vision?" }, "retrievalConfiguration": { "vectorSearchConfiguration": { "numberOfResults": 1

        }
    }
    

    }

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容