Async Python client for Autobyteus LLM API
Project description
Autobyteus LLM Client
Async Python client for Autobyteus LLM API with HTTPS support.
Installation
pip install autobyteus_llm_client
Certificate Setup
- Create certificates directory:
mkdir -p certificates
- Copy the server's certificate:
cp path/to/server/certificates/cert.pem certificates/
- Get certificate fingerprint (optional but recommended):
openssl x509 -in certificates/cert.pem -fingerprint -sha256 -noout
Configuration
Set environment variables:
# Required
export AUTOBYTEUS_API_KEY='your-api-key'
# Optional (defaults shown)
export AUTOBYTEUS_SERVER_URL='https://api.autobyteus.com:8443'
export AUTOBYTEUS_CERT_FINGERPRINT='your-certificate-fingerprint' # Optional but recommended
Usage
from autobyteus_llm_client import AutobyteusClient
async def main():
# Initialize client (automatically uses certificate from certificates/cert.pem)
client = AutobyteusClient()
try:
# Get available models
models = await client.get_available_models()
print(f"Available models: {models}")
# Send a message
response = await client.send_message(
conversation_id="conv123",
model_name="gpt-4",
user_message="Hello!"
)
print(f"Response: {response}")
finally:
await client.close()
Security Features
-
Certificate Verification
- Automatic certificate validation
- Certificate expiration checking
- Optional fingerprint verification
- Path validation and security checks
-
SSL/TLS Security
- HTTPS communication
- Certificate-based authentication
- Secure default configuration
Development
Requirements
- Python 3.8 or higher
- httpx
- cryptography
Installing Development Dependencies
pip install -e ".[test]"
Running Tests
pytest
Building and Publishing
Build Package
python -m build
Publish to Test PyPI
python -m twine upload --repository testpypi dist/*
Publish to Production PyPI
python -m twine upload dist/*
Troubleshooting
-
Certificate Issues
- Verify certificate location (should be in
certificates/cert.pem) - Check certificate expiration
- Verify fingerprint if enabled
- Verify certificate location (should be in
-
Connection Issues
- Verify server URL and port
- Check certificate validity
- Ensure API key is set correctly
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file autobyteus_llm_client-1.0.7.tar.gz.
File metadata
- Download URL: autobyteus_llm_client-1.0.7.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17be32d173486d0a21aa9f5069329c5e27fdfb5309b93830d853bbab61c492b7
|
|
| MD5 |
b358604249e0ecf8d1f37087f9772c56
|
|
| BLAKE2b-256 |
df67c71ceb7ba4a620ce6a7ffc8d718f9ae6954866c21fc378bc47d3dc20580a
|
File details
Details for the file autobyteus_llm_client-1.0.7-py3-none-any.whl.
File metadata
- Download URL: autobyteus_llm_client-1.0.7-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff2c96349e473c0505b7027a8917f0508218e038140f50ce8ec326125d6771bf
|
|
| MD5 |
44f247f9bd58c6210933d4a086df093f
|
|
| BLAKE2b-256 |
2184c0f7743540a8fe3478f6751f404486a04941f04e0aa918de350870fe97be
|