mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
09c781b16f
This has become unnecessary, but it could be useful in the future for other libraries.
20 lines
492 B
Python
20 lines
492 B
Python
import requests
|
|
|
|
from modules.logging_colors import logger
|
|
|
|
|
|
class RequestBlocker:
|
|
|
|
def __enter__(self):
|
|
self.original_get = requests.get
|
|
requests.get = my_get
|
|
|
|
def __exit__(self, exc_type, exc_value, traceback):
|
|
requests.get = self.original_get
|
|
|
|
|
|
def my_get(url, **kwargs):
|
|
logger.info('Unwanted HTTP request redirected to localhost :)')
|
|
kwargs.setdefault('allow_redirects', True)
|
|
return requests.api.request('get', 'http://127.0.0.1/', **kwargs)
|