IntelliNode v0.0.15
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 }));