UNPKG

create-agent-chat-app

Version:
9 lines (7 loc) 181 B
import { Client } from "@langchain/langgraph-sdk"; export function createClient(apiUrl: string, apiKey: string | undefined) { return new Client({ apiKey, apiUrl, }); }