Skip to content

Commit

Permalink
docs: fix typos in markdown files (#5871)
Browse files Browse the repository at this point in the history
* docs: fix typos in QUICKSTART.md

* docs: fix typos in autogpts/autogpt/autogpt/core/ARCHITECTURE_NOTES.md

---------

Co-authored-by: Nicholas Tindle <[email protected]>
  • Loading branch information
shresthasurav and ntindle authored Nov 7, 2023
1 parent a2dc4b1 commit ad305fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ If you continue to experience issues, consider storing your project files within

![Create an Agent](docs/content/imgs/quickstart/007_create_agent.png)

Upon creating your agent its time to offically enter the Arena!
Upon creating your agent its time to officially enter the Arena!
Do so by running `./run arena enter YOUR_AGENT_NAME`

![Enter the Arena](docs/content/imgs/quickstart/008_enter_arena.png)

> Note: for adavanced yours, create a new branch and create a file called YOUR_AGENT_NAME.json in the arena directory. Then commit this and create a PR to merge into the main repo. Only single file entries will be permitted. The json file needs the following format.
> Note: for advanced users, create a new branch and create a file called YOUR_AGENT_NAME.json in the arena directory. Then commit this and create a PR to merge into the main repo. Only single file entries will be permitted. The json file needs the following format.
```json
{
"github_repo_url": "https://github.com/Swiftyos/YourAgentName",
Expand Down
6 changes: 3 additions & 3 deletions autogpts/autogpt/autogpt/core/ARCHITECTURE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for the breaking version change. We justified this by saying:

## Secondary goals

- Use existing tools to ditch any unneccesary cruft in the codebase (document loading,
- Use existing tools to ditch any unnecessary cruft in the codebase (document loading,
json parsing, anything easier to replace than to port).
- Bring in the [core agent loop updates](https://whimsical.com/agent-workflow-v2-NmnTQ8R7sVo7M3S43XgXmZ)
being developed simultaneously by @Pwuts
Expand Down Expand Up @@ -195,7 +195,7 @@ Plugins are a kind of garbage term. They refer to a number of things.
The current plugin system is _hook-based_. This means plugins don't correspond to
kinds of objects in the system, but rather to times in the system at which we defer
execution to them. The main advantage of this setup is that user code can hijack
pretty much any behavior of the agent by injecting code that supercedes the normal
pretty much any behavior of the agent by injecting code that supersedes the normal
agent execution. The disadvantages to this approach are numerous:

- We have absolutely no mechanisms to enforce any security measures because the threat
Expand Down Expand Up @@ -235,7 +235,7 @@ There are three kinds of things (roughly) that are written as classes in the re-
is *data* and we use **[Pydantic](https://docs.pydantic.dev/latest/)** to manage it as
pydantic is basically industry standard for this stuff. It provides runtime validation
for all the configuration and allows us to easily serialize configuration to both basic
python types (dicts, lists, and primatives) as well as serialize to json, which is
python types (dicts, lists, and primitives) as well as serialize to json, which is
important for us being able to put representations of agents
[on the wire](https://en.wikipedia.org/wiki/Wire_protocol) for web applications and
agent-to-agent communication. *These are essentially
Expand Down

0 comments on commit ad305fd

Please sign in to comment.