Pamela Fox
Pamela Fox
Is this happening locally or on production? If it's happening locally, can you trace this code in decorators.py? I assume it's what is producing the 403: ``` def authenticated(route_fn: Callable[[Dict[str,...
Hm, so I presume you have user authentication enabled, correct? I have not attempted setting up CI/CD for this app with user authentication enabled. It's possible we need to do...
Interesting. I wonder if you could try ReadableStream.cancel() method, as ReadableStream() is what we use in the frontend: https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/cancel The spec says that sending a cancel event should attempt to...
Very cool! You might be able to monitor token usage in your Azure OpenAI metrics dashboard.
Hm I think we would then need to fetch all the possible categories from the search index? @mattgotteiner Thoughts on this one? I think we include category in this demo...
Okay, it doesn't seem as high priority as other things and would be a breaking change. I'll try to add more tooltips to settings menu for now.
Yes, you'd need to change some code. Currently the approach files like chatreadretrieveread.py call approach.py:compute_text_embedding to return a VectorizedQuery for the embedding field, and they pass that to the approach.py:search...
If you're trying to use exhaustive KNN, I don't think you need to add a new profile - you can just send exhaustive=True in VectorizedQuery constructor. As to what profile...
Can you check Azure Monitor to get a better traceback for that error? https://github.com/Azure-Samples/azure-search-openai-demo/blob/main/docs/appservice.md#checking-azure-monitor-for-errors
Okay, so there is an issue with your permissions for the search service for some reason. Can you follow the steps from this comment to inspect your roles? https://github.com/Azure-Samples/azure-search-openai-demo/issues/1398#issuecomment-1989190755 SEARCH_SECRET_NAME...