Pamela Fox

Results 709 comments of Pamela Fox
trafficstars

Ah, sorry! You actually need to change it in the frontend, in Chat.tsx: https://github.com/Azure-Samples/azure-search-openai-demo/blob/29355ec72e78404b3f1ad473a0695f8ff930226e/app/frontend/src/pages/chat/Chat.tsx#L36 That's because the frontend sends top to the backend here: https://github.com/Azure-Samples/azure-search-openai-demo/blob/29355ec72e78404b3f1ad473a0695f8ff930226e/app/frontend/src/pages/chat/Chat.tsx#L148 If you removed that line...

That looks like a permission error with the shell scripts. Try `chmod +x scripts/prepdocs.sh` and similarly for all shell files.

@surendransuri That error indicates a lack of permissions in your Azure account. Please make sure your account has all the permissions described here: https://github.com/Azure-Samples/azure-search-openai-demo?tab=readme-ov-file#azure-account-requirements @amarpatel-xx Please share the exact error,...

I also see this when editing .vscode/settings.json, so not sure that it should only be a dev container issue?

Hi Eve, glad you like the extension. The starred favorites are stored in localStorage, which isn't particularly easy to transfer over. You can see the localStorage if you use the...

We are experiencing an issue where Codespaces gives the recommended pop-up for an extension that was already installed in devcontainer.json but is also listed in extensions.json- https://github.com/Azure/azure-dev/issues/951 Is the best...

Dug into this with @tonybaloney, the issue is that aiohttp module requires multidict which does not have a 3.12 wheel yet, and your computer lacks a compiler for making that...

I believe you're looking for logging of user question/answers? If so, we discussed it recently here, along with some existing solutions: https://github.com/Azure-Samples/azure-search-openai-demo/issues/1226

You would add a new route in app.py, and that new route would just call the search() method of the SearchClient with the user's query and return the documents. You'd...

Yep, that sounds like a good start!