Skip to content

IntelliNode v0.0.18

Compare
Choose a tag to compare
@Barqawiz Barqawiz released this 04 May 21:49
· 419 commits to main since this release

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 💻

  1. import:
const { Gen } = require('intellinode');
  1. 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.