UNPKG

ai-utils.js

Version:

Build AI applications, chatbots, and agents with JavaScript and TypeScript.

8 lines (7 loc) 208 B
/** * A single instruction prompt. It can contain an optional system message to provide context for the language model. */ export type InstructionPrompt = { system?: string; instruction: string; };