Skip to content

Commit fff6240

Browse files
committed
fix: add missing await in some hooks
1 parent e075284 commit fff6240

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/context.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export const pluginSettings = t.Object({
238238
})
239239

240240
export const serverContext = new Elysia({ name: 'server-context' }).use(httpError).decorate({
241-
// cat: cheshireCat, // TODO: Fix RangeError: Maximum call stack size exceeded.
241+
// cat: cheshireCat, // FIXME: Fix RangeError: Maximum call stack size exceeded.
242242
mh: madHatter,
243243
rh: rabbitHole,
244244
log,

src/looking_glass/agent-manager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export class AgentManager {
230230
output: memoryOutput,
231231
intermediateSteps,
232232
}
233-
const afterMemory = madHatter.executeHook('afterMemoryChain', reply, stray)
233+
const afterMemory = await madHatter.executeHook('afterMemoryChain', reply, stray)
234234

235235
return afterMemory
236236
}

src/looking_glass/cheshire-cat.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export class CheshireCat {
157157
{ logMessage: 'Failed to retrieve embedder size. Reset to FakeEmbeddings.' },
158158
)
159159

160-
// TODO: Should we also set it in the db?
160+
// QUESTION: Should we also set it in the db?
161161
if (error) this.embedder = getEmbedder('FakeEmbeddings')!.initModel({})
162162

163163
this._embedderSize = vector.length

src/looking_glass/stray-cat.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export class StrayCat {
132132
log.warn(`No websocket connection is open for "${this.userId}". Queuing the message...`)
133133
this.wsQueue.push(msg)
134134
}
135-
madHatter.executeHook('afterSendMessage', msg, this)
135+
madHatter.executeHook('afterSendMessage', msg, this) // QUESTION: Should we introduce MaybePromise also here?
136136
}
137137

138138
/**
@@ -148,7 +148,7 @@ export class StrayCat {
148148

149149
const response = this.userMessage = await madHatter.executeHook('beforeReadMessage', msg, this)
150150

151-
// TODO: Find another way to handle this
151+
// FEATURE: Find another way to handle this
152152
if (response.text.length > cheshireCat.embedderSize) {
153153
log.warn(`The input is too long. Storing it as document...`)
154154
await rabbitHole.ingestContent(this, response.text)
@@ -257,7 +257,7 @@ ${labelsList}${examplesList}
257257
async queryDb<T extends Exclude<SqlDialect, 'sap hana'>>(
258258
question: string,
259259
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
261261
) {
262262
const appDataSource = new DataSource({ type, ...source } as DataSourceOptions)
263263
const db = await SqlDatabase.fromDataSourceParams({ appDataSource })
@@ -316,7 +316,7 @@ ${labelsList}${examplesList}
316316
*/
317317
addInteraction(interaction: ModelInteraction) {
318318
this.modelsInteractions.push(interaction)
319-
madHatter.executeHook('afterModelInteraction', interaction, this)
319+
madHatter.executeHook('afterModelInteraction', interaction, this) // QUESTION: Should we introduce MaybePromise also here?
320320
}
321321

322322
/**
@@ -386,7 +386,7 @@ ${labelsList}${examplesList}
386386
log.info(`Recalled ${memories.length} memories for ${key} collection.`)
387387
this.workingMemory[key] = memories
388388
}
389-
madHatter.executeHook('afterRecallMemories', structuredClone(this.workingMemory), this)
389+
await madHatter.executeHook('afterRecallMemories', structuredClone(this.workingMemory), this)
390390

391391
interaction.reply = queryEmbedding
392392
interaction.endedAt = Date.now()

0 commit comments

Comments
 (0)