Class BaseMessageAbstract

Base class for all types of messages in a conversation. It includes properties like content, name, and additional_kwargs. It also includes methods like toDict() and _getType().

Hierarchy

Implements

Constructors

Properties

additional_kwargs: {
    function_call?: FunctionCall;
    tool_calls?: ChatCompletionMessageToolCall[];
    [key: string]: unknown;
}

Additional keyword arguments

Type declaration

  • [key: string]: unknown
  • Optional function_call?: FunctionCall
  • Optional tool_calls?: ChatCompletionMessageToolCall[]

The content of the message.

name?: string

The name of the message sender in a multi-user chat.

Accessors

Methods

Generated using TypeDoc