Skip to content

Commit 446dd00

Browse files
authored
chore: improve descriptions (#2394)
* Update index.md * Update quickstart.md * Update agents.md * Update actions.md * chore: with -> through
1 parent 6cfbd18 commit 446dd00

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/community/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ElizaOS empowers developers of all skill levels to harness the potential of AI a
2727

2828
## Governance
2929

30-
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.
30+
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.
3131

3232
## Explore and Contribute
3333

docs/docs/core/actions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ interface Action {
164164
- **validate**: Determines if the action can be executed
165165
- **handler**: Implements the action's behavior
166166
- **examples**: Demonstrates proper usage patterns
167-
- **suppressInitialMessage**: When true, suppresses the initial response message before processing the action. Useful for actions that generate their own responses (like image generation)
167+
- **suppressInitialMessage**: When true, suppress the initial response message before processing the action. Useful for actions that generate their own responses (like image generation)
168168

169169
---
170170

@@ -179,7 +179,7 @@ const continueAction: Action = {
179179
name: "CONTINUE",
180180
similes: ["ELABORATE", "KEEP_TALKING"],
181181
description:
182-
"Used when the message requires a follow-up. Don't use when the conversation is finished.",
182+
"Used when the message requires a follow-up. Don't use it when the conversation is finished.",
183183
validate: async (runtime, message) => {
184184
// Validation logic
185185
return true;

docs/docs/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ You set which model to use inside the character JSON file
130130
pnpm start --character="characters/trump.character.json"
131131
```
132132

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

135135
```bash
136136
pnpm start --characters="characters/trump.character.json,characters/tate.character.json"

0 commit comments

Comments
 (0)