Spaces:
Build error
Build error
File size: 367 Bytes
c211499 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { LangChainBaseMessage } from "../schemas.js";
export declare function isLangChainMessage(message?: any): message is LangChainBaseMessage;
interface ConvertedData {
content: string;
[key: string]: any;
}
export declare function convertLangChainMessageToExample(message: LangChainBaseMessage): {
type: string;
data: ConvertedData;
};
export {};
|