Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a9c3562088 | |||
| 4cfc98de9d | |||
| 1330a1068f |
3 changed files with 4 additions and 4 deletions
|
|
@ -301,7 +301,7 @@ class SecureCompletionClient:
|
|||
verify_ssl = self.router_url.startswith("https://")
|
||||
|
||||
async with httpx.AsyncClient(
|
||||
timeout=60.0,
|
||||
timeout=900.0,
|
||||
verify=verify_ssl, # Verify SSL/TLS certificates for HTTPS
|
||||
) as client:
|
||||
response = await client.get(url)
|
||||
|
|
@ -673,7 +673,7 @@ class SecureCompletionClient:
|
|||
await asyncio.sleep(delay)
|
||||
|
||||
try:
|
||||
async with httpx.AsyncClient(timeout=60.0) as client:
|
||||
async with httpx.AsyncClient(timeout=900.0) as client:
|
||||
response = await client.post(
|
||||
url,
|
||||
headers=headers,
|
||||
|
|
|
|||
|
|
@ -51,6 +51,6 @@ try:
|
|||
except ImportError:
|
||||
pass
|
||||
|
||||
__version__ = "0.2.6"
|
||||
__version__ = "0.2.8"
|
||||
__author__ = "NOMYO AI"
|
||||
__license__ = "Apache-2.0"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "nomyo"
|
||||
version = "0.2.6"
|
||||
version = "0.2.8"
|
||||
description = "OpenAI-compatible secure chat client with end-to-end encryption for NOMYO Inference Endpoints"
|
||||
authors = [
|
||||
{name = "NOMYO.AI", email = "ichi@nomyo.ai"},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue