Pamela Fox
Pamela Fox
Okay, so it sounds like you're awaiting quota to use PTUs on eastus2? For the filter, you can request disabling it via a form linked from the Portal. Let them...
Good question! I believe many customers specifically track token usage in either Azure API Management or Application Insights (Azure Monitor). Have you read through https://learn.microsoft.com/en-us/azure/ai-services/openai/how-to/monitoring to see what it recommends?
The requirements.txt is inside app/backend, and that's what azd deploys per the azure.yaml file. Are you deploying some different way?
You should cd into app/backend and run the deploy from there, in that case. You'll also need to run npm install from the frontend folder as a first step. You...
Have you tried doing "git pull"? That would work if your local copy was a clone of the original, and it would make you merge any changes. If your local...
* Could you provide a longer traceback? I assume it happened with a batch embeddings call but want to confirm. * Is this using openai.com OpenAI or Azure OpenAI? *...
Hm, it seems like this error is coming from the underlying embeddings service from Azure OpenAI. I've pinged the folks working on that to see if they can provide insights,...
It should be a slightly different traceback, but I assume you mean the final error is the same. We're trying to figure out how we can replicate this or what's...
Can you add logging to prepdocs.py? That will show request headers from the openai request. Bottom of file should look like: import logging logging.basicConfig(level=logging.DEBUG) loop = asyncio.get_event_loop() file_strategy = loop.run_until_complete(setup_file_strategy(azd_credential,...
Hm, my API key when using AzureDefaultCredential is 2095 characters, I wonder if that's the issue. Can you check if you're using `credential` or `AzureKeyCredential` on this line? azure_open_ai_credential: Union[AsyncTokenCredential,...