Marco Argentieri

Results 157 comments of Marco Argentieri

That's because we unmarshal the returning JSON (from chopsticks endpoint) in a golang `map[string]interface{}` which namely do not maintain order of keys. Would be maybe easier to just return the...

Tracking here, ubuntu as base image is sub-optimal. Moving to alpine based one

Hey @sarthak13gupta! Yes this is def open. I think there could be many ways and I didn't think about it extensively, but the idea would make sure to check if...

fyi we are hosting one separated instance for each GitHub organization. It works for now, agreed centralization in a single dashboard would be best!

This didn't worked due this crate that does not provide and arm64 binary. Any pointer on this? ```sh = note: ld: in /Users/runner/work/whisper-cli-rs/whisper-cli-rs/target/aarch64-apple-darwin/release/deps/libwhisper_rs_sys-0b7fe0e9fb057516.rlib(whisper.cpp.o), archive member 'whisper.cpp.o' with length 370760 is...

I tried to pull the repo and build on my Mac and I get the following error ```sh error: failed to run custom build command for `whisper-rs-sys v0.6.0` --- stderr...

Ok that error is fixed by installing `cmake` on my system, I improved the documentation to allow Mac developers to build the solution locally see the PR https://github.com/m1guelpf/whisper-cli-rs/pull/13

I modified the release action to also cross-compile for arm64 architecture for Darwin https://github.com/m1guelpf/whisper-cli-rs/pull/14

I tried to run the CLI with `cargo run` as below, but It gives me this error. The file `jfk.wav` is the root directory where. ``` cargo run -- --model...

I think the error comes from the fact the `transcribe` method assumes `ffmpeg` is available and installed in the user system. on mac would be `brew insyall ffmpeg` This seems...