wrapture 0.0.2 → 0.0.3
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/.github/workflows/check.yml +7 -0
- package/CHANGELOG.md +6 -0
- package/api/README.md +1 -1
- package/api/utils/convert.md +1 -1
- package/api/utils/generate-wrapper.md +1 -1
- package/api/wrapture.md +1 -1
- package/package.json +1 -1
|
@@ -48,6 +48,13 @@ jobs:
|
|
|
48
48
|
uses: actions/setup-node@v4
|
|
49
49
|
with:
|
|
50
50
|
node-version: '>=22.8.0'
|
|
51
|
+
- uses: actions/setup-python@v4
|
|
52
|
+
with:
|
|
53
|
+
python-version: '3.10'
|
|
54
|
+
- name: Install Python dependencies
|
|
55
|
+
run: |
|
|
56
|
+
python3 -m pip install --upgrade pip
|
|
57
|
+
pip install torch onnx onnxsim onnxruntime onnxruntime-tools
|
|
51
58
|
- name: Install dependencies
|
|
52
59
|
run: | # Install and link dependencies
|
|
53
60
|
npm i
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3](https://github.com/phun-ky/wrapture/compare/0.0.2...0.0.3) (2025-05-14)
|
|
4
|
+
|
|
5
|
+
### Bug
|
|
6
|
+
|
|
7
|
+
* 🐛 Python env ([36d0a30](https://github.com/phun-ky/wrapture/commit/36d0a302aebfabf9860f7cc5c70bc8151b221632))
|
|
8
|
+
|
|
3
9
|
## [0.0.2](https://github.com/phun-ky/wrapture/compare/0.0.1...0.0.2) (2025-05-14)
|
|
4
10
|
|
|
5
11
|
### Documentation
|
package/api/README.md
CHANGED
package/api/utils/convert.md
CHANGED
package/api/wrapture.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrapture",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"onnx",
|