We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edb7c82 commit 9d862ddCopy full SHA for 9d862dd
packages/plugin-image-generation/src/index.ts
@@ -120,6 +120,9 @@ const imageGeneration: Action = {
120
const imagePrompt = message.content.text;
121
elizaLogger.log("Image prompt received:", imagePrompt);
122
123
+ const imageSettings = runtime.character?.settings?.imageSettings || {};
124
+ elizaLogger.log("Image settings:", imageSettings);
125
+
126
// TODO: Generate a prompt for the image
127
128
const res: { image: string; caption: string }[] = [];
0 commit comments