Skip to content

Commit

Permalink
chore: improve descriptions (#2394)
Browse files Browse the repository at this point in the history
* Update index.md

* Update quickstart.md

* Update agents.md

* Update actions.md

* chore: with -> through
  • Loading branch information
crStiv authored Jan 16, 2025
1 parent 6cfbd18 commit 446dd00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/community/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ElizaOS empowers developers of all skill levels to harness the potential of AI a

## Governance

ai16z originates as being an AI agent led DAO. Similar to how we can influence the autonomous agents on memecoins to buy, we intend to bring similar functionality for token holders to actively participate in the decision-making process and shape the future of the project. Community members can pitch ideas, provide insights, and influence investment strategies based on their expertise and track record.
ai16z originates as being an AI agent-led DAO. Similar to how we can influence the autonomous agents on memecoins to buy, we intend to bring similar functionality for token holders to actively participate in the decision-making process and shape the future of the project. Community members can pitch ideas, provide insights, and influence investment strategies based on their expertise and track record.

## Explore and Contribute

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/core/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ interface Action {
- **validate**: Determines if the action can be executed
- **handler**: Implements the action's behavior
- **examples**: Demonstrates proper usage patterns
- **suppressInitialMessage**: When true, suppresses the initial response message before processing the action. Useful for actions that generate their own responses (like image generation)
- **suppressInitialMessage**: When true, suppress the initial response message before processing the action. Useful for actions that generate their own responses (like image generation)

---

Expand All @@ -179,7 +179,7 @@ const continueAction: Action = {
name: "CONTINUE",
similes: ["ELABORATE", "KEEP_TALKING"],
description:
"Used when the message requires a follow-up. Don't use when the conversation is finished.",
"Used when the message requires a follow-up. Don't use it when the conversation is finished.",
validate: async (runtime, message) => {
// Validation logic
return true;
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ You set which model to use inside the character JSON file
pnpm start --character="characters/trump.character.json"
```

You can also load multiple characters with the characters option with a comma separated list:
You can also load multiple characters with the characters option with a comma-separated list:

```bash
pnpm start --characters="characters/trump.character.json,characters/tate.character.json"
Expand Down

0 comments on commit 446dd00

Please sign in to comment.