Skip to content

Commit b93024d

Browse files
fix
1 parent 754941c commit b93024d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

core/src/core/runtime.ts

+6
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,18 @@ export class AgentRuntime implements IAgentRuntime {
264264
this.token = opts.token;
265265

266266
(opts.character.plugins ?? []).forEach((plugin) => {
267+
267268
plugin.actions.forEach((action) => {
268269
this.registerAction(action);
269270
});
271+
270272
plugin.evaluators.forEach((evaluator) => {
271273
this.registerEvaluator(evaluator);
272274
});
275+
276+
plugin.providers.forEach((provider) => {
277+
this.registerContextProvider(provider);
278+
});
273279
});
274280

275281
(opts.evaluators ?? defaultEvaluators).forEach((evaluator) => {

0 commit comments

Comments
 (0)