Update utils.py: correct recreate_vector_store's timeout (#1181)

This commit is contained in:
liunux4odoo 2023-08-21 18:01:59 +08:00 committed by GitHub
parent 71d0f7d965
commit c82134c07b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)