IntelliNode v0.0.19
v0.0.19
New Features 🌟
- Add a new
Gen
function to generate and save html pages from users prompt.
Code Examples 💻
- import:
const { Gen } = require('intellinode');
- execute the one line command to generate html:
text = 'a registration page with flat modern theme.'
await Gen.save_html_page(text, folder='tempFolder', file_name='register_page', openaiKey='<key>');
- other existing functions
// one line to generate blog post
const blogPost = await Gen.get_blog_post(prompt, openaiApiKey);
For more code examples, check the sample.