Skip to content

Commit

Permalink
Merge pull request #2138 from tudorpintea999/text-fixes
Browse files Browse the repository at this point in the history
Docs improvements
  • Loading branch information
tcm390 authored Jan 10, 2025
2 parents c9d4411 + 278ac1b commit bcad0c4
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ To create new tests, add a `.test.ts` file adjacent to the code you're testing.

## Docs Updates

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

```console
docker compose -f docker-compose-docs.yaml up --build
Expand Down
4 changes: 2 additions & 2 deletions docs/api/classes/DatabaseAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Retrieves memories based on the specified parameters.

**params**

An object containing parameters for the memory retrieval.
An object containing parameters for memory retrieval.

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

Expand Down Expand Up @@ -300,7 +300,7 @@ An object containing parameters for the embedding retrieval.

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

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

#### Implementation of

Expand Down
2 changes: 1 addition & 1 deletion docs/api/functions/composeContext.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The parameters for composing the context.

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

The state object containing values to replace the placeholders in the template.
The state object contains values to replace the placeholders in the template.

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

Expand Down
2 changes: 1 addition & 1 deletion docs/api/functions/configureSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Configures environment settings for browser usage

**settings**: `Settings`

Object containing environment variables
The object containing environment variables

## Returns

Expand Down
2 changes: 1 addition & 1 deletion docs/api/functions/splitChunks.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Number of characters to overlap between chunks (default: 100)

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

Promise resolving to array of text chunks with bleed sections
Promise resolving to an array of text chunks with bleed sections

## Defined in

Expand Down
2 changes: 1 addition & 1 deletion docs/api/interfaces/ActionExample.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Interface: ActionExample

Example content with associated user for demonstration purposes
Example content with the associated user for demonstration purposes

## Properties

Expand Down
2 changes: 1 addition & 1 deletion docs/api/interfaces/ConversationExample.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Example conversation content with user ID

> **userId**: \`$\{string\}-$\{string\}-$\{string\}-$\{string\}-$\{string\}\`
UUID of user in conversation
UUID of the user in conversation

#### Defined in

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/core/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 conversation is finished.",
"Used when the message requires a follow-up. Don't use when the conversation is finished.",
validate: async (runtime, message) => {
// Validation logic
return true;
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/core/characterfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Array used for Retrieval Augmented Generation (RAG), containing facts or referen

#### `messageExamples`

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

```json
"messageExamples": [
Expand Down Expand Up @@ -191,7 +191,7 @@ The `style` object defines behavior patterns across contexts:
### Adjectives Array

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

### Settings Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/core/evaluators.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ interface Objective {
### Handler Implementation

- Use runtime services appropriately
- Store results in correct memory manager
- Store results in the correct memory manager
- Handle errors gracefully
- Maintain state consistency

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ There are several ways to contribute to the Eliza project:

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

0 comments on commit bcad0c4

Please sign in to comment.