UNPKG

@langgraph-js/pro

Version:

The Pro SDK for LangGraph - seamlessly integrate your AI agents with frontend interfaces and build complex AI workflows

11 lines (10 loc) 410 B
import { type MessageUnion, type BaseMessageLike } from "@langchain/core/messages"; export interface Template { role: string; content: string | any[]; tool_calls: any[]; tool_call_id: string; invalid_tool_calls: any[]; } export declare const createChatTemplate: (template: Template[]) => BaseMessageLike[]; export declare const messagesToTemplate: (messages: MessageUnion[]) => Template[];