Feasibility of Using Azure OpenAI for Word Document Modification
Hello everyone, We are currently exploring the use of Azure OpenAI resources, and possibly Prompt Flow, for a project that involves working with docx files. Our goal is to upload a docx file, prompt an AI model to make modifications, and then save the…
Disallow automatic chunking
When using JSON files as a data source, I want these files to not be chunked automatically by the Azure open ai service (the files have a reasonable length which should easily fit in the context size of the open ai models). Where does this chunking…
Gpt-4o-mini doesn't support structured outputs in Azure AI Studio deployments
The gpt-4o-mini accessible through Open AI's endpoint supports structured outputs but through Azure it does not. The following error is seen when structured outputs are used using gpt-4o-mini from Azure: openai.BadRequestError: Error code: 400 -…
Can't find GPT4-turbo model (2024-08-01-preview) in model catalog Azure portal
I can't find the GPT4-turbo model (2024-08-01-preview) in the model catalogue in the Azure portal. Therefore I can't use it using the Azure OpenAI api. I'm using a free developer account and tried different regions already for both the resource-group and…
How can I know when I can use a certain version of the GPT model in Azure?
I'd like to use gpt4o-audio-preview, but I can't find it in my deployment model. Can I get the timeline for when I can use it?
Getting have exceeded token rate limit of your current OpenAI
Hi when using chat playground from azure open ai browser i get the error: have exceeded token rate limit of your current OpenAI S0 pricing tier. Please retry after 86400 seconds. I have tried in diferent days but always obtain the same error. If i send…
After Deploying Web App from AI Studio Chat Playground, getting error AsyncClient.__init__()
getting below error after deployment webapp from AzureAI studio chat playground AsyncClient.init() got an unexpected keyword argument 'proxies'
Indexing Multilingual Documents with Azure AI Foundry: OCR, Language Detection, and Translation
Hey everyone, I have a few questions about document indexing. I'm using Azure AI Foundry to build an AI chatbot and have uploaded my documents to blob storage in Azure AI Studio (Hub resources from the Foundry directly). My documents are a mix of types…
Auto Indexing Issue in Azure AI Foundry Playground
Hi, I have created one project to use gpt-4o with my own data. Currently, I want to use my own data with the model. I try to auto update my index daily, but I have issues after adding new data source and choose the Data in Azure AI Studio in the…
Should I go for Fine-tuning?
I trying to create a RAG chatbot that uses formal documents for database. I created a promptflow where I added some features like query expansion etc. .My problem is that the prompt flow is slow. The average response is around 14 seconds which is just…
Target URL missing in azure ai studio after finening a model
I've deployed a GPT-4o mini model in Azure AI Studio, but the Target URI in the Endpoint section is missing (shows as "---"). The deployment seems successful otherwise, with an API key provided. How can I obtain the correct endpoint URI for my…
How to fix "Resource not found" error with gpt-35-turbo in Python
Using gpt-35-turbo to correct automated grammar for part-time work on Windows 7 with Python 3.8. The openai library version in use is 0.27.0, and possible issues have already been checked.
How to pass custom fields from AI Search index to OpenAI chat completions citation object?
When calling the chat completion through the python SDK: completion = await client.chat.completions.create(...) I use an Azure AI Search index as a data source. The fields mapping available strictly cover only this set: …
Fixing "Ingestion failed. Ingestion did not complete within the expected time" Error in Azure Computer Vision API
Experiencing an error while implementing video analysis using Azure Computer Vision and GPT-4 Vision. The code was functioning correctly for the first few attempts, but is now returning the following error: "Ingestion failed. Ingestion did not…
Clarification on Token Rate Limits for S0 Standard Pricing Tier and Global Standard Deployment
I am encountering the following error while using the Azure OpenAI service: openai.RateLimitError: Error code: 429 - {'error': {'code': '429', 'message': 'Requests to the ChatCompletions_Create Operation under Azure OpenAI API version 2024-10-21 have…
Compliance of Azure OpenAI Assistant File Search with Regional Data Storage in Australia
I am wanting to use the File Search feature with Azure OpenAI assistants. However, to be compliant, I need my data to be stored and processed solely within Australia. If I were to use standard OpenAI models deployed in the Australia East region, would…
Getting token rate limit exceeded error
Hi, In my application, I am trying to connect to gpt-4 with api_version = 2024-08-01-preview and using a trial account. While running the application, I am geeting the error: "Requests to the ChatCompletions_Create Operation under Azure OpenAI API…
Deploy the prompt flow in Azure AI Studio to our own Mobile Application
Hi, I already successfully deploy my prompt flow in Azure AI Studio and the next step is I need to connect it with my own mobile application. I want to seek advice on what is the next step I need to do after the deployment? How to properly connect those…
"InternalServerError: Error code: 500 - {'error': {'code': 'InternalServerError', 'message': 'Backend returned unexpected response. Please contact Microsoft for help.'}}"
I am trying to connect to Llama-3-8B-instruct. Different authentications give different errors but nothing goes through. Here is my code. import os import requests from dotenv import load_dotenv Load environment variables from…