Hello everyone, I was wondering if it was possible to bypass the proxy settings on a Windows computer.
I am developing a piece of software that need to make different requests to openai’s server (using their Python SDK), but the machine where the software will be running has a proxy set up so that basicly nothing can go out.
I tryed using exclusion for the proxy like in this image:
Unfortunatly this didn’t work for me…
I also tryed something like this:
def InitOpenAIClient() -> AsyncOpenAI:
proxies = {
'http': None,
'https': None,
}
return AsyncOpenAI(api_key=os.environ.get('OPENAI_API_KEY'), proxies=proxies)
Do you guys have any suggestions on how i can manage to do that?
Thank you in advance