Skip to content

Commit 922cf90

Browse files
authored
Merge branch 'develop' into fix-types-and-build
2 parents 4137c0f + 22acb79 commit 922cf90

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/client-discord/src/actions/summarize_conversation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ ${currentSummary.trim()}
381381
{
382382
user: "{{user2}}",
383383
content: {
384-
text: "no probblem, give me a few minutes to read through everything",
384+
text: "no problem, give me a few minutes to read through everything",
385385
action: "SUMMARIZE",
386386
},
387387
},

packages/core/src/runtime.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ export class AgentRuntime implements IAgentRuntime {
680680
) as unknown as string[];
681681

682682
for (const evaluator of this.evaluators) {
683-
if (!evaluators.includes(evaluator.name)) continue;
683+
if (!evaluators?.includes(evaluator.name)) continue;
684684

685685
if (evaluator.handler)
686686
await evaluator.handler(this, message, state, {}, callback);

0 commit comments

Comments
 (0)