@@ -132,7 +132,7 @@ export class StrayCat {
132
132
log . warn ( `No websocket connection is open for "${ this . userId } ". Queuing the message...` )
133
133
this . wsQueue . push ( msg )
134
134
}
135
- madHatter . executeHook ( 'afterSendMessage' , msg , this )
135
+ madHatter . executeHook ( 'afterSendMessage' , msg , this ) // QUESTION: Should we introduce MaybePromise also here?
136
136
}
137
137
138
138
/**
@@ -148,7 +148,7 @@ export class StrayCat {
148
148
149
149
const response = this . userMessage = await madHatter . executeHook ( 'beforeReadMessage' , msg , this )
150
150
151
- // TODO : Find another way to handle this
151
+ // FEATURE : Find another way to handle this
152
152
if ( response . text . length > cheshireCat . embedderSize ) {
153
153
log . warn ( `The input is too long. Storing it as document...` )
154
154
await rabbitHole . ingestContent ( this , response . text )
@@ -257,7 +257,7 @@ ${labelsList}${examplesList}
257
257
async queryDb < T extends Exclude < SqlDialect , 'sap hana' > > (
258
258
question : string ,
259
259
type : T ,
260
- source : Omit < Extract < DataSourceOptions , { type : T } > , 'type' > , // TODO : Fix type inference
260
+ source : Omit < Extract < DataSourceOptions , { type : T } > , 'type' > , // BUG : Fix type inference
261
261
) {
262
262
const appDataSource = new DataSource ( { type, ...source } as DataSourceOptions )
263
263
const db = await SqlDatabase . fromDataSourceParams ( { appDataSource } )
@@ -316,7 +316,7 @@ ${labelsList}${examplesList}
316
316
*/
317
317
addInteraction ( interaction : ModelInteraction ) {
318
318
this . modelsInteractions . push ( interaction )
319
- madHatter . executeHook ( 'afterModelInteraction' , interaction , this )
319
+ madHatter . executeHook ( 'afterModelInteraction' , interaction , this ) // QUESTION: Should we introduce MaybePromise also here?
320
320
}
321
321
322
322
/**
@@ -386,7 +386,7 @@ ${labelsList}${examplesList}
386
386
log . info ( `Recalled ${ memories . length } memories for ${ key } collection.` )
387
387
this . workingMemory [ key ] = memories
388
388
}
389
- madHatter . executeHook ( 'afterRecallMemories' , structuredClone ( this . workingMemory ) , this )
389
+ await madHatter . executeHook ( 'afterRecallMemories' , structuredClone ( this . workingMemory ) , this )
390
390
391
391
interaction . reply = queryEmbedding
392
392
interaction . endedAt = Date . now ( )
0 commit comments