@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
20 lines (19 loc) • 524 B
TypeScript
/**
* Proxy-aware fetch implementation for AI SDK providers
* Implements the proven Vercel AI SDK proxy pattern using undici
*/
/**
* Create a proxy-aware fetch function
* This implements the community-validated approach for Vercel AI SDK
*/
export declare function createProxyFetch(): typeof fetch;
/**
* Get proxy status information
*/
export declare function getProxyStatus(): {
enabled: boolean;
httpProxy: string | null;
httpsProxy: string | null;
noProxy: string | null;
method: string;
};