Class BaseMessageChunkAbstract

Represents a chunk of a message, which can be concatenated with other message chunks. It includes a method _merge_kwargs_dict() for merging additional keyword arguments from another BaseMessageChunk into this one. It also overrides the __add__() method to support concatenation of BaseMessageChunk instances.

Hierarchy

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