Skip to content

Commit 49a14c3

Browse files
chore: ready for release
1 parent 0c170c6 commit 49a14c3

File tree

3 files changed

+42
-43
lines changed

3 files changed

+42
-43
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
[package]
2-
name = "groq-api-rs"
3-
version = "0.2.0"
2+
name = "stt-cli"
3+
version = "0.1.0"
44
edition = "2021"
5-
authors = ["ededddy <eddylei070300@gmail.com>"]
5+
authors = ["Abhishek Tripathi <abhishek.tripathi456@gmail.com>"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
8-
homepage = "https://github.com/ededddy/groq-api-rs"
9-
documentation = "https://docs.rs/groq-api-rs/"
10-
repository = "https://github.com/ededddy/groq-api-rs"
11-
description = "Client For Groq Cloud LLM APIs"
12-
keywords = ["groq-api", "groq", "llm", "reqwest"]
8+
homepage = "https://github.com/TwistingTwists/stt-cli"
9+
documentation = "https://docs.rs/stt-cli/"
10+
repository = "https://github.com/TwistingTwists/stt-cli"
11+
description = "Speech to text Cli using Groq API and OpenAI API"
12+
keywords = ["stt", "stt-cli", "groq", "openai", "llm", "speech-to-text"]
1313
categories = ["api-bindings", "web-programming", "asynchronous"]
1414

1515

1616
[dependencies]
1717
reqwest = { version = "0.12.0", features = ["multipart", "json"] }
1818
serde = { version = "1.0.197", features = ["derive"] }
19-
tokio = { version = "1.36.0", features = ["full"] }
19+
tokio = { version = "1.44.2", features = ["full"] }
2020
serde_json = "1.0.114"
2121
anyhow = "1.0.81"
2222
chrono = { version = "0.4.38", features = ["serde"] }
2323
reqwest-eventsource = "0.6.0"
2424
futures = "0.3.30"
2525

2626
cpal = "0.15.2"
27-
# wav = "1.0.0"
2827
async-openai = "0.28.1"
2928
ctrlc = "3.4.1"
3029
async-trait = "0.1.73"

scripts/local_run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ export RUST_BACKTRACE=1
66

77
cargo build
88

9-
# ./target/debug/groq-api-rs -t groq
10-
./target/debug/groq-api-rs -t open-ai
9+
# ./target/debug/stt-cli -t groq
10+
./target/debug/stt-cli -t open-ai

0 commit comments

Comments
 (0)