Tags: jeremycline/btfm
Tags
.github/workflows/build-cli.yml | 32 ++ .github/workflows/ci.yml | 65 ++-- .github/workflows/release.yml | 121 +++--- .github/workflows/security.yml | 2 +- Cargo.lock | 612 ++++++++++++++---------------- Cargo.toml | 1 - README.md | 129 ++++--- btfm-cli/Cargo.toml | 5 +- btfm-cli/src/{main.rs => bin/btfm.rs} | 0 btfm/Cargo.toml | 29 +- {whisper-server => btfm}/requirements.txt | 0 btfm/src/{main.rs => bin/btfm-server.rs} | 23 +- btfm/src/cli.rs | 26 +- btfm/src/config.rs | 30 +- btfm/src/discord/mod.rs | 7 +- btfm/src/discord/voice.rs | 42 +- btfm/src/lib.rs | 6 +- btfm/src/transcode.rs | 23 +- btfm/src/transcribe.py | 36 ++ btfm/src/transcribe.rs | 196 ++++++++++ btfm/src/transcribe/deepgram.rs | 155 -------- btfm/src/transcribe/mod.rs | 68 ---- btfm/src/transcribe/whisper.rs | 144 ------- whisper-server/Cargo.toml | 97 ----- whisper-server/src/error.rs | 15 - whisper-server/src/main.rs | 185 --------- whisper-server/src/transcribe.py | 62 --- 27 files changed, 812 insertions(+), 1299 deletions(-)
.github/workflows/build-cli.yml | 32 ++ .github/workflows/ci.yml | 65 ++-- .github/workflows/release.yml | 121 +++--- .github/workflows/security.yml | 2 +- Cargo.lock | 612 ++++++++++++++---------------- Cargo.toml | 1 - README.md | 129 ++++--- btfm-cli/Cargo.toml | 5 +- btfm-cli/src/{main.rs => bin/btfm.rs} | 0 btfm/Cargo.toml | 29 +- {whisper-server => btfm}/requirements.txt | 0 btfm/src/{main.rs => bin/btfm-server.rs} | 23 +- btfm/src/cli.rs | 26 +- btfm/src/config.rs | 30 +- btfm/src/discord/mod.rs | 7 +- btfm/src/discord/voice.rs | 42 +- btfm/src/lib.rs | 6 +- btfm/src/transcode.rs | 23 +- btfm/src/transcribe.py | 36 ++ btfm/src/transcribe.rs | 196 ++++++++++ btfm/src/transcribe/deepgram.rs | 155 -------- btfm/src/transcribe/mod.rs | 68 ---- btfm/src/transcribe/whisper.rs | 144 ------- whisper-server/Cargo.toml | 97 ----- whisper-server/src/error.rs | 15 - whisper-server/src/main.rs | 185 --------- whisper-server/src/transcribe.py | 62 --- 27 files changed, 812 insertions(+), 1299 deletions(-)
PreviousNext