Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: user ID with room ID in MemoryManager and other improvements #2492

Merged
merged 5 commits into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/api/classes/MemoryManager.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ Error if the memory content is empty

> **getMemories**(`opts`): `Promise`\<[`Memory`](../interfaces/Memory.md)[]\>

Retrieves a list of memories by user IDs, with optional deduplication.
Retrieves a list of memories by room IDs, with optional deduplication.

#### Parameters

• **opts**

Options including user IDs, count, and uniqueness.
Options including room IDs, count, and uniqueness.

• **opts.roomId**: \`$\{string\}-$\{string\}-$\{string\}-$\{string\}-$\{string\}\`

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/advanced/autonomous-trading.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ async function executeSwap(
},
): Promise<string> {
// Prepare transaction
const { swapTransaction } = await getSwapTransaction(input);
const { swapTransaction: transaction } = await getSwapTransaction(input);

// Sign transaction
const keypair = getKeypairFromPrivateKey(
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/advanced/fine-tuning.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ enum ModelProviderName {
REDPILL,
OPENROUTER,
HEURIST,
LIVEPEER,
LIVEPEER,
}
```

Expand Down
Loading