Issues on RAG application over large data
Hi,
We have built one of the RAG applications where the source data is in SharePoint and have used Azure AI search, Azure OpenAI and Azure storage.
We have populated azure container with all the files(around 1100) in a sharepoint site from multiple document libraries through connectors in the logic apps and created an AI search indexer using AI search API endpoints.
This is our index fields architecture.
We have used Azure OpenAI over the AI search indexer and deployed the bot as a web app using Azure Chat playground built in feature.
Our OpenAI parameters:
Strictness: 3
Retrieved documents: 8
temperature: 0
Top P :1
With the above application we are facing few issues such as:
- An Error occurred. Answers can't be saved this time. If the problem persists please contact administrator. or There was an error generating a response....
We have looked into multiple QnA threads for the above issue in both Microsoft and OpenAI forums but couldn't get a solution which is completely solving the issue.
- For the same question we are getting proper answer at sometime and we are shown with response: The requested information is not found in the retrieved data. Please try another query or topic.
We were expecting a slight difference in response format but not any information about the question which is existing in the data and answered by the bot occasionally.
Please let us know if we can do anything to avoid above two issues.
Thank you!