Browse Source

Fix Agent README.md (#422)

Engel Nyst 1 year ago
parent
commit
ddf27c0891
1 changed files with 2 additions and 2 deletions
  1. 2 2
      agenthub/README.md

+ 2 - 2
agenthub/README.md

@@ -1,6 +1,6 @@
 # Agent Framework Research
 
-In this folder, there may exist multiple implementations of `Agent` that will be used by the 
+In this folder, there may exist multiple implementations of `Agent` that will be used by the framework.
 
 For example, `agenthub/langchain_agent`, `agenthub/metagpt_agent`, `agenthub/codeact_agent`, etc.
 Contributors from different backgrounds and interests can choose to contribute to any (or all!) of these directions.
@@ -17,7 +17,7 @@ See the [LiteLLM docs for `self.llm.completion`](https://docs.litellm.ai/docs/co
 
 ## State
 The `state` contains:
-* A history of actions taken by the agent, as well as any obserations (e.g. file content, command output) from those actions
+* A history of actions taken by the agent, as well as any observations (e.g. file content, command output) from those actions
 * A list of actions/observations that have happened since the most recent step
 * A [`plan`](https://github.com/OpenDevin/OpenDevin/blob/main/opendevin/plan.py), which contains the main goal
   * The agent can add and modify subtasks through the `AddTaskAction` and `ModifyTaskAction`