IntelliNode v0.0.18
v0.0.18
New Features 🌟
- Introduce the
Gen
function, an efficient addition to the IntelliNode to generate text content, images, and audio in the shortest way possible.
Code Examples 💻
- import:
const { Gen } = require('intellinode');
- execute the one line command:
// one line to generate marketing description
const marketingDesc = await Gen.get_marketing_desc('gaming chair', openaiApiKey);
// or one line to generate blog post
const blogPost = await Gen.get_blog_post(prompt, openaiApiKey);
// or generate images from production description
const image = await Gen.generate_image_from_desc(prompt, openaiApiKey, stabilityApiKey, is_base64=true);
// or one line to generate speech synthesis
const audioContent = await Gen.generate_speech_synthesis(text, apiKey);
For more details, check the sample.