Skip to content

v1.5.5

Latest

Choose a tag to compare

@npmnishantsharma npmnishantsharma released this 03 Dec 08:59
8edda2c

Changelog

• Solved re-translation issue
• Made module into ejs module

Code:

import {setConfig,createText} from '@nishantapps/node-bard'
const config = {
    userid:'userid',
    key:'makersuite.google.com key',
    apikey:'rapidapi key'
};

setConfig(config);


async function main() {
    console.log(await createText('Привет братан'))
}

main();