fix: update base_url
All checks were successful
Publish to PyPI / publish (push) Successful in 15s

doc: update base_url

ver: bump
This commit is contained in:
Alpha Nerd 2026-04-11 17:16:24 +02:00
parent c9ce0c38bb
commit c80625a418
Signed by: alpha-nerd
SSH key fingerprint: SHA256:QkkAgVoYi9TQ0UKPkiKSfnerZy2h4qhi3SVPXJmBN+M
9 changed files with 21 additions and 21 deletions

View file

@ -12,7 +12,7 @@ The client MUST connect using HTTPS in production environments:
```python
# ✅ SECURE (Production)
client = SecureChatCompletion(base_url="https://api.nomyo.ai:12434")
client = SecureChatCompletion(base_url="https://api.nomyo.ai")
# ⚠️ INSECURE (Local development only)
client = SecureChatCompletion(base_url="http://localhost:12434", allow_http=True)