diff --git a/upstash_vector/client.py b/upstash_vector/client.py index aa25a8a..1c6eebc 100644 --- a/upstash_vector/client.py +++ b/upstash_vector/client.py @@ -35,7 +35,7 @@ def __init__( self._url = url self._client = httpx.Client( timeout=httpx.Timeout( - timeout=120.0, + timeout=600.0, connect=10.0, ) ) @@ -97,7 +97,7 @@ def __init__( self._headers = generate_headers(token) self._client = httpx.AsyncClient( timeout=httpx.Timeout( - timeout=120.0, + timeout=600.0, connect=10.0, ) )