You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Since then I have expanded the tool with many more features, all focused on loca
49
49
-**[`rag-proxy`](docs/commands/rag-proxy.md)**: RAG proxy server for chatting with your documents.
50
50
-**[`dev`](docs/commands/dev.md)**: Parallel development with git worktrees and AI coding agents.
51
51
-**[`server`](docs/commands/server/index.md)**: Local ASR and TTS servers with dual-protocol (Wyoming & OpenAI-compatible APIs), TTL-based memory management, and multi-platform acceleration. Whisper uses MLX on Apple Silicon or Faster Whisper on Linux/CUDA. TTS supports Kokoro (GPU) or Piper (CPU).
52
-
-**[`transcribe-live`](docs/commands/transcribe-live.md)**: Continuous background transcription with VAD. Install with `uv tool install "agent-cli[vad]" -p 3.13`.
52
+
-**[`transcribe-live`](docs/commands/transcribe-live.md)**: Continuous background transcription with VAD. Install with `uv tool install "agent-cli[vad]"`.
53
53
54
54
## Quick Start
55
55
@@ -59,16 +59,12 @@ If you already have AI services running (or plan to use OpenAI), simply install:
59
59
60
60
```bash
61
61
# Using uv (recommended)
62
-
uv tool install agent-cli -p 3.13
62
+
uv tool install agent-cli
63
63
64
64
# Using pip
65
65
pip install agent-cli
66
66
```
67
67
68
-
> [!NOTE]
69
-
> The `-p 3.13` flag is required because some dependencies (like `onnxruntime`) don't support Python 3.14 yet.
70
-
> See [uv issue #8206](https://github.com/astral-sh/uv/issues/8206) for details.
71
-
72
68
Then use it:
73
69
```bash
74
70
agent-cli autocorrect "this has an eror"
@@ -102,12 +98,12 @@ agent-cli autocorrect "this has an eror"
102
98
103
99
> [!NOTE]
104
100
> `agent-cli` uses `sounddevice` for real-time microphone/voice features.
105
-
> On Linux only, you need to install the system-level PortAudio library (`sudo apt install portaudio19-dev` / your distro's equivalent on Linux) **before** you run `uv tool install agent-cli -p 3.13`.
101
+
> On Linux only, you need to install the system-level PortAudio library (`sudo apt install portaudio19-dev` / your distro's equivalent on Linux) **before** you run `uv tool install agent-cli`.
106
102
> On Windows and macOS, this is handled automatically.
107
103
108
104
```bash
109
105
# 1. Install agent-cli
110
-
uv tool install agent-cli -p 3.13
106
+
uv tool install agent-cli
111
107
112
108
# 2. Install all required services
113
109
agent-cli install-services
@@ -188,7 +184,7 @@ If you already have AI services set up or plan to use cloud services (OpenAI/Gem
188
184
189
185
```bash
190
186
# Using uv (recommended)
191
-
uv tool install agent-cli -p 3.13
187
+
uv tool install agent-cli
192
188
193
189
# Using pip
194
190
pip install agent-cli
@@ -873,7 +869,7 @@ the `[defaults]` section of your configuration file.
0 commit comments