Python client for Everpod — GPU inference on Household AI Infrastructure
Project description
everpod
Python client for Everpod — GPU inference on Household AI Infrastructure.
pip install everpod
from everpod import Everpod
client = Everpod(api_key="evp_...") # or set EVERPOD_API_KEY
image = client.images.generate(prompt="a lighthouse at dusk, cinematic")
image.save("lighthouse.png")
Generation runs as a job on a real GPU node; generate() polls to
completion for you. For async control:
job = client.images.submit(prompt="a lighthouse at dusk")
job = client.jobs.wait(job.id, timeout=120)
print(job.artifacts[0].url)
Check live capacity before submitting — models are only offered while a node can serve them:
for model in client.models.available():
print(model.name, model.ready_workers)
Your metered usage (nothing is billed during the pilot):
usage = client.usage.get(days=30)
print(usage.total_jobs, usage.total_gpu_seconds)
for row in usage.recent:
print(row["job_id"], row["gpu_seconds"])
Get an API key at app.everpod.io/keys · API reference at api.everpod.io/docs.
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 everpod-0.1.0.tar.gz.
File metadata
- Download URL: everpod-0.1.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f1c467c7a3225429d551b7eb19dcecfab3ed31293e5619795f5702d60fadc56
|
|
| MD5 |
c8697cab7bbe9066ffe00a7073ee1539
|
|
| BLAKE2b-256 |
3530a9e02162adf2d6d889c874f28d559ce277a27b28e1563cd37882f46eea54
|
File details
Details for the file everpod-0.1.0-py3-none-any.whl.
File metadata
- Download URL: everpod-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3a12b6c7d11b8494ab52269ef5632c306d2a7d154ea1cfaab1e958e6d85c653
|
|
| MD5 |
c1ce52ca1da3db586ccbd9233d06915c
|
|
| BLAKE2b-256 |
4fabe96615781333b8cfc1ee903878e2d06ec34bf0ce8a6935934b99a824cc01
|