Skip to content

Commit e162a0a

Browse files
authored
Merge pull request #2135 from odilitime/pr1531
refactor: Optimize memory fetching by moving sorting and slicing to DB (PR #1531 remake)
2 parents 85f5185 + a298d6c commit e162a0a

File tree

7 files changed

+1912
-338
lines changed

7 files changed

+1912
-338
lines changed

packages/adapter-postgres/src/index.ts

+8
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ export class PostgresDatabaseAdapter
329329
roomIds: UUID[];
330330
agentId?: UUID;
331331
tableName: string;
332+
limit?: number;
332333
}): Promise<Memory[]> {
333334
return this.withDatabase(async () => {
334335
if (params.roomIds.length === 0) return [];
@@ -344,6 +345,13 @@ export class PostgresDatabaseAdapter
344345
queryParams = [...queryParams, params.agentId];
345346
}
346347

348+
// Add sorting, and conditionally add LIMIT if provided
349+
query += ` ORDER BY "createdAt" DESC`;
350+
if (params.limit) {
351+
query += ` LIMIT $${queryParams.length + 1}`;
352+
queryParams.push(params.limit.toString());
353+
}
354+
347355
const { rows } = await this.pool.query(query, queryParams);
348356
return rows.map((row) => ({
349357
...row,

packages/client-direct/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ export class DirectClient {
571571
memory,
572572
[responseMessage],
573573
state,
574-
async (newMessages) => {
574+
async (_newMessages) => {
575575
// FIXME: this is supposed override what the LLM said/decided
576576
// but the promise doesn't make this possible
577577
//message = newMessages;

packages/core/src/database.ts

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export abstract class DatabaseAdapter<DB = any> implements IDatabaseAdapter {
9595
agentId: UUID;
9696
roomIds: UUID[];
9797
tableName: string;
98+
limit?: number;
9899
}): Promise<Memory[]>;
99100

100101
abstract getMemoryById(id: UUID): Promise<Memory | null>;

packages/core/src/memory.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,12 @@ export class MemoryManager implements IMemoryManager {
189189
);
190190
}
191191

192-
async getMemoriesByRoomIds(params: { roomIds: UUID[] }): Promise<Memory[]> {
192+
async getMemoriesByRoomIds(params: { roomIds: UUID[], limit?: number; }): Promise<Memory[]> {
193193
return await this.runtime.databaseAdapter.getMemoriesByRoomIds({
194194
tableName: this.tableName,
195195
agentId: this.runtime.agentId,
196196
roomIds: params.roomIds,
197+
limit: params.limit
197198
});
198199
}
199200

packages/core/src/runtime.ts

+2-12
Original file line numberDiff line numberDiff line change
@@ -1099,21 +1099,11 @@ Text: ${attachment.text}
10991099
]);
11001100

11011101
// Check the existing memories in the database
1102-
const existingMemories =
1103-
await this.messageManager.getMemoriesByRoomIds({
1102+
return this.messageManager.getMemoriesByRoomIds({
11041103
// filter out the current room id from rooms
11051104
roomIds: rooms.filter((room) => room !== roomId),
1105+
limit: 20
11061106
});
1107-
1108-
// Sort messages by timestamp in descending order
1109-
existingMemories.sort(
1110-
(a, b) =>
1111-
(b?.createdAt ?? Date.now()) - (a?.createdAt ?? Date.now())
1112-
);
1113-
1114-
// Take the most recent messages
1115-
const recentInteractionsData = existingMemories.slice(0, 20);
1116-
return recentInteractionsData;
11171107
};
11181108

11191109
const recentInteractions =

packages/core/src/types.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,7 @@ export interface IDatabaseAdapter {
906906
tableName: string;
907907
agentId: UUID;
908908
roomIds: UUID[];
909+
limit?: number;
909910
}): Promise<Memory[]>;
910911

911912
getCachedEmbeddings(params: {
@@ -1079,7 +1080,7 @@ export interface IMemoryManager {
10791080
): Promise<{ embedding: number[]; levenshtein_score: number }[]>;
10801081

10811082
getMemoryById(id: UUID): Promise<Memory | null>;
1082-
getMemoriesByRoomIds(params: { roomIds: UUID[] }): Promise<Memory[]>;
1083+
getMemoriesByRoomIds(params: { roomIds: UUID[], limit?: number }): Promise<Memory[]>;
10831084
searchMemoriesByEmbedding(
10841085
embedding: number[],
10851086
opts: {

0 commit comments

Comments
 (0)