Generate Text

Learn how to generate text using the AI TOOLKIT and Node

1 min readnodeView source

The most basic LLM use case is generating text based on a prompt. For example, you may want to generate a response to a question or summarize a body of text. The generateText function can be used to generate text based on the input prompt. import { generateText } from 'ai-toolkit'; const result = await generateText({ model: 'openai/gpt-4o', prompt: 'Why is the sky blue?', }); console.log(result);

index.ts
ts
  1. 1import { generateText } from 'ai-toolkit';
  2. 2const result = await generateText({
  3. 3model: 'openai/gpt-4o',
  4. 4prompt: 'Why is the sky blue?',
  5. 5});
  6. 6console.log(result);

Run it locally

$ npm install ai