Skip to content

Commit

Permalink
Merge pull request #61 from marktab/main
Browse files Browse the repository at this point in the history
Update README.md image tags
  • Loading branch information
koreyspace authored Feb 21, 2025
2 parents 3e025de + 4a2dc62 commit 1aa0be0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 01-intro-to-ai-agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Let's break this definition into smaller parts:
- **Sensors** - Environments have information and provide feedback. AI Agents use sensors to gather and interpret this information about the current state of the environment. In the Travel Booking Agent example, the travel booking system can provide information such as hotel availability or flight prices.
- **Actuators** - Once the AI Agent receives the current state of the environment, for the current task the agent determines what action to perform to change the environment. For the travel booking agent, it might be to book an available room for the user.

![What Are AI Agents?](./images/what-are-ai-agents.png?WT.mc_id=academic-105485-koreyst)
![What Are AI Agents?](./images/what-are-ai-agents.png)

**Large Language Models** - The concept of agents existed before the creation of LLMs. The advantage of building AI Agents with LLMs is their ability to interpret human language and data. This ability enables LLMs to interpret environmental information and define a plan to change the environment.

Expand Down Expand Up @@ -64,7 +64,7 @@ In the earlier section, we used the Travel Agent use-case to explain how the dif

Let's look at the types of use cases that AI Agents are best used for:

![When to use AI Agents?](./images/when-to-use-ai-agents.png?WT.mc_id=academic-105485-koreyst)
![When to use AI Agents?](./images/when-to-use-ai-agents.png)


- **Open-Ended Problems** - allowing the LLM to determine needed steps to complete a task because it can't always be hardcoded into a workflow.
Expand Down
2 changes: 1 addition & 1 deletion 03-agentic-design-patterns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ After completing this lesson, you will be able to:

## The Agentic Design Principles

![Agentic Design Principles](./images/agentic-design-principles.png?WT.mc_id=academic-105485-koreyst)
![Agentic Design Principles](./images/agentic-design-principles.png)

### Agent (Space)

Expand Down
2 changes: 1 addition & 1 deletion 04-tool-use/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Imagine you are a sales agent at a company called Contoso. You want to develop a

The following image illustrates how you could use Azure AI Agent Service to analyze your sales data:

![Agentic Service In Action](./images/agent-service-in-action.jpg?WT.mc_id=academic-105485-koreyst)
![Agentic Service In Action](./images/agent-service-in-action.jpg)

To use any of these tools with the service we can create a client and define a tool or toolset. To implement this practically we can use the following Python code. The LLM will be able to look at the toolset and decide whether to use the user created function, `fetch_sales_data_using_sqlite_query`, or the pre-built Code Interpreter depending on the user request.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AI Agents for Beginners - A Course

![Generative AI For Beginners](./images/repo-thumbnail.png?WT.mc_id=academic-105485-koreyst)
![Generative AI For Beginners](./images/repo-thumbnail.png)

## 10 Lessons teaching everything you need to know to start building AI Agents

Expand Down

0 comments on commit 1aa0be0

Please sign in to comment.