Dolor3v-ai / src /utils /fetch.ts
Dolor D Prince
deploy: dolor3v gateway v1.0
c7052c4
Raw
History Blame Contribute Delete
333 Bytes
import { getHttpsAgent, getProxyAgent } from '../agentStore';
export async function externalServiceFetch(
url: string,
options?: RequestInit,
proxyUrl?: string,
) {
const agent = proxyUrl ? getProxyAgent(proxyUrl) : getHttpsAgent();
return fetch(url, {
...options,
...(agent ? { dispatcher: agent } : {}),
});
}