From e1f73ef86ec2ccdf0a944798458cbc6e6d846221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Ot=C3=A1rtics?= Date: Tue, 21 Nov 2023 20:10:33 +0100 Subject: [PATCH] Removed unneeded import Using requests Unconditional's docker install returned error code 400. So stuck with native py api. --- llama_hub/file/unstructured/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/llama_hub/file/unstructured/base.py b/llama_hub/file/unstructured/base.py index c2226ae355..49d992a977 100644 --- a/llama_hub/file/unstructured/base.py +++ b/llama_hub/file/unstructured/base.py @@ -9,7 +9,6 @@ from llama_index.readers.base import BaseReader from llama_index.readers.schema.base import Document -import requests import json class UnstructuredReader(BaseReader):