mirror of
https://github.com/langchain-ai/open-agent-platform.git
synced 2026-07-01 20:24:10 -04:00
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
import { Client } from "@langchain/langgraph-sdk";
|
|
|
|
export function createClient(apiUrl: string, apiKey: string | undefined) {
|
|
return new Client({
|
|
apiKey,
|
|
apiUrl,
|
|
});
|
|
}
|