Skip to content

Commit e5496ed

Browse files
authored
Rename "Azure AI Foundry" to "Microsoft Foundry" in package README.md and samples comments (#43913)
1 parent 164c76c commit e5496ed

File tree

58 files changed

+117
-117
lines changed

Some content is hidden

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

58 files changed

+117
-117
lines changed

sdk/ai/azure-ai-projects/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Azure AI Projects client library for Python
22

3-
The AI Projects client library (in preview) is part of the Azure AI Foundry SDK, and provides easy access to
4-
resources in your Azure AI Foundry Project. Use it to:
3+
The AI Projects client library (in preview) is part of the Microsoft Foundry SDK, and provides easy access to
4+
resources in your Microsoft Foundry Project. Use it to:
55

66
* **Create and run Agents** using methods on the `.agents` client property.
77
* **Get an OpenAI client** using the `.get_openai_client()` client method to do "Responses" calls.
@@ -30,10 +30,10 @@ To report an issue with the client library, or request additional features, plea
3030

3131
* Python 3.9 or later.
3232
* An [Azure subscription][azure_sub].
33-
* A [project in Azure AI Foundry](https://learn.microsoft.com/azure/ai-studio/how-to/create-projects).
34-
* The project endpoint URL of the form `https://your-ai-services-account-name.services.ai.azure.com/api/projects/your-project-name`. It can be found in your Azure AI Foundry Project overview page. Below we will assume the environment variable `AZURE_AI_PROJECT_ENDPOINT` was defined to hold this value.
33+
* A [project in Microsoft Foundry](https://learn.microsoft.com/azure/ai-studio/how-to/create-projects).
34+
* The project endpoint URL of the form `https://your-ai-services-account-name.services.ai.azure.com/api/projects/your-project-name`. It can be found in your Microsoft Foundry Project overview page. Below we will assume the environment variable `AZURE_AI_PROJECT_ENDPOINT` was defined to hold this value.
3535
* An Entra ID token for authentication. Your application needs an object that implements the [TokenCredential](https://learn.microsoft.com/python/api/azure-core/azure.core.credentials.tokencredential) interface. Code samples here use [DefaultAzureCredential](https://learn.microsoft.com/python/api/azure-identity/azure.identity.defaultazurecredential). To get that working, you will need:
36-
* An appropriate role assignment. see [Role-based access control in Azure AI Foundry portal](https://learn.microsoft.com/azure/ai-foundry/concepts/rbac-ai-foundry). Role assigned can be done via the "Access Control (IAM)" tab of your Azure AI Project resource in the Azure portal.
36+
* An appropriate role assignment. see [Role-based access control in Microsoft Foundry portal](https://learn.microsoft.com/azure/ai-foundry/concepts/rbac-ai-foundry). Role assigned can be done via the "Access Control (IAM)" tab of your Azure AI Project resource in the Azure portal.
3737
* [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli) installed.
3838
* You are logged into your Azure account by running `az login`.
3939

@@ -89,7 +89,7 @@ project_client = AIProjectClient(
8989

9090
### Performing Responses operations using OpenAI client
9191

92-
Your Azure AI Foundry project may have one or more AI models deployed. These could be OpenAI models, Microsoft models, or models from other providers.
92+
Your Microsoft Foundry project may have one or more AI models deployed. These could be OpenAI models, Microsoft models, or models from other providers.
9393
Use the code below to get an authenticated [OpenAI](https://github.com/openai/openai-python?tab=readme-ov-file#usage) client
9494
from the [openai](https://pypi.org/project/openai/) package, and execute Responses calls.
9595

@@ -384,7 +384,7 @@ The code below shows some evaluation operations. Full list of sample can be foun
384384

385385
**Note:** Tracing functionality is in preliminary preview and is subject to change. Spans, attributes, and events may be modified in future versions.
386386

387-
You can add an Application Insights Azure resource to your Azure AI Foundry project. See the Tracing tab in your AI Foundry project. If one was enabled, you can get the Application Insights connection string, configure your AI Projects client, and observe traces in Azure Monitor. Typically, you might want to start tracing before you create a client or Agent.
387+
You can add an Application Insights Azure resource to your Microsoft Foundry project. See the Tracing tab in your AI Foundry project. If one was enabled, you can get the Application Insights connection string, configure your AI Projects client, and observe traces in Azure Monitor. Typically, you might want to start tracing before you create a client or Agent.
388388

389389
### Installation
390390

sdk/ai/azure-ai-projects/samples/agents/memory/sample_agent_memory.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
2121
Set these environment variables with your own values:
2222
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
23-
page of your Azure AI Foundry portal.
23+
page of your Microsoft Foundry portal.
2424
2) AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME - The deployment name of the chat model for the agent, as found under the "Name" column in
25-
the "Models + endpoints" tab in your Azure AI Foundry project.
25+
the "Models + endpoints" tab in your Microsoft Foundry project.
2626
3) AZURE_AI_CHAT_MODEL_DEPLOYMENT_NAME - The deployment name of the chat model for memory, as found under the "Name" column in
27-
the "Models + endpoints" tab in your Azure AI Foundry project.
27+
the "Models + endpoints" tab in your Microsoft Foundry project.
2828
4) AZURE_AI_EMBEDDING_MODEL_DEPLOYMENT_NAME - The deployment name of the embedding model for memory, as found under the
29-
"Name" column in the "Models + endpoints" tab in your Azure AI Foundry project.
29+
"Name" column in the "Models + endpoints" tab in your Microsoft Foundry project.
3030
"""
3131

3232
# import os

sdk/ai/azure-ai-projects/samples/agents/memory/sample_memory_advanced.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
2121
Set these environment variables with your own values:
2222
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
23-
page of your Azure AI Foundry portal.
23+
page of your Microsoft Foundry portal.
2424
2) AZURE_AI_CHAT_MODEL_DEPLOYMENT_NAME - The deployment name of the chat model, as found under the "Name" column in
25-
the "Models + endpoints" tab in your Azure AI Foundry project.
25+
the "Models + endpoints" tab in your Microsoft Foundry project.
2626
3) AZURE_AI_EMBEDDING_MODEL_DEPLOYMENT_NAME - The deployment name of the embedding model, as found under the
27-
"Name" column in the "Models + endpoints" tab in your Azure AI Foundry project.
27+
"Name" column in the "Models + endpoints" tab in your Microsoft Foundry project.
2828
"""
2929

3030
# import os

sdk/ai/azure-ai-projects/samples/agents/memory/sample_memory_basic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
2121
Set these environment variables with your own values:
2222
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
23-
page of your Azure AI Foundry portal.
23+
page of your Microsoft Foundry portal.
2424
2) AZURE_AI_CHAT_MODEL_DEPLOYMENT_NAME - The deployment name of the chat model, as found under the "Name" column in
25-
the "Models + endpoints" tab in your Azure AI Foundry project.
25+
the "Models + endpoints" tab in your Microsoft Foundry project.
2626
3) AZURE_AI_EMBEDDING_MODEL_DEPLOYMENT_NAME - The deployment name of the embedding model, as found under the
27-
"Name" column in the "Models + endpoints" tab in your Azure AI Foundry project.
27+
"Name" column in the "Models + endpoints" tab in your Microsoft Foundry project.
2828
"""
2929

3030
# import os

sdk/ai/azure-ai-projects/samples/agents/memory/sample_memory_crud.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
1818
Set these environment variables with your own values:
1919
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
20-
page of your Azure AI Foundry portal.
20+
page of your Microsoft Foundry portal.
2121
2) AZURE_AI_CHAT_MODEL_DEPLOYMENT_NAME - The deployment name of the chat model, as found under the "Name" column in
22-
the "Models + endpoints" tab in your Azure AI Foundry project.
22+
the "Models + endpoints" tab in your Microsoft Foundry project.
2323
3) AZURE_AI_EMBEDDING_MODEL_DEPLOYMENT_NAME - The deployment name of the embedding model, as found under the
24-
"Name" column in the "Models + endpoints" tab in your Azure AI Foundry project.
24+
"Name" column in the "Models + endpoints" tab in your Microsoft Foundry project.
2525
"""
2626

2727
# import os

sdk/ai/azure-ai-projects/samples/agents/sample_agent_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
2222
Set these environment variables with your own values:
2323
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
24-
page of your Azure AI Foundry portal.
24+
page of your Microsoft Foundry portal.
2525
2) AZURE_AI_MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in
26-
the "Models + endpoints" tab in your Azure AI Foundry project.
26+
the "Models + endpoints" tab in your Microsoft Foundry project.
2727
"""
2828

2929
import os

sdk/ai/azure-ai-projects/samples/agents/sample_agent_basic_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
2222
Set these environment variables with your own values:
2323
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
24-
page of your Azure AI Foundry portal.
24+
page of your Microsoft Foundry portal.
2525
2) AZURE_AI_MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in
26-
the "Models + endpoints" tab in your Azure AI Foundry project.
26+
the "Models + endpoints" tab in your Microsoft Foundry project.
2727
"""
2828

2929
import asyncio

sdk/ai/azure-ai-projects/samples/agents/sample_agent_responses_function_tool_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
2020
Set these environment variables with your own values:
2121
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
22-
page of your Azure AI Foundry portal.
22+
page of your Microsoft Foundry portal.
2323
2) AZURE_AI_MODEL_DEPLOYMENT_NAME - The deployment name of the AI model, as found under the "Name" column in
24-
the "Models + endpoints" tab in your Azure AI Foundry project.
24+
the "Models + endpoints" tab in your Microsoft Foundry project.
2525
"""
2626

2727
import os

sdk/ai/azure-ai-projects/samples/agents/sample_agent_retrieve_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
2323
Set these environment variables with your own values:
2424
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
25-
page of your Azure AI Foundry portal.
26-
2) AGENT_NAME - The name of an existing Agent in your Azure AI Foundry project.
25+
page of your Microsoft Foundry portal.
26+
2) AGENT_NAME - The name of an existing Agent in your Microsoft Foundry project.
2727
3) CONVERSATION_ID - The ID of an existing Conversation associated with the Agent
2828
"""
2929

sdk/ai/azure-ai-projects/samples/agents/sample_agent_retrieve_basic_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
2323
Set these environment variables with your own values:
2424
1) AZURE_AI_PROJECT_ENDPOINT - The Azure AI Project endpoint, as found in the Overview
25-
page of your Azure AI Foundry portal.
26-
2) AGENT_NAME - The name of an existing Agent in your Azure AI Foundry project.
25+
page of your Microsoft Foundry portal.
26+
2) AGENT_NAME - The name of an existing Agent in your Microsoft Foundry project.
2727
3) CONVERSATION_ID - The ID of an existing Conversation associated with the Agent
2828
"""
2929

0 commit comments

Comments
 (0)