Skip to content

Commit 5506266

Browse files
authored
azure-ai-projects v2.0.0b1 (#43704)
1 parent 5b0f608 commit 5506266

File tree

209 files changed

+55742
-9796
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+55742
-9796
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# ServiceLabel: %AI
3434

3535
# PRLabel: %AI
36-
/sdk/ai/ @luigiw @needuv @paulshealy1 @singankit @dargilco @jhakulin
36+
/sdk/ai/ @luigiw @needuv @paulshealy1 @singankit @dargilco @trrwilson
3737

3838
# ServiceOwners: @luigiw @needuv @singankit
3939
# ServiceLabel: %Evaluation
@@ -243,15 +243,15 @@
243243

244244
# PRLabel: %AI Model Inference
245245
# ServiceLabel: %AI Model Inference %Service Attention
246-
/sdk/ai/azure-ai-inference/ @dargilco @trangevi @jhakulin
246+
/sdk/ai/azure-ai-inference/ @dargilco @trangevi @trrwilson
247247

248248
# PRLabel: %AI Agents
249249
# ServiceLabel: %AI Agents %Service Attention
250-
/sdk/ai/azure-ai-agents/ @dargilco @jhakulin @trangevi @glharper @nick863 @howieleung
250+
/sdk/ai/azure-ai-agents/ @dargilco @trrwilson @trangevi @glharper @nick863 @howieleung
251251

252252
# PRLabel: %AI Projects
253253
# ServiceLabel: %AI Projects %Service Attention
254-
/sdk/ai/azure-ai-projects/ @dargilco @jhakulin @trangevi @glharper @nick863 @howieleung
254+
/sdk/ai/azure-ai-projects/ @dargilco @trrwilson @trangevi @glharper @nick863 @howieleung @kingernupur
255255

256256
# PRLabel: %Voice Live
257257
# ServiceLabel: %Voice Live %Service Attention

eng/tools/azure-sdk-tools/devtools_testutils/__init__.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,13 @@
5252
set_session_recording_options,
5353
)
5454
from .cert import create_combined_bundle
55-
from .helpers import ResponseCallback, RetryCounter, is_live_and_not_recording, trim_kwargs_from_test_function
55+
from .helpers import (
56+
ResponseCallback,
57+
RetryCounter,
58+
is_live_and_not_recording,
59+
is_live as is_live_internal,
60+
trim_kwargs_from_test_function,
61+
)
5662
from .fake_credentials import FakeTokenCredential
5763

5864
PowerShellPreparer = EnvironmentVariableLoader # Backward compat
@@ -117,4 +123,5 @@
117123
"FakeTokenCredential",
118124
"create_combined_bundle",
119125
"is_live_and_not_recording",
126+
"is_live_internal",
120127
]

sdk/ai/azure-ai-inference/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
url="https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/ai/azure-ai-inference",
3939
keywords="azure, azure sdk",
4040
classifiers=[
41-
"Development Status :: 4 - Beta",
41+
"Development Status :: 7 - Inactive",
4242
"Programming Language :: Python",
4343
"Programming Language :: Python :: 3 :: Only",
4444
"Programming Language :: Python :: 3",

sdk/ai/azure-ai-projects/.env.template

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,40 @@
99
# 3. Run the tests (`pytest`) or run samples in the `samples` folder
1010
#
1111

12+
#######################################################################
13+
#
1214
# Used in samples
15+
#
1316
# Project endpoint has the format:
1417
# `https://<your-ai-services-account-name>.services.ai.azure.com/api/projects/<your-project-name>`
1518
AZURE_AI_PROJECT_ENDPOINT=
1619
AZURE_AI_MODEL_DEPLOYMENT_NAME=
20+
AGENT_NAME=
21+
CONVERSATION_ID=
22+
CONNECTION_NAME=
1723

18-
# Used in tests
24+
#######################################################################
25+
#
26+
# Used tests, excluding Agent tests
1927
AZURE_AI_PROJECTS_TESTS_PROJECT_ENDPOINT=
2028

29+
# Used in Agent tests
30+
AZURE_AI_PROJECTS_TESTS_AGENTS_PROJECT_ENDPOINT=
31+
32+
# Used in tracing tests
33+
AZURE_AI_PROJECTS_TESTS_TRACING_PROJECT_ENDPOINT=
34+
35+
# Used in Container App Agents tests
36+
AZURE_AI_PROJECTS_TESTS_CONTAINER_PROJECT_ENDPOINT=
37+
AZURE_AI_PROJECTS_TESTS_CONTAINER_APP_RESOURCE_ID=
38+
AZURE_AI_PROJECTS_TESTS_CONTAINER_INGRESS_SUBDOMAIN_SUFFIX=
39+
40+
# Used in tools
41+
BING_PROJECT_CONNECTION_ID=
42+
MCP_PROJECT_CONNECTION_ID=
43+
FABRIC_PROJECT_CONNECTION_ID=
44+
AI_SEARCH_PROJECT_CONNECTION_ID=
45+
AI_SEARCH_INDEX_NAME=
46+
47+
48+

0 commit comments

Comments
 (0)