Skip to content

Commit acf364a

Browse files
Merge pull request #6004 from MicrosoftDocs/main
Auto Publish – main to live - 2025-07-11 22:03 UTC
2 parents e929520 + 88b67c3 commit acf364a

Some content is hidden

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

49 files changed

+241
-278
lines changed

articles/ai-foundry/.openpublishing.redirection.ai-studio.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,6 +1222,11 @@
12221222
"source_path_from_root": "/articles/ai-foundry/openai/context/context.json",
12231223
"redirect_url": "/azure/ai-foundry/context/context",
12241224
"redirect_document_id": false
1225+
},
1226+
{
1227+
"source_path_from_root": "/articles/ai-foundry/agents/concepts/agent-catalog.md",
1228+
"redirect_url": "/azure/ai-foundry/agents/overview",
1229+
"redirect_document_id": false
12251230
}
12261231
]
12271232
}

articles/ai-foundry/agents/concepts/agent-catalog.md

Lines changed: 0 additions & 80 deletions
This file was deleted.

articles/ai-foundry/agents/how-to/connected-agents.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: cognitive-services
66
manager: nitinme
77
ms.service: azure
88
ms.topic: how-to
9-
ms.date: 06/04/2025
9+
ms.date: 07/11/2025
1010
author: aahill
1111
ms.author: aahi
1212
recommendations: false
@@ -237,7 +237,6 @@ To create a multi-agent setup, follow these steps:
237237
project_client = AIProjectClient(
238238
endpoint=os.environ["PROJECT_ENDPOINT"],
239239
credential=DefaultAzureCredential(),
240-
api_version="latest",
241240
)
242241
```
243242

articles/ai-foundry/agents/how-to/tools/azure-ai-search-samples.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
88
ms.topic: how-to
9-
ms.date: 06/30/2025
9+
ms.date: 07/11/2025
1010
author: aahill
1111
ms.author: aahi
1212
ms.custom: azure-ai-agents
@@ -48,8 +48,7 @@ project_endpoint = os.environ["PROJECT_ENDPOINT"]
4848
# Initialize the AIProjectClient
4949
project_client = AIProjectClient(
5050
endpoint=project_endpoint,
51-
credential=DefaultAzureCredential(exclude_interactive_browser_credential=False),
52-
api_version="latest",
51+
credential=DefaultAzureCredential(exclude_interactive_browser_credential=False)
5352
)
5453
```
5554

