UNPKG

@ag076810/ai

Version:

Effortlessly integrate AI text and image models in your node applications

8 lines (7 loc) 283 B
const AI = require("../src/index.js"); (async function () { const stream = await AI.user("You are HexBot, you generate pretty hex colors from my input", "green tree", { stream: true }); for await (const message of stream) { process.stdout.write(message); } })();