@langchain/core
Version:
Core LangChain.js abstractions and schemas
14 lines • 582 B
TypeScript
//#region src/utils/gateway.d.ts
declare const DEFAULT_LANGSMITH_GATEWAY = "https://gateway.smith.langchain.com";
interface LangSmithGatewayConfigOptions {
baseURL?: string;
providerPath: string;
}
interface LangSmithGatewayConfig {
baseURL?: string;
apiKey?: string;
}
declare function resolveLangSmithGatewayConfig({ baseURL, providerPath }: LangSmithGatewayConfigOptions): LangSmithGatewayConfig;
//#endregion
export { DEFAULT_LANGSMITH_GATEWAY, LangSmithGatewayConfig, LangSmithGatewayConfigOptions, resolveLangSmithGatewayConfig };
//# sourceMappingURL=gateway.d.ts.map