Skip to content

Commit c7a28c5

Browse files
committed
Acrolinx updates
1 parent 0d523da commit c7a28c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

learn-pr/wwl-data-ai/develop-ai-agent-with-semantic-kernel/includes/3-create-azure-ai-agent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**AzureAIAgent** is a specialized agent within the Semantic Kernel framework, designed to provide advanced conversational capabilities with seamless tool integration. It automates tool calling, eliminating the need for manual parsing and invocation. The agent also securely manages conversation history using threads, reducing the overhead of maintaining state. The AzureAIAgent class supports a variety of built-in tools, including file retrieval, code execution, and data interaction via Bing, Azure AI Search, Azure Functions, and OpenAPI.
1+
**AzureAIAgent** is a specialized agent within the Semantic Kernel framework, designed to provide advanced conversational capabilities with seamless tool integration. It automates tool calling, eliminating the need for manual parsing and invocation. The agent also securely manages conversation history using threads, reducing the overhead of maintaining state. The AzureAIAgent class supports many built-in tools, including file retrieval, code execution, and data interaction via Bing, Azure AI Search, Azure Functions, and OpenAPI.
22

33
## Creating an AzureAIAgent
44

@@ -12,7 +12,7 @@ To use an AzureAIAgent:
1212
1. Create an agent definition on the agent service provided by the client.
1313
1. Create an agent based on the definition.
1414

15-
Here is the code that illustrates how to create an AzureAIAgent:
15+
Here's the code that illustrates how to create an AzureAIAgent:
1616

1717
```python
1818
from azure.identity.aio import DefaultAzureCredential
@@ -70,8 +70,8 @@ The Semantic Kernel AzureAIAgent object relies on the following components to fu
7070

7171
- **Agent service** - the AzureAIAgent client also contains an agent operations service. This service helps streamline the process of creating, managing, and running the agents for your project.
7272

73-
- **Agent definition** - the AzureAI Agent model created via the AzureAI Project client. This definition specifies the AI deployment model that should be used, as well as the name and instructions for the agent.
73+
- **Agent definition** - the AzureAI Agent model created via the AzureAI Project client. This definition specifies the AI deployment model that should be used, and the name and instructions for the agent.
7474

75-
- **AzureAIAgentThread** - automatically maintains the conversation history between agents and users, as well as the state. You can add messages to a thread and use the agent to invoke a response from the LLM.
75+
- **AzureAIAgentThread** - automatically maintains the conversation history between agents and users, and the state. You can add messages to a thread and use the agent to invoke a response from the LLM.
7676

7777
These components work together to allow you to create an agent with instructions to define its purpose and invoke responses from the AI model.

0 commit comments

Comments
 (0)