Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3891b3a
feat(http): add Content-Type header to httpx and requests factories
deanq Feb 14, 2026
2c85b2b
feat(http): add centralized aiohttp session factory
deanq Feb 14, 2026
aae56bd
refactor(api): use centralized aiohttp factory in RunPod clients
deanq Feb 14, 2026
ad5b9cb
refactor(app): use centralized requests factory for tarball operations
deanq Feb 14, 2026
65401be
test(http): add comprehensive tests for HTTP client factories
deanq Feb 14, 2026
c99b486
feat: cleanup flash deploy/undeploy/build command output format (#191)
KAJdev Feb 14, 2026
826f169
refactor: remove noisy debug logs from flash (AE-1966) (#204)
deanq Feb 14, 2026
b60df1b
feat(http): add Content-Type header to httpx and requests factories
deanq Feb 14, 2026
afea835
feat(http): add centralized aiohttp session factory
deanq Feb 14, 2026
51f8d2e
refactor(api): use centralized aiohttp factory in RunPod clients
deanq Feb 14, 2026
4543d2d
refactor(app): use centralized requests factory for tarball operations
deanq Feb 14, 2026
04c055d
test(http): add comprehensive tests for HTTP client factories
deanq Feb 14, 2026
90c4aee
Merge branch 'deanq/ae-2106-consolidated-http' of https://github.com/…
deanq Feb 14, 2026
5859f4b
fix(runtime): restore on-demand provisioning for flash run (#206)
deanq Feb 16, 2026
51693c7
fix(docs): change idleTimeout from minutes to seconds (#205)
DeJayDev Feb 17, 2026
84d349c
feat(http): add Content-Type header to httpx and requests factories
deanq Feb 14, 2026
5cebb9c
feat(http): add centralized aiohttp session factory
deanq Feb 14, 2026
8740c9c
refactor(api): use centralized aiohttp factory in RunPod clients
deanq Feb 14, 2026
fb8a6ff
refactor(app): use centralized requests factory for tarball operations
deanq Feb 14, 2026
f9ac3d1
test(http): add comprehensive tests for HTTP client factories
deanq Feb 14, 2026
f6ef93b
Merge branch 'deanq/ae-2106-consolidated-http' of https://github.com/…
deanq Feb 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ The following parameters can be used with `LiveServerless` (full remote code exe
| `gpuCount` | Number of GPUs per worker | 1 | 1, 2, 4 |
| `workersMin` | Minimum number of workers | 0 | Set to 1 for persistence |
| `workersMax` | Maximum number of workers | 3 | Higher for more concurrency |
| `idleTimeout` | Minutes before scaling down | 5 | 10, 30, 60 |
| `idleTimeout` | Seconds before scaling down | 60 | 300, 600, 1800 |
| `env` | Environment variables | `None` | `{"HF_TOKEN": "xyz"}` |
| `networkVolumeId` | Persistent storage ID | `None` | `"vol_abc123"` |
| `executionTimeoutMs`| Max execution time (ms) | 0 (no limit) | 600000 (10 min) |
Expand Down
2 changes: 1 addition & 1 deletion docs/Flash_SDK_Reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class ResourceConfig:
# Worker scaling
workersMin: int = 0 # Minimum workers to maintain
workersMax: int = 3 # Maximum workers allowed
idleTimeout: int = 300 # Seconds before idle worker terminates
idleTimeout: int = 60 # Seconds before idle worker terminates

# Networking
networkVolumeId: Optional[str] = None # Mount persistent storage
Expand Down
Loading
Loading