File tree 7 files changed +1912
-338
lines changed
7 files changed +1912
-338
lines changed Original file line number Diff line number Diff line change @@ -329,6 +329,7 @@ export class PostgresDatabaseAdapter
329
329
roomIds : UUID [ ] ;
330
330
agentId ?: UUID ;
331
331
tableName : string ;
332
+ limit ?: number ;
332
333
} ) : Promise < Memory [ ] > {
333
334
return this . withDatabase ( async ( ) => {
334
335
if ( params . roomIds . length === 0 ) return [ ] ;
@@ -344,6 +345,13 @@ export class PostgresDatabaseAdapter
344
345
queryParams = [ ...queryParams , params . agentId ] ;
345
346
}
346
347
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
+
347
355
const { rows } = await this . pool . query ( query , queryParams ) ;
348
356
return rows . map ( ( row ) => ( {
349
357
...row ,
Original file line number Diff line number Diff line change @@ -571,7 +571,7 @@ export class DirectClient {
571
571
memory ,
572
572
[ responseMessage ] ,
573
573
state ,
574
- async ( newMessages ) => {
574
+ async ( _newMessages ) => {
575
575
// FIXME: this is supposed override what the LLM said/decided
576
576
// but the promise doesn't make this possible
577
577
//message = newMessages;
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ export abstract class DatabaseAdapter<DB = any> implements IDatabaseAdapter {
95
95
agentId : UUID ;
96
96
roomIds : UUID [ ] ;
97
97
tableName : string ;
98
+ limit ?: number ;
98
99
} ) : Promise < Memory [ ] > ;
99
100
100
101
abstract getMemoryById ( id : UUID ) : Promise < Memory | null > ;
Original file line number Diff line number Diff line change @@ -189,11 +189,12 @@ export class MemoryManager implements IMemoryManager {
189
189
) ;
190
190
}
191
191
192
- async getMemoriesByRoomIds ( params : { roomIds : UUID [ ] } ) : Promise < Memory [ ] > {
192
+ async getMemoriesByRoomIds ( params : { roomIds : UUID [ ] , limit ?: number ; } ) : Promise < Memory [ ] > {
193
193
return await this . runtime . databaseAdapter . getMemoriesByRoomIds ( {
194
194
tableName : this . tableName ,
195
195
agentId : this . runtime . agentId ,
196
196
roomIds : params . roomIds ,
197
+ limit : params . limit
197
198
} ) ;
198
199
}
199
200
Original file line number Diff line number Diff line change @@ -1099,21 +1099,11 @@ Text: ${attachment.text}
1099
1099
] ) ;
1100
1100
1101
1101
// Check the existing memories in the database
1102
- const existingMemories =
1103
- await this . messageManager . getMemoriesByRoomIds ( {
1102
+ return this . messageManager . getMemoriesByRoomIds ( {
1104
1103
// filter out the current room id from rooms
1105
1104
roomIds : rooms . filter ( ( room ) => room !== roomId ) ,
1105
+ limit : 20
1106
1106
} ) ;
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 ;
1117
1107
} ;
1118
1108
1119
1109
const recentInteractions =
Original file line number Diff line number Diff line change @@ -906,6 +906,7 @@ export interface IDatabaseAdapter {
906
906
tableName : string ;
907
907
agentId : UUID ;
908
908
roomIds : UUID [ ] ;
909
+ limit ?: number ;
909
910
} ) : Promise < Memory [ ] > ;
910
911
911
912
getCachedEmbeddings ( params : {
@@ -1079,7 +1080,7 @@ export interface IMemoryManager {
1079
1080
) : Promise < { embedding : number [ ] ; levenshtein_score : number } [ ] > ;
1080
1081
1081
1082
getMemoryById ( id : UUID ) : Promise < Memory | null > ;
1082
- getMemoriesByRoomIds ( params : { roomIds : UUID [ ] } ) : Promise < Memory [ ] > ;
1083
+ getMemoriesByRoomIds ( params : { roomIds : UUID [ ] , limit ?: number } ) : Promise < Memory [ ] > ;
1083
1084
searchMemoriesByEmbedding (
1084
1085
embedding : number [ ] ,
1085
1086
opts : {
You can’t perform that action at this time.
0 commit comments