Questions tagged [azure-openai]

147 questions
1
vote
0 answers

Unclear how Azure OpenAI endpoint /extensions/chat/completions does the retrieval behind the scenes

I am playing around with this example chat application which retrieves most relevant documents from Cognitive Search to help the chatbot answer users' questions. The document retrieval itself is not a part of the app's code but is abstracted away…
1
vote
2 answers

Data source can't be referred by Azure OpenAI API

I have deployed chat model on Azure OpenAI Studio and given the model my own data source using "Add your data (preview)" feature. On Chat session in Chat playground page, the chat model can give a correct answer based on the data I gave. However,…
Light Yagmi
  • 5,085
  • 12
  • 43
  • 64
1
vote
1 answer

Use plugins from OpenAI on Azure OpenAI

There are many plugins one can use in OpenAI for enhancing the capabilities of their chat. Is it possible to make use of the same plugins for the analogous models in Azure OpenAI?
tobias
  • 501
  • 1
  • 6
  • 15
1
vote
1 answer

Cant find GPT3.5-Turbo-16k on OpenAI Azure

I'm trying to deploy a GPT3.5-Turbo-16k model in Azure (in theory, already available, as announced by Microsoft), but i can't find it in the options, as shown in the image. Deploying a model in Azure: Im using East US with Standard pricing tier. I…
1
vote
1 answer

OpenAI API Error: Resource not found - Text Summarization in NodeJS

Here is the text summarization function. I have valid azure openai API, endpoint through a valid subscription and I have mentioned them in the .env file correctly. I do feel the issue is in this url - ${endpoint}/v1/chat/completions. Please provide…
shejanu
  • 11
  • 3
1
vote
1 answer

Open AI finish response LENGTH

I am calling open AI api with below details and I am getting below response {'value': {'outputs': [{'finishReason': 'LENGTH', 'text': '\n\nThe summary in this JSON format is as follows:\n\nshort_', 'generationTimestamp': 1689303489, 'trackingId':…
GoneCase123
  • 388
  • 4
  • 15
1
vote
1 answer

Can't deploy Azure Open AI models due "No quota is available for this deployment. You can request for more quota."

I wanted to test the gpt-35-turbo-16k model, so I attempted to deploy it. However, I received a message stating that there was no quota available. I initially assumed that it might be due to an existing deployment of the gpt-35-turbo model, so I…
gsubiran
  • 2,012
  • 1
  • 22
  • 33
1
vote
2 answers

Azure OpenAI 'Bring Your Own Data' Feature Not Providing Correct Answers

I've been using Azure's OpenAI and the 'Bring Your Own Data' (BYOD) feature for a while now. Recently, I've encountered an issue where the BYOD feature is not providing the correct answers to certain queries. When I input the same question into the…
1
vote
2 answers

Using Embeddings API in Azure OpenAI

When I use embeddings with Azure OpenAI I am getting 404 (resource not found): EmbeddingsOptions embdOptions = new EmbeddingsOptions(text); Azure.AI.OpenAI.Embeddings response = Task.Run(() =>…
Leon
  • 165
  • 12
1
vote
0 answers

Azure OpenAI Streaming response concept in MS Team Chatbot

The streamingAsync concept in Azure Open AI is quite impressive and will likely enhance the user experience in the MS Teams chatbot. Presently, all send activities occur in a single method call within the bot framework. await…
Rajeesh Menoth
  • 1,704
  • 3
  • 17
  • 33
1
vote
1 answer

Azure OpenAi disable public internet access

In Open AI networking section I have set the "allow access from" to disabled. Due to this configuration I have created private endpoint so I cannot connect to my Open AI via virtual network. However, I can now connect from public internet and from…
Kamsiinov
  • 1,315
  • 2
  • 20
  • 50
1
vote
1 answer

azure ai studio error: Missing header 'chatgpt_url' in request

Greetings fellow developers, I'm facing an obstacle while using the ChatGPT Playground Preview within Azure OpenAI Studio. As someone new to both OpenAI and the Azure platform, I'm seeking assistance with a specific error that I encountered. Here's…
1
vote
1 answer

OpenAI Fine-Tuning error - 'fileName contains an invalid filename: wrong suffix.'

I am trying to fine-tune a GPT model through the Azure OpenAI API. I now need to upload the file to openai using the code below: file_name = "training_data_prepared.jsonl" upload_response = openai.File.create( file=open(file_name, "rb"), …
Curtis
  • 21
  • 3
1
vote
1 answer

Google Sheet Apps Script custom function by Azure OpenAI API

I created a custom function in Google App Script to call the OpenAI API. It was functioning properly, but I am currently transitioning to the Azure OpenAI API service for improved performance and stability. However, I encountered issues when…
1
vote
2 answers

Using Managed Identity to Access Azure OpenAI Service

I'm working with Azure OpenAI service, and want to test its Managed Identity support. According to the docs it supports Managed Identity authentication, for example - using a VM. So I did the following: Created a VM in Azure Assigned it a managed…
ml123
  • 1,059
  • 2
  • 12
  • 27
1 2
3
9 10