Skip to content

Commit 0e345ec

Browse files
authored
Added export of the letzAIPlugin as named export and added Plugin-type (#2062)
1 parent 493bdc9 commit 0e345ec

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/plugin-letzai/src/index.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { elizaLogger, generateText, HandlerCallback, IAgentRuntime, ModelClass, State } from "@elizaos/core";
1+
import { elizaLogger, generateText, HandlerCallback, IAgentRuntime, ModelClass, Plugin, State } from "@elizaos/core";
22
import { Memory } from "@elizaos/core";
33

44

@@ -258,9 +258,12 @@ export const letzAiImageGeneration = {
258258
],
259259
};
260260

261-
export const letzAIPlugin = {
261+
export const letzAIPlugin:Plugin = {
262262
name: "letzai",
263+
description: "LetzAI Image Generation Plugin",
263264
actions: [letzAiImageGeneration],
265+
evaluators: [],
266+
providers: [],
264267
};
265268

266269
export default letzAIPlugin;

0 commit comments

Comments
 (0)