effect-io-ai

Package: @effect/ai
Module: Prompt

Prompt.Prompt

A Prompt contains a sequence of messages that form the context of a conversation with a large language model.

Signature

export interface Prompt extends Pipeable {
  readonly [TypeId]: TypeId
  /**
   * Array of messages that make up the conversation.
   */
  readonly content: ReadonlyArray<Message>
}

Source

Since v1.0.0