langsmith
Version:
Client library to connect to the LangSmith Observability and Evaluation Platform.
12 lines (11 loc) • 367 B
TypeScript
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 {};