UNPKG

@langchain/core

Version:
4 lines (3 loc) 272 B
import { AIMessageChunk } from "../../messages/index.js"; /** Tiny helper to convert string into char chunk. For eg: Turn `"Hi!"` into `[AIMessageChunk("H"), AIMessageChunk("i"), AIMessageChunk("!")] */ export declare const charChunks: (text: string) => AIMessageChunk[];