UNPKG

unlimited-ai

Version:

Fast, minimal Node.js wrapper for the Voids API AI chat completions.

9 lines (6 loc) 210 B
import { generate } from 'unlimited-ai'; const reply = await generate('gpt-4o', [ { role: 'system', content: 'You are a helpful assistant.' }, { role: 'user', content: 'Hello!' }, ]); console.log(reply);