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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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 US\|EU\|AU` | US | Region preference |
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 US\|EU\|AU` | US | Region preference |
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
- It chooses the cheapest eligible route that matches your GPU type, region, price cap, and workload type. If a route is unavailable, Badgr can try another eligible route without requiring you to change providers or rewrite code.
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 | Est. rate/hr |
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
- Rates are estimated market rates and may vary by region, availability, workload type, and runtime.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "badgr-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Badgr — run or serve GPU workloads from one command",
5
5
  "type": "module",
6
6
  "bin": {