Initial commit

Co-authored-by: scott-oai <142930063+scott-oai@users.noreply.github.com>
Co-authored-by: Zhuohan Li <zhuohan@openai.com>
This commit is contained in:
Dominik Kundel 2025-08-05 08:25:17 -07:00 committed by Scott Lessans
commit 253cdca537
70 changed files with 15013 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
.PHONY: javascript
js:
# Browser ESM build
wasm-pack build --target web --out-dir javascript/dist/web --features wasm-binding --no-default-features
# Node.js ESM/CJS-compatible build
wasm-pack build --target nodejs --out-dir javascript/dist/node --features wasm-binding --no-default-features
.PHONY: python-local
python-local:
maturin develop -F python-binding --release