API Reference
Epochly API Reference: Environment Variables
All Epochly environment variables: EPOCHLY_DISABLE, EPOCHLY_LEVEL, EPOCHLY_TELEMETRY, and more.
Environment variables for configuring Epochly behavior.
Core Settings
| Variable | Type | Default | Description |
|---|---|---|---|
EPOCHLY_LEVEL | int | 0 | Enhancement level (0-4) |
EPOCHLY_MAX_LEVEL | int | 4 | Maximum enhancement level cap — prevents promotion beyond this level |
EPOCHLY_MODE | str | balanced | Operating mode: off, monitor, conservative, balanced, aggressive |
EPOCHLY_TELEMETRY | bool | true | Enable telemetry |
EPOCHLY_DEBUG | bool | false | Enable debug mode |
Worker Settings
| Variable | Type | Default | Description |
|---|---|---|---|
EPOCHLY_MAX_WORKERS | int | 8 | Maximum workers (1-256) |
JIT Settings
| Variable | Type | Default | Description |
|---|---|---|---|
EPOCHLY_JIT_ENABLED | bool | true | Enable JIT compilation |
GPU Settings
| Variable | Type | Default | Description |
|---|---|---|---|
EPOCHLY_GPU_ENABLED | bool | true | Enable GPU |
Licensing
| Variable | Type | Default | Description |
|---|---|---|---|
EPOCHLY_LICENSE_KEY | str | None | License key |
Example Usage
# Set enhancement levelexport EPOCHLY_LEVEL=3# Enable GPUexport EPOCHLY_GPU_ENABLED=true# Set max workersexport EPOCHLY_MAX_WORKERS=8# Run your scriptpython my_script.py