Skip to content

Commit e0396cf

Browse files
authored
Merge pull request elizaOS#2095 from treppers/plugin_import_fixes
fix: Fix plugin loading from a character.json file
2 parents 88dfc91 + 38d986a commit e0396cf

File tree

2 files changed

+38
-15
lines changed

2 files changed

+38
-15
lines changed

agent/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
"@elizaos/plugin-3d-generation": "workspace:*",
7575
"@elizaos/plugin-fuel": "workspace:*",
7676
"@elizaos/plugin-avalanche": "workspace:*",
77+
"@elizaos/plugin-video-generation": "workspace:*",
7778
"@elizaos/plugin-web-search": "workspace:*",
7879
"@elizaos/plugin-letzai": "workspace:*",
7980
"@elizaos/plugin-thirdweb": "workspace:*",

agent/src/index.ts

+37-15
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,6 @@ function tryLoadFile(filePath: string): string | null {
142142
}
143143
}
144144

145-
function isAllStrings(arr: unknown[]): boolean {
146-
return Array.isArray(arr) && arr.every((item) => typeof item === "string");
147-
}
148-
149145
export async function loadCharacters(
150146
charactersArg: string
151147
): Promise<Character[]> {
@@ -231,16 +227,9 @@ export async function loadCharacters(
231227
}
232228

233229
// Handle plugins
234-
if (isAllStrings(character.plugins)) {
235-
elizaLogger.info("Plugins are: ", character.plugins);
236-
const importedPlugins = await Promise.all(
237-
character.plugins.map(async (plugin) => {
238-
const importedPlugin = await import(plugin);
239-
return importedPlugin.default;
240-
})
241-
);
242-
character.plugins = importedPlugins;
243-
}
230+
character.plugins = await handlePluginImporting(
231+
character.plugins
232+
);
244233

245234
loadedCharacters.push(character);
246235
elizaLogger.info(
@@ -263,6 +252,36 @@ export async function loadCharacters(
263252
return loadedCharacters;
264253
}
265254

255+
async function handlePluginImporting(plugins: string[]) {
256+
if (plugins.length > 0) {
257+
elizaLogger.info("Plugins are: ", plugins);
258+
const importedPlugins = await Promise.all(
259+
plugins.map(async (plugin) => {
260+
try {
261+
const importedPlugin = await import(plugin);
262+
const functionName =
263+
plugin
264+
.replace("@elizaos/plugin-", "")
265+
.replace(/-./g, (x) => x[1].toUpperCase()) +
266+
"Plugin"; // Assumes plugin function is camelCased with Plugin suffix
267+
return (
268+
importedPlugin.default || importedPlugin[functionName]
269+
);
270+
} catch (importError) {
271+
elizaLogger.error(
272+
`Failed to import plugin: ${plugin}`,
273+
importError
274+
);
275+
return []; // Return null for failed imports
276+
}
277+
})
278+
);
279+
return importedPlugins;
280+
} else {
281+
return [];
282+
}
283+
}
284+
266285
export function getTokenForProvider(
267286
provider: ModelProviderName,
268287
character: Character
@@ -921,7 +940,10 @@ const startAgents = async () => {
921940
}
922941

923942
// upload some agent functionality into directClient
924-
directClient.startAgent = async (character: Character) => {
943+
directClient.startAgent = async (character) => {
944+
// Handle plugins
945+
character.plugins = await handlePluginImporting(character.plugins);
946+
925947
// wrap it so we don't have to inject directClient later
926948
return startAgent(character, directClient);
927949
};

0 commit comments

Comments
 (0)