UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and

8 lines (7 loc) 322 B
import type { ChatMessage } from "./types.js"; /** * Formats a chat history array into a single string for use in a prompt. * @param history The array of ChatMessage objects. * @returns A formatted string representing the conversation. */ export declare function formatHistoryToString(history: ChatMessage[]): string;