Skip to content

Commit d8f563b

Browse files
committed
removing table
1 parent a8f175d commit d8f563b

File tree

5 files changed

+4
-38
lines changed

5 files changed

+4
-38
lines changed

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ ms.date: 08/29/2025
1616

1717
## Configure and run an agent
1818

19-
| Component | Description |
20-
| --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
21-
| Agent | Custom AI that uses AI models in conjunction with tools. |
22-
| Tool | Tools help extend an agent’s ability to reliably and accurately respond during conversation. Such as connecting to user-defined knowledge bases to ground the model, or enabling web search to provide current information. |
23-
| Thread | A conversation session between an agent and a user. Threads store Messages and automatically handle truncation to fit content into a model’s context. |
24-
| Message | A message created by an agent or a user. Messages can include text, images, and other files. Messages are stored as a list on the Thread. |
25-
| Run | Activation of an agent to begin running based on the contents of Thread. The agent uses its configuration and Thread’s Messages to perform tasks by calling models and tools. As part of a Run, the agent appends Messages to the Thread. |
26-
2719
Create a .NET Console project.
2820

2921
```console

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.author: aahi
55
ms.service: azure-ai-foundry
66
ms.subservice: azure-ai-foundry-agent-service
77
ms.topic: include
8-
ms.date: 08/07/2025
8+
ms.date: 09/25/2025
99
---
1010

1111
| [Reference documentation](/java/api/overview/azure/ai-agents-persistent-readme) | [Samples](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/ai/azure-ai-agents-persistent/src/samples/java/com/azure/ai/agents/persistent) | [Library source code](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/ai/azure-ai-agents-persistent) | [Package (Maven)](https://central.sonatype.com/artifact/com.azure/azure-ai-agents-persistent) |
@@ -16,14 +16,6 @@ ms.date: 08/07/2025
1616

1717
## Configure and run an agent
1818

19-
| Component | Description |
20-
| --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
21-
| Agent | Custom AI that uses AI models in conjunction with tools. |
22-
| Tool | Tools help extend an agent’s ability to reliably and accurately respond during conversation. Such as connecting to user-defined knowledge bases to ground the model, or enabling web search to provide current information. |
23-
| Thread | A conversation session between an agent and a user. Threads store Messages and automatically handle truncation to fit content into a model’s context. |
24-
| Message | A message created by an agent or a user. Messages can include text, images, and other files. Messages are stored as a list on the Thread. |
25-
| Run | Activation of an agent to begin running based on the contents of Thread. The agent uses its configuration and Thread’s Messages to perform tasks by calling models and tools. As part of a Run, the agent appends Messages to the Thread. |
26-
2719
First, create a New Java console project. You will need the following dependencies to run the code:
2820

2921
```xml

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

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.author: aahi
55
ms.service: azure-ai-foundry
66
ms.subservice: azure-ai-foundry-agent-service
77
ms.topic: include
8-
ms.date: 08/29/2025
8+
ms.date: 09/25/2025
99
---
1010

1111

@@ -19,15 +19,6 @@ ms.date: 08/29/2025
1919

2020
## Configure and run an agent
2121

22-
| Component | Description |
23-
| --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
24-
| Agent | Custom AI that uses AI models in conjunction with tools. |
25-
| Tool | Tools help extend an agent’s ability to reliably and accurately respond during conversation. Such as connecting to user-defined knowledge bases to ground the model, or enabling web search to provide current information. |
26-
| Thread | A conversation session between an agent and a user. Threads store Messages and automatically handle truncation to fit content into a model’s context. |
27-
| Message | A message created by an agent or a user. Messages can include text, images, and other files. Messages are stored as a list on the Thread. |
28-
| Run | Activation of an agent to begin running based on the contents of Thread. The agent uses its configuration and Thread’s Messages to perform tasks by calling models and tools. As part of a Run, the agent appends Messages to the Thread. |
29-
| Run Step | A detailed list of steps the agent took as part of a Run. An agent can call tools or create Messages during its run. Examining Run Steps allows you to understand how the agent is getting to its results. |
30-
3122
Run the following commands to install the python packages.
3223

3324
```console

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

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.author: pranavp
55
ms.service: azure-ai-foundry
66
ms.subservice: azure-ai-foundry-agent-service
77
ms.topic: include
8-
ms.date: 02/15/2025
8+
ms.date: 09/25/2025
99
---
1010
| [Reference documentation](/rest/api/aifoundry/aiagents/) |
1111

@@ -17,15 +17,6 @@ ms.date: 02/15/2025
1717

1818
## Configure and run an agent
1919

20-
| Component | Description |
21-
| --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
22-
| Agent | Custom AI that uses AI models in conjunction with tools. |
23-
| Tool | Tools help extend an agent’s ability to reliably and accurately respond during conversation. Such as connecting to user-defined knowledge bases to ground the model, or enabling web search to provide current information. |
24-
| Thread | A conversation session between an agent and a user. Threads store Messages and automatically handle truncation to fit content into a model’s context. |
25-
| Message | A message created by an agent or a user. Messages can include text, images, and other files. Messages are stored as a list on the Thread. |
26-
| Run | Activation of an agent to begin running based on the contents of Thread. The agent uses its configuration and Thread’s Messages to perform tasks by calling models and tools. As part of a Run, the agent appends Messages to the Thread. |
27-
| Run Step | A detailed list of steps the agent took as part of a Run. An agent can call tools or create Messages during its run. Examining Run Steps allows you to understand how the agent is getting to its results. |
28-
2920
## API call information
3021

3122
To authenticate your API requests, use the [az login](/cli/azure/authenticate-azure-cli-interactively) command to sign into your Azure subscription.

articles/ai-foundry/agents/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: azure-ai-foundry
99
ms.subservice: azure-ai-foundry-agent-service
1010
ms.topic: quickstart
11-
ms.date: 08/29/2025
11+
ms.date: 09/25/2025
1212
ms.custom:
1313
- azure-ai-agents
1414
- build-2025

0 commit comments

Comments
 (0)