Compare commits

...

3 commits
v0.2.7 ... main

Author SHA1 Message Date
a9c3562088
bump: version
All checks were successful
Publish to PyPI / publish (push) Successful in 16s
2026-05-05 09:18:45 +02:00
4cfc98de9d
fix: timeouts 2026-05-05 09:18:19 +02:00
1330a1068f
bump: version
All checks were successful
Publish to PyPI / publish (push) Successful in 14s
2026-04-18 15:48:21 +02:00
3 changed files with 4 additions and 4 deletions

View file

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

View file

@ -51,6 +51,6 @@ try:
except ImportError:
pass
__version__ = "0.2.6"
__version__ = "0.2.8"
__author__ = "NOMYO AI"
__license__ = "Apache-2.0"

View file

@ -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"},