From c82134c07bb0e36cdd58e30511b8e7f93d89c034 Mon Sep 17 00:00:00 2001 From: liunux4odoo <41217877+liunux4odoo@users.noreply.github.com> Date: Mon, 21 Aug 2023 18:01:59 +0800 Subject: [PATCH] Update utils.py: correct recreate_vector_store's timeout (#1181) --- webui_pages/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui_pages/utils.py b/webui_pages/utils.py index 3e67ed7..a4aa586 100644 --- a/webui_pages/utils.py +++ b/webui_pages/utils.py @@ -617,7 +617,7 @@ class ApiRequest: "/knowledge_base/recreate_vector_store", json=data, stream=True, - timeout=False, + timeout=None, ) return self._httpx_stream2generator(response, as_json=True)