articles/ai-foundry/agents/how-to/tools/azure-functions-samples.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: azure-ai-agent-service
66
manager: nitinme
77
ms.service: azure-ai-agent-service
88
ms.topic: how-to
9-
ms.date: 05/20/2025
9+
ms.date: 07/11/2025
1010
author: aahill
1111
ms.author: aahi
1212
ms.custom: azure-ai-agents
@@ -101,8 +101,7 @@ Next, create an AI project client and then create an agent, attaching the Azure
101101
# Initialize the AIProjectClient
102102
project_client = AIProjectClient(
103103
endpoint=os.environ["PROJECT_ENDPOINT"],
104-
credential=DefaultAzureCredential(),
105-
api_version="latest",
104+
credential=DefaultAzureCredential()
106105
)
107106
# Create an agent with the Azure Function tool
108107
agent = project_client.agents.create_agent(

articles/ai-foundry/agents/how-to/tools/bing-code-samples.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
88
ms.topic: how-to
9-
ms.date: 06/17/2025
9+
ms.date: 07/11/2025
1010
author: aahill
1111
ms.author: aahi
1212
zone_pivot_groups: selection-bing-grounding-code
@@ -64,8 +64,7 @@ project_endpoint = os.environ["PROJECT_ENDPOINT"] # Ensure the PROJECT_ENDPOINT
6464
# Create an AIProjectClient instance
6565
project_client = AIProjectClient(
6666
endpoint=project_endpoint,
67-
credential=DefaultAzureCredential(), # Use Azure Default Credential for authentication
68-
api_version="latest",
67+
credential=DefaultAzureCredential() # Use Azure Default Credential for authentication
6968
)
7069
```
7170

articles/ai-foundry/agents/how-to/tools/file-search-upload-files.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
88
ms.topic: how-to
9-
ms.date: 07/02/2025
9+
ms.date: 07/11/2025
1010
author: aahill
1111
ms.author: aahi
1212
zone_pivot_groups: selection-bing-grounding-code
@@ -58,8 +58,7 @@ project_endpoint = os.environ["PROJECT_ENDPOINT"] # Ensure the PROJECT_ENDPOINT
5858
# Initialize the AIProjectClient
5959
project_client = AIProjectClient(
6060
endpoint=project_endpoint,
61-
credential=DefaultAzureCredential(exclude_interactive_browser_credential=False), # Use Azure Default Credential for authentication
62-
api_version="latest",
61+
credential=DefaultAzureCredential(exclude_interactive_browser_credential=False) # Use Azure Default Credential for authentication
6362
)
6463
```
6564

articles/ai-foundry/agents/how-to/tools/function-calling.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
88
ms.topic: how-to
9-
ms.date: 06/30/2025
9+
ms.date: 07/11/2025
1010
author: aahill
1111
ms.author: aahi
1212
zone_pivot_groups: selection-function-calling
@@ -18,7 +18,8 @@ ms.custom: azure-ai-agents
1818
Azure AI Agents supports function calling, which allows you to describe the structure of functions to an agent and then return the functions that need to be called along with their arguments.
1919

2020
> [!NOTE]
21-
> Runs expire 10 minutes after creation. Be sure to submit your tool outputs before the expiration.
21+
> * Runs expire 10 minutes after creation. Be sure to submit your tool outputs before the expiration.
22+
> * Although function calling isn't supported in the Azure AI Foundry portal, agents will appear in the portal after creation. Agents run in the portal won't perform function calling.
2223
2324
### Usage support
2425

@@ -77,8 +78,7 @@ project_endpoint = os.environ["PROJECT_ENDPOINT"]
7778
# Initialize the AIProjectClient
7879
project_client = AIProjectClient(
7980
endpoint=project_endpoint,
80-
credential=DefaultAzureCredential(),
81-
api_version="latest",
81+
credential=DefaultAzureCredential()
8282
)
8383

8484
# Initialize the FunctionTool with user-defined functions

articles/ai-foundry/agents/how-to/tools/logic-apps.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
88
ms.topic: how-to
9-
ms.date: 05/07/2025
9+
ms.date: 07/11/2025
1010
author: aahill
1111
ms.author: aahi
1212
ms.reviewer: umangsehgal
@@ -68,8 +68,7 @@ from azure.identity import DefaultAzureCredential
6868
# Initialize the AIProjectClient
6969
project_client = AIProjectClient(
7070
endpoint=os.environ["PROJECT_ENDPOINT"],
71-
credential=DefaultAzureCredential(),
72-
api_version="latest",
71+
credential=DefaultAzureCredential()
7372
)
7473
```
7574

articles/ai-foundry/agents/includes/quickstart-foundry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: aahill
44
ms.author: aahi
55
ms.service: azure-ai-agent-service
66
ms.topic: include
7-
ms.date: 01/21/2025
7+
ms.date: 07/11/2025
88
---
99

1010
## Prerequisites
@@ -38,7 +38,7 @@ To create an account and project in Azure AI Foundry, follow these steps:
3838
1. The gpt-4o model will automatically be deployed
3939
1. A default agent will be created
4040

41-
1. Once complete, you will land directly in the agent playground and you can start creating agents.
41+
1. Once complete, you will land directly in the agent playground and you can start creating agents. You can give your agent instructions on what to do and how to do it. For example: *"You are a helpful agent that can answer questions about geography."* Then you can start chatting with your agent.
4242

4343
:::image type="content" source="../media\quickstart\agent-playground.png" alt-text="Screenshot of the agent playground." lightbox="../media\quickstart\agent-playground.png":::
4444

0 commit comments

Comments
 (0)