clasp-ai 0.24.7 → 0.25.0
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 +12 -2
- package/package.json +1 -1
- package/scripts/install.js +1 -1
package/README.md
CHANGED
|
@@ -42,15 +42,25 @@ make build
|
|
|
42
42
|
### Via Docker
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
# Run with Docker
|
|
45
|
+
# Run with Docker (from GitHub Container Registry)
|
|
46
46
|
docker run -d -p 8080:8080 \
|
|
47
47
|
-e OPENAI_API_KEY=sk-... \
|
|
48
|
-
ghcr.io/jedarden/clasp
|
|
48
|
+
ghcr.io/jedarden/clasp:latest
|
|
49
|
+
|
|
50
|
+
# With specific version
|
|
51
|
+
docker run -d -p 8080:8080 \
|
|
52
|
+
-e OPENAI_API_KEY=sk-... \
|
|
53
|
+
ghcr.io/jedarden/clasp:0.24.8
|
|
49
54
|
|
|
50
55
|
# Or with docker-compose
|
|
51
56
|
docker-compose up -d
|
|
52
57
|
```
|
|
53
58
|
|
|
59
|
+
**Available Docker tags:**
|
|
60
|
+
- `latest` - Latest stable release
|
|
61
|
+
- `0.24` - Latest 0.24.x release
|
|
62
|
+
- `0.24.8` - Specific version
|
|
63
|
+
|
|
54
64
|
## Quick Start
|
|
55
65
|
|
|
56
66
|
### Using with OpenAI
|
package/package.json
CHANGED
package/scripts/install.js
CHANGED