Skip to content

Commit 0d7ab41

Browse files
authored
Merge pull request Significant-Gravitas#2355 from yunzheng1112/fix-azure-config
* fix path of Azure config file * default azure_api_type -> azure
2 parents 7eed489 + 45f490e commit 0d7ab41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

autogpt/config/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def get_azure_deployment_id_for_model(self, model: str) -> str:
145145
else:
146146
return ""
147147

148-
AZURE_CONFIG_FILE = os.path.join(os.path.dirname(__file__), "..", "azure.yaml")
148+
AZURE_CONFIG_FILE = os.path.join(os.path.dirname(__file__), "../..", "azure.yaml")
149149

150150
def load_azure_config(self, config_file: str = AZURE_CONFIG_FILE) -> None:
151151
"""

azure.yaml.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
azure_api_type: azure_ad
1+
azure_api_type: azure
22
azure_api_base: your-base-url-for-azure
33
azure_api_version: api-version-for-azure
44
azure_model_map:

0 commit comments

Comments
 (0)