mirror of
https://github.com/katanemo/plano.git
synced 2026-06-08 14:55:14 +02:00
Updating Contributing.md to include helpful build steps
This commit is contained in:
parent
0f19fe30c2
commit
843903c8bc
1 changed files with 10 additions and 0 deletions
|
|
@ -100,6 +100,16 @@ For library tests only:
|
|||
cargo test --lib
|
||||
```
|
||||
|
||||
**Build Rust artifacts with the correct targets:**
|
||||
|
||||
```bash
|
||||
cd crates
|
||||
cargo build --release --target wasm32-wasip1 -p llm_gateway -p prompt_gateway
|
||||
cargo build --release -p brightstaff -p hermesllm -p common
|
||||
```
|
||||
|
||||
Do not run a blanket workspace-native build such as `cargo build --release` from `crates/`. The `llm_gateway` and `prompt_gateway` crates are Proxy-WASM `cdylib`s and must be built for `wasm32-wasip1`, while `brightstaff`, `hermesllm`, and `common` build natively.
|
||||
|
||||
**Run Python CLI tests:**
|
||||
|
||||
```bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue