Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
44 views

I’m testing Azure Agent Retrieval with Azure AI Search and Azure OpenAI integration. However, instead of getting a natural language LLM-generated answer, the response only returns raw JSON with ...
roczstar's user avatar
0 votes
1 answer
54 views

Using Azure's AI Search Service to chunk and read textfiles, the target field values are always NULL. I tried using a simplified example, just for the fields metadata_blob_name / title and ...
Jonathan's user avatar
  • 2,107
0 votes
1 answer
81 views

I want to update the capacity of a finetuned GPT model on Azure. How can I do so in Python? The following code used to work a few months ago (it used to take a few seconds to update the capacity) but ...
Franck Dernoncourt's user avatar
0 votes
0 answers
138 views

Using the following Microsoft template as my base: https://devblogs.microsoft.com/dotnet/announcing-dotnet-ai-template-preview1/ I want to be able to add my local stdio MCP server as a tool but can't ...
ChewToy's user avatar
  • 756
0 votes
0 answers
59 views

I'm using the OpenAi text-embedding-3-small model to create embeddings for each product category in a file. In total it's about 6000 product categories and they look like this: Vehicles & Parts &...
eztam's user avatar
  • 3,873
0 votes
0 answers
19 views

After I Updated the cdn path so that the icons work, the other icons are showing but the ThumbsUp & ThumbsDown buttons are not showing now. What has to be done for that and why this is happening ...
Sweekriti Pant's user avatar
0 votes
1 answer
134 views

When writing a to_ChatCompletionMessageParam() instance method, I have the following implementation: def to_ChatCompletionMessageParam(self) -> ChatCompletionMessageParam: author: Literal["...
feverdreme's user avatar
2 votes
1 answer
69 views

Invoking a request using AzureChatOpenAI returns response as expected: import os from dotenv import load_dotenv from langchain_openai import AzureChatOpenAI load_dotenv() llm = AzureChatOpenAI( ...
Sanchez333's user avatar
1 vote
1 answer
306 views

I'm encountering an issue when trying to add attributes (metadata) to files in an Azure OpenAI Vector Store. My setup: Azure OpenAI API (version 2025-04-01-preview) Python SDK for file uploads Goal: ...
Luke's user avatar
  • 385
0 votes
0 answers
99 views

I checked Azure's documentation on this topic here but I do not see anything related to this. My goal is to create a question and answer dataset for my RAG solution based on each chunk for a good ...
Mike B's user avatar
  • 3,629
2 votes
2 answers
393 views

I am using AzureOpenAI Service, and I just encountered an issue openai.NotFoundError: Error code: 404 - {'error': {'code': 'DeploymentNotFound', 'message': 'The API deployment for this resource does ...
mengyuest's user avatar
0 votes
1 answer
71 views

Im new to autogen ai currently using autogen version 0.7 Automating using Autogen AI to fetch azure migrate assessment report and generating PPT using autogen agents group chat agent but some times ...
User's user avatar
  • 79
0 votes
0 answers
113 views

I have a fastapi endpoint which streams a response from Azure OpenAI: @router.post("/message", dependencies=[Depends(validate_auth)]) def message(sessionID: str = Form(...), messages: str = ...
Benjamin Gilbert's user avatar
1 vote
1 answer
239 views

The Azure OpenAI SDK appears to follow a one-client-per-session model, but I want to be sure. Since it is still in beta, it is not clear if a single instance of the client returned by ...
kalabic's user avatar
  • 21
0 votes
1 answer
164 views

I follow Azure's tutorial on fine-tuning GPT. Here is the code for the deployment phase: # Deploy fine-tuned model import json import requests token = '[redacted]' subscription = '[redacted]' ...
Franck Dernoncourt's user avatar
0 votes
1 answer
878 views

I have successfully deployed a model (text-embedding-3-large) using the Azure OpenAI portal, and I'm now trying to integrate it using the OpenAI .NET SDK. The Azure portal itself provides the ...
José Augustinho's user avatar
0 votes
1 answer
166 views

Im triying to do a basic PyRIT project but im not able to use the AzureOpenAI with PyRIT. I have this code woking, but not with PyRIT: from openai import AzureOpenAI client = AzureOpenAI( api_key=&...
user30129718's user avatar
1 vote
1 answer
969 views

I am using DSPy framework (v2.6.4) which uses liteLLM (v1.63.7) to connect to LLMs. While connecting Azure OpenAI via liteLLM (v1.63.7) using the below method (Azure AD Token Refresh - ...
4run4's user avatar
  • 35
0 votes
1 answer
288 views

I am using the Python SDK to connect to Weaviate. Additionally, I am create collection that is able to send requests to Azure OpenAI, using text2vec-azure-openai module. To use that, I am sending X-...
user30039021's user avatar
0 votes
2 answers
246 views

I follow Azure's tutorial on fine-tuning GPT. I'm stuck at the deployment phase. Code: # Deploy fine-tuned model import json import requests token = '[redacted]' subscription = '[redacted]' ...
Franck Dernoncourt's user avatar
3 votes
1 answer
530 views

I created an index on Azure AI Search and connected it to Azure OpenAI using the extra_body. It works perfectly. However, I created a default scoring profile for my index, which boosts documents ...
R_Student's user avatar
  • 809
2 votes
1 answer
290 views

I’m working on a report generation using some rubric’s and a conversation string containing questions and answers for the questions from the user which is captured through openai real-time api. But ...
EPIC PIXELS's user avatar
-1 votes
1 answer
84 views

I used AzureOpenAI Vectorizer to create embeddings in my search index but it is not created in search index why while uploadind documents i only uploaded id,content,title and titleVector and ...
A V Saravanan's user avatar
0 votes
2 answers
574 views

I’m trying to use Azure AI OpenAI to generate responses from a trained model based on a set of data I’ll provide as part of the prompt. My goal is to pass a set of data (e.g., metrics, statistics, or ...
imj's user avatar
  • 470
0 votes
1 answer
268 views

We are using Azure Devops Server 2022 on-premise and we have a private Azure OpenAI instance enabled with a private endpoint. In VSTS marketplace, we were able to find many extensions: https://...
Vowneee's user avatar
  • 1,551

1
2 3 4 5
11