JusticeRage / Gepetto

IDA plugin which queries uses language models to speed up reverse-engineering
GNU General Public License v3.0
2.81k stars 260 forks source link

Web Agent #8

Closed xmhwws closed 1 year ago

xmhwws commented 1 year ago

In some places, the network cannot access Google directly, you need to use a web proxy to access it properly. Can this excellent plugin support system proxies or designated proxies for web requests?

JusticeRage commented 1 year ago

Web requests are handled by openai-python and that library does not support proxies. This should be possible, since they appear to be using requests under the hood, but it will require modifications on their side first. I suggest you open a ticket there and then reopen this one!

A temporary workaround could be to add the following lines at the beginning of the plugin (untested!):

os.environ['HTTP_PROXY'] = os.environ['http_proxy'] = 'http://proxy-domain.tld:3128/'
os.environ['HTTPS_PROXY'] = os.environ['https_proxy'] = 'http://proxy-domain.tld3128/'

But I don't think this should be supported directly by Gepetto.