File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ AZURE_AI_PROJECT_NAME=
1515AZURE_AI_MODEL_DEPLOYMENT_NAME = gpt-4o
1616AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME = gpt-4o
1717# APPLICATIONINSIGHTS_CONNECTION_STRING=
18- AZURE_AI_AGENT_PROJECT_ENDPOINT =
18+ AZURE_AI_AGENT_ENDPOINT =
1919
2020BACKEND_API_URL = http://localhost:8000
2121FRONTEND_SITE_NAME = http://127.0.0.1:3000
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def __init__(self):
4949 self .AZURE_AI_SUBSCRIPTION_ID = self ._get_required ("AZURE_AI_SUBSCRIPTION_ID" )
5050 self .AZURE_AI_RESOURCE_GROUP = self ._get_required ("AZURE_AI_RESOURCE_GROUP" )
5151 self .AZURE_AI_PROJECT_NAME = self ._get_required ("AZURE_AI_PROJECT_NAME" )
52- self .AZURE_AI_AGENT_PROJECT_ENDPOINT = self ._get_required ("AZURE_AI_AGENT_PROJECT_ENDPOINT " )
52+ self .AZURE_AI_AGENT_ENDPOINT = self ._get_required ("AZURE_AI_AGENT_ENDPOINT " )
5353
5454 # Cached clients and resources
5555 self ._azure_credentials = None
@@ -175,7 +175,7 @@ def get_ai_project_client(self):
175175 "Unable to acquire Azure credentials; ensure DefaultAzureCredential is configured"
176176 )
177177
178- endpoint = self .AZURE_AI_AGENT_PROJECT_ENDPOINT
178+ endpoint = self .AZURE_AI_AGENT_ENDPOINT
179179 self ._ai_project_client = AIProjectClient (endpoint = endpoint , credential = credential )
180180
181181 return self ._ai_project_client
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class Config:
2626 AZURE_AI_SUBSCRIPTION_ID = config .AZURE_AI_SUBSCRIPTION_ID
2727 AZURE_AI_RESOURCE_GROUP = config .AZURE_AI_RESOURCE_GROUP
2828 AZURE_AI_PROJECT_NAME = config .AZURE_AI_PROJECT_NAME
29- AZURE_AI_AGENT_PROJECT_ENDPOINT = config .AZURE_AI_AGENT_PROJECT_ENDPOINT
29+ AZURE_AI_AGENT_ENDPOINT = config .AZURE_AI_AGENT_ENDPOINT
3030
3131 @staticmethod
3232 def GetAzureCredentials ():
You can’t perform that action at this time.
0 commit comments