Skip to content

Commit 8ba280f

Browse files
authored
refactor: rename to whisper-api (#2)
* refactor: rename to whisper-api * chore: fix
1 parent 161d76b commit 8ba280f

File tree

12 files changed

+40
-40
lines changed

12 files changed

+40
-40
lines changed

Cargo.lock

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717
"apps/silero-vad-realtime",
1818
"apps/silero-vad-realtime-minimum",
1919
"apps/silero-vad-whisper-realtime",
20-
"apps/silero-vad-whisper-realtime-api",
20+
"apps/whisper-api",
2121
"apps/whisper-realtime",
2222
]
2323

apps/silero-vad-whisper-realtime-api/Cargo.toml renamed to apps/whisper-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "silero-vad-whisper-realtime-api"
2+
name = "whisper-api"
33
version = "0.1.0"
44
edition = "2024"
55

apps/silero-vad-whisper-realtime-api/README.md renamed to apps/whisper-api/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# silero-vad-whisper-realtime-api
1+
# whisper-api
22

33
> An OpenAI-compatible speech transcription API service with real-time streaming response (SSE), integrated with Silero VAD and Whisper models.
44
>
@@ -8,7 +8,7 @@
88

99
```
1010
git clone https://github.com/proj-airi/candle-examples.git
11-
cd apps/silero-vad-whisper-realtime-api
11+
cd apps/whisper-api
1212
```
1313

1414
## Build
@@ -21,27 +21,27 @@ cargo clean
2121
### NVIDIA CUDA
2222

2323
```
24-
cargo build --package silero-vad-whisper-realtime-api --features cuda
24+
cargo build --package whisper-api --features cuda
2525
```
2626

2727
### macOS Metal
2828

2929
```
30-
cargo build --package silero-vad-whisper-realtime-api --features metal
30+
cargo build --package whisper-api --features metal
3131
```
3232

3333
### CPU Only
3434

3535
```
36-
cargo build --package silero-vad-whisper-realtime-api
36+
cargo build --package whisper-api
3737
```
3838

3939
## Run
4040

4141
### Any platforms
4242

4343
```shell
44-
cargo run --package silero-vad-whisper-realtime-api --release
44+
cargo run --package whisper-api --release
4545
```
4646

4747
The server will start at `http://localhost:3000`.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)