We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e549ce0 commit 6608db6Copy full SHA for 6608db6
sdk/ai/azure-ai-projects/tests/test_base.py
@@ -3,6 +3,7 @@
3
# Copyright (c) Microsoft Corporation.
4
# Licensed under the MIT License.
5
# ------------------------------------
6
+import os
7
import random
8
import re
9
import functools
@@ -100,7 +101,7 @@ class TestBase(AzureRecordedTestCase):
100
101
}
102
103
test_agents_params = {
- "model_deployment_name": "gpt-4o",
104
+ "model_deployment_name": os.environ.get("AZURE_AI_PROJECTS_TESTS_AGENTS_MODEL_DEPLOYMENT_NAME") or "gpt-4o",
105
"agent_name": "agent-for-python-projects-sdk-testing",
106
107
0 commit comments