Johnil Quezada

Results 12 comments of Johnil Quezada

@clearlon Not sure if you're still having this issue, and to be clear, I have no idea what I'm doing. But I ran into the same exact issue while trying...

@letmaik Thanks for the heads up. I just tried this via Anaconda and it appears to suffer from the same issue. I added the correct channel, and whether it's via...

I'm getting `Couldn't load the data from API.` when using this api with private pages, any chance I'm missing something? I've copied the token out of the browser, and public...

Not sure if anyone else is still having issues or if this was already solved elsewhere, but I managed to get a working build on Apple M1 Pro 16GB 14.1.1...

I got this error as well and realized it was caused by a typo. I was running `npx dalai llam install 30B`; worked fine after fixing it to `llama`. Even...

May I take a stab at this?

This seems to work: - Generate the wasm: `cargo build --lib --target wasm32-unknown-unknown` - Run it through wasm-bindgen: `wasm-bindgen --target experimental-nodejs-module ./target/wasm32-unknown-unknown/debug/${your_package_name}.wasm --out-dir ./pkg`

Running into the same issue. I've worked around it for now with some vite setup magic, but it should work for any test runner that supports global setup. ```typescript const...

Hello, I'm running into what appears to be a similar issue on `0.14.1`. This is the calling code: ```rust unsafe { std::env::set_var("WASMEDGE_LOG", "debug"); }; let wasm_bytes = genai_wasm::WASM_BYTES; let model_name...

Ok maybe not the same issue. I've been trying to get this to work on alpine (and so musl), and ended up cloning wasmedge-sdk, wasmedge-sys, and rust bindgen, in order...