Skip to content

Commit 54113cf

Browse files
authored
Merge pull request #662 from nachiket-1/main
Update what-are-agents.mdxcorrect GPT-4 and Llama capitalization in w…
2 parents b2faf70 + 2eaf046 commit 54113cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

units/en/unit1/what-are-agents.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ It decides **which Actions to take based on the situation**.
6060

6161
This part represents **everything the Agent is equipped to do**.
6262

63-
The **scope of possible actions** depends on what the agent **has been equipped with**. For example, because humans lack wings, they can't perform the "fly" **Action**, but they can execute **Actions** like "walk", "run" ,"jump", "grab", and so on.
63+
The **scope of possible actions** depends on what the agent **has been equipped with**. For example, because humans lack wings, they can't perform the "fly" **Action**, but they can execute **Actions** like "walk", "run", "jump", "grab", and so on.
6464

6565
### The spectrum of "Agency"
6666

@@ -81,7 +81,7 @@ Table from [smolagents conceptual guide](https://huggingface.co/docs/smolagents/
8181

8282
The most common AI model found in Agents is an LLM (Large Language Model), which takes **Text** as an input and outputs **Text** as well.
8383

84-
Well known examples are **GPT4** from **OpenAI**, **LLama** from **Meta**, **Gemini** from **Google**, etc. These models have been trained on a vast amount of text and are able to generalize well. We will learn more about LLMs in the [next section](what-are-llms).
84+
Well known examples are **GPT-4** from **OpenAI**, **Llama** from **Meta**, **Gemini** from **Google**, etc. These models have been trained on a vast amount of text and are able to generalize well. We will learn more about LLMs in the [next section](what-are-llms).
8585

8686
> [!TIP]
8787
> It's also possible to use models that accept other inputs as the Agent's core model. For example, a Vision Language Model (VLM), which is like an LLM but also understands images as input. We'll focus on LLMs for now and will discuss other options later.
@@ -120,7 +120,7 @@ The LLM, as we'll see, will generate code to run the tool when it needs to, and
120120
send_message_to("Manager", "Can we postpone today's meeting?")
121121
```
122122

123-
The **design of the Tools is very important and has a great impact on the quality of your Agent**. Some tasks will require very specific Tools to be crafted, while others may be solved with general purpose tools like "web_search".
123+
The **design of the Tools is very important and has a great impact on the quality of your Agent**. Some tasks will require very specific Tools to be crafted, while others may be solved with general-purpose tools like "web_search".
124124

125125
> Note that **Actions are not the same as Tools**. An Action, for instance, can involve the use of multiple Tools to complete.
126126

0 commit comments

Comments
 (0)