Skip to content

Commit bcad0c4

Browse files
authored
Merge pull request #2138 from tudorpintea999/text-fixes
Docs improvements
2 parents c9d4411 + 278ac1b commit bcad0c4

11 files changed

+13
-13
lines changed

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ To create new tests, add a `.test.ts` file adjacent to the code you're testing.
176176

177177
## Docs Updates
178178

179-
Please make sure to vetify if the documentation provided is correct. In order to do so, please run the docs service.
179+
Please make sure to verify if the documentation provided is correct. In order to do so, please run the docs service.
180180

181181
```console
182182
docker compose -f docker-compose-docs.yaml up --build

docs/api/classes/DatabaseAdapter.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Retrieves memories based on the specified parameters.
194194

195195
**params**
196196

197-
An object containing parameters for the memory retrieval.
197+
An object containing parameters for memory retrieval.
198198

199199
**params.agentId**: \`$\{string\}-$\{string\}-$\{string\}-$\{string\}-$\{string\}\`
200200

@@ -300,7 +300,7 @@ An object containing parameters for the embedding retrieval.
300300

301301
`Promise`\<`object`[]\>
302302

303-
A Promise that resolves to an array of objects containing embeddings and levenshtein scores.
303+
A Promise that resolves to an array of objects containing embeddings and Levenshtein scores.
304304

305305
#### Implementation of
306306

docs/api/functions/composeContext.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The parameters for composing the context.
2020

2121
**params.state**: [`State`](../interfaces/State.md)
2222

23-
The state object containing values to replace the placeholders in the template.
23+
The state object contains values to replace the placeholders in the template.
2424

2525
**params.template**: `string` | `Function`
2626

docs/api/functions/configureSettings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Configures environment settings for browser usage
1010

1111
**settings**: `Settings`
1212

13-
Object containing environment variables
13+
The object containing environment variables
1414

1515
## Returns
1616

docs/api/functions/splitChunks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Number of characters to overlap between chunks (default: 100)
2424

2525
`Promise`\<`string`[]\>
2626

27-
Promise resolving to array of text chunks with bleed sections
27+
Promise resolving to an array of text chunks with bleed sections
2828

2929
## Defined in
3030

docs/api/interfaces/ActionExample.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: ActionExample
44

5-
Example content with associated user for demonstration purposes
5+
Example content with the associated user for demonstration purposes
66

77
## Properties
88

docs/api/interfaces/ConversationExample.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Example conversation content with user ID
1010

1111
> **userId**: \`$\{string\}-$\{string\}-$\{string\}-$\{string\}-$\{string\}\`
1212
13-
UUID of user in conversation
13+
UUID of the user in conversation
1414

1515
#### Defined in
1616

docs/docs/core/actions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -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 conversation is finished.",
182+
"Used when the message requires a follow-up. Don't use when the conversation is finished.",
183183
validate: async (runtime, message) => {
184184
// Validation logic
185185
return true;

docs/docs/core/characterfile.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Array used for Retrieval Augmented Generation (RAG), containing facts or referen
140140

141141
#### `messageExamples`
142142

143-
Sample conversations for establishing interaction patterns, helps establish the character's conversational style.
143+
Sample conversations for establishing interaction patterns, help establish the character's conversational style.
144144

145145
```json
146146
"messageExamples": [
@@ -191,7 +191,7 @@ The `style` object defines behavior patterns across contexts:
191191
### Adjectives Array
192192

193193
- Words that describe the character's traits and personality
194-
- Used for generating responses with consistent tone
194+
- Used for generating responses with a consistent tone
195195
- Can be used in "Mad Libs" style content generation
196196

197197
### Settings Configuration

docs/docs/core/evaluators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ interface Objective {
119119
### Handler Implementation
120120

121121
- Use runtime services appropriately
122-
- Store results in correct memory manager
122+
- Store results in the correct memory manager
123123
- Handle errors gracefully
124124
- Maintain state consistency
125125

docs/docs/faq.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ There are several ways to contribute to the Eliza project:
6868

6969
- **Participate in community discussions**: Share your memecoin insights, propose new ideas, and engage with other community members.
7070
- **Contribute to the development of the Eliza platform**: https://github.com/orgs/elizaos/projects/1/views/3
71-
- **Help build the Eliza ecosystem**: Create applicatoins / tools, resources, and memes. Give feedback, and spread the word
71+
- **Help build the Eliza ecosystem**: Create applications / tools, resources, and memes. Give feedback, and spread the word

0 commit comments

Comments
 (0)