Skip to content

IntelliNode v0.0.15

Compare
Choose a tag to compare
@Barqawiz Barqawiz released this 02 May 17:36
· 445 commits to main since this release
d6b0119

v0.0.15

New Features 🌟

  • Add an image to image model to the stable diffusion wrapper (used for image styling or edits).

Changes 🔧

  • Update the remote image controller to use stable diffusion XL model.

Code Examples 💻

Remote image model

const { RemoteImageModel, SupportedImageModels } =  require('intellinode');
const imgModel = new RemoteImageModel('stability-ai-key', SupportedImageModels.STABILITY);
result_base64 = await imgModel.generateImages(new ImageModelInput({ 
                                               prompt: imageText,
                                               numberOfImages: 3 }));

Output after XL model change:

Output before the change: