diff --git a/google/colab/_import_hooks/_generativeai.py b/google/colab/_import_hooks/_generativeai.py index ca10d1f8..5923d91f 100644 --- a/google/colab/_import_hooks/_generativeai.py +++ b/google/colab/_import_hooks/_generativeai.py @@ -61,6 +61,8 @@ def load_module(self, fullname): def fetch(request): path = request.path + if request.query: + path = f'{path}?{request.query}' method = request.method headers = json.dumps(dict(request.headers)) body = repr(request.body.decode('utf-8')) if request.body else 'null'