badgr-cli 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ badgr serve meta-llama/Llama-3.1-8B-Instruct --gpu L40S --region EU
|
|
|
55
55
|
| Flag | Default | Description |
|
|
56
56
|
|------|---------|-------------|
|
|
57
57
|
| `--gpu <type>` | RTX_4090 | GPU: RTX_4090, L40S, A6000, A100, H100 |
|
|
58
|
-
| `--region
|
|
58
|
+
| `--region <region>` | — | Optional region preference. If omitted, Badgr chooses best available capacity. |
|
|
59
59
|
| `--count <n>` | 1 | Number of GPUs (1–8) |
|
|
60
60
|
| `--max-price <$/hr>` | — | Hard spend cap per GPU-hour |
|
|
61
61
|
| `--dry-run` | — | Preview routing without provisioning |
|
|
@@ -73,7 +73,7 @@ badgr run python train.py --gpu A100 --env HF_TOKEN=$HF_TOKEN
|
|
|
73
73
|
| `--gpu <type>` | RTX_4090 | GPU type |
|
|
74
74
|
| `--image <img>` | python:3.11-slim | Docker image |
|
|
75
75
|
| `--env KEY=VALUE` | — | Environment variable (repeatable) |
|
|
76
|
-
| `--region
|
|
76
|
+
| `--region <region>` | — | Optional region preference. If omitted, Badgr chooses best available capacity. |
|
|
77
77
|
| `--max-price <$/hr>` | — | Hard spend cap per GPU-hour |
|
|
78
78
|
| `--detach` | — | Launch and return immediately |
|
|
79
79
|
|
|
@@ -83,7 +83,7 @@ badgr run python train.py --gpu A100 --env HF_TOKEN=$HF_TOKEN
|
|
|
83
83
|
|
|
84
84
|
Badgr automatically searches available GPU capacity across its verified compute network.
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
Badgr automatically searches verified GPU capacity and chooses the best eligible route for your GPU type, workload, price cap, and optional region preference.
|
|
87
87
|
|
|
88
88
|
Preview before provisioning:
|
|
89
89
|
|
|
@@ -135,7 +135,7 @@ const client = new OpenAI({
|
|
|
135
135
|
|
|
136
136
|
## GPU options
|
|
137
137
|
|
|
138
|
-
| Flag value | GPU | VRAM |
|
|
138
|
+
| Flag value | GPU | VRAM | Estimated Badgr price/hr |
|
|
139
139
|
|-----------|-----|------|-------------|
|
|
140
140
|
| RTX_4090 | NVIDIA RTX 4090 | 24 GB | $0.65–0.89 |
|
|
141
141
|
| L40S | NVIDIA L40S | 48 GB | $1.10–1.40 |
|
|
@@ -143,7 +143,7 @@ const client = new OpenAI({
|
|
|
143
143
|
| A100 | NVIDIA A100 | 80 GB | $1.20–1.50 |
|
|
144
144
|
| H100 | NVIDIA H100 | 80 GB | $2.80–3.10 |
|
|
145
145
|
|
|
146
|
-
|
|
146
|
+
Prices shown are estimated Badgr rates. Final $/GPU-hour is confirmed before provisioning and may vary by GPU type, availability, region, workload, and runtime.
|
|
147
147
|
|
|
148
148
|
---
|
|
149
149
|
|