Skip to content

Commit 5c4d9db

Browse files
Fix Typo in open-source-llms-as-agents (huggingface#1771)
1 parent c7c5df4 commit 5c4d9db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

open-source-llms-as-agents.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In this post, we explain the inner workings of ReAct agents, then show how to bu
3535

3636
The definition of LLM agents is quite broad: LLM agents are all systems that use LLMs as their engine and can perform actions on their environment based on observations. They can use several iterations of the Perception ⇒ Reflexion ⇒ Action cycle to achieve their task and are often augmented with planning or knowledge management systems to enhance their performance. You can find a good review of the Agents landscape in [Xi et al., 2023](https://huggingface.co/papers/2309.07864).
3737

38-
Today, we are focusing on **ReAct agents**. [ReAct](https://huggingface.co/papers/2210.03629) is an approch to building agents based on the concatenation of two words, "**Reasoning**" and "**Acting**." In the prompt, we describe the model, which tools it can use, and ask it to think “step by step” (also called [Chain-of-Thought](https://huggingface.co/papers/2201.11903) behavior) to plan and execute its next actions to reach the final answer.
38+
Today, we are focusing on **ReAct agents**. [ReAct](https://huggingface.co/papers/2210.03629) is an approach to building agents based on the concatenation of two words, "**Reasoning**" and "**Acting**." In the prompt, we describe the model, which tools it can use, and ask it to think “step by step” (also called [Chain-of-Thought](https://huggingface.co/papers/2201.11903) behavior) to plan and execute its next actions to reach the final answer.
3939

4040
<p align="center">
4141
<img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/blog/open-source-llms-as-agents/ReAct.png" alt="drawing" width=90%>

0 commit comments

Comments
 (0)