agent-cli 0.66.2__py3-none-any.whl → 0.67.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. agent_cli/_extras.json +13 -0
  2. agent_cli/_requirements/audio.txt +71 -0
  3. agent_cli/_requirements/{whisper.txt → faster-whisper.txt} +5 -113
  4. agent_cli/_requirements/{tts-kokoro.txt → kokoro.txt} +5 -108
  5. agent_cli/_requirements/llm.txt +176 -0
  6. agent_cli/_requirements/memory.txt +7 -98
  7. agent_cli/_requirements/{whisper-mlx.txt → mlx-whisper.txt} +62 -125
  8. agent_cli/_requirements/{tts.txt → piper.txt} +6 -124
  9. agent_cli/_requirements/rag.txt +10 -97
  10. agent_cli/_requirements/server.txt +4 -122
  11. agent_cli/_requirements/speed.txt +7 -131
  12. agent_cli/_requirements/vad.txt +6 -130
  13. agent_cli/agents/assistant.py +2 -0
  14. agent_cli/agents/autocorrect.py +2 -0
  15. agent_cli/agents/chat.py +2 -0
  16. agent_cli/agents/memory/add.py +2 -0
  17. agent_cli/agents/memory/proxy.py +2 -0
  18. agent_cli/agents/rag_proxy.py +2 -0
  19. agent_cli/agents/speak.py +2 -0
  20. agent_cli/agents/transcribe.py +2 -0
  21. agent_cli/agents/transcribe_daemon.py +2 -0
  22. agent_cli/agents/voice_edit.py +2 -0
  23. agent_cli/core/deps.py +130 -14
  24. agent_cli/dev/skill/SKILL.md +2 -2
  25. agent_cli/docs_gen.py +0 -42
  26. agent_cli/install/extras.py +6 -14
  27. agent_cli/memory/__init__.py +1 -18
  28. agent_cli/rag/__init__.py +0 -19
  29. agent_cli/scripts/sync_extras.py +138 -0
  30. agent_cli/server/cli.py +4 -0
  31. agent_cli/services/_wyoming_utils.py +4 -2
  32. agent_cli/services/asr.py +13 -3
  33. agent_cli/services/tts.py +5 -2
  34. agent_cli/services/wake_word.py +6 -3
  35. {agent_cli-0.66.2.dist-info → agent_cli-0.67.1.dist-info}/METADATA +35 -30
  36. {agent_cli-0.66.2.dist-info → agent_cli-0.67.1.dist-info}/RECORD +39 -35
  37. {agent_cli-0.66.2.dist-info → agent_cli-0.67.1.dist-info}/WHEEL +0 -0
  38. {agent_cli-0.66.2.dist-info → agent_cli-0.67.1.dist-info}/entry_points.txt +0 -0
  39. {agent_cli-0.66.2.dist-info → agent_cli-0.67.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,26 +1,25 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-cli
3
- Version: 0.66.2
3
+ Version: 0.67.1
4
4
  Summary: A suite of AI-powered command-line tools for text correction, audio transcription, and voice assistance.
5
5
  Project-URL: Homepage, https://github.com/basnijholt/agent-cli
6
6
  Author-email: Bas Nijholt <bas@nijho.lt>
7
7
  License-File: LICENSE
8
8
  Requires-Python: <3.14,>=3.11
9
9
  Requires-Dist: dotenv
10
- Requires-Dist: google-genai>=1.25.0
11
10
  Requires-Dist: httpx
12
- Requires-Dist: numpy
13
- Requires-Dist: openai
14
11
  Requires-Dist: psutil; sys_platform == 'win32'
15
- Requires-Dist: pydantic-ai-slim[duckduckgo,openai,vertexai]
12
+ Requires-Dist: pydantic
16
13
  Requires-Dist: pyperclip
17
14
  Requires-Dist: rich
18
15
  Requires-Dist: setproctitle
19
- Requires-Dist: sounddevice
20
16
  Requires-Dist: typer
21
- Requires-Dist: wyoming
17
+ Provides-Extra: audio
18
+ Requires-Dist: numpy; extra == 'audio'
19
+ Requires-Dist: sounddevice>=0.4.6; extra == 'audio'
20
+ Requires-Dist: wyoming>=1.5.2; extra == 'audio'
22
21
  Provides-Extra: dev
23
- Requires-Dist: markdown-code-runner; extra == 'dev'
22
+ Requires-Dist: markdown-code-runner>=2.7.0; extra == 'dev'
24
23
  Requires-Dist: notebook; extra == 'dev'
25
24
  Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
26
25
  Requires-Dist: pydantic-ai-slim[openai]; extra == 'dev'
@@ -32,6 +31,18 @@ Requires-Dist: pytest-timeout; extra == 'dev'
32
31
  Requires-Dist: pytest>=7.0.0; extra == 'dev'
33
32
  Requires-Dist: ruff; extra == 'dev'
34
33
  Requires-Dist: versioningit; extra == 'dev'
34
+ Provides-Extra: faster-whisper
35
+ Requires-Dist: fastapi[standard]; extra == 'faster-whisper'
36
+ Requires-Dist: faster-whisper>=1.0.0; extra == 'faster-whisper'
37
+ Provides-Extra: kokoro
38
+ Requires-Dist: fastapi[standard]; extra == 'kokoro'
39
+ Requires-Dist: huggingface-hub>=0.20.0; extra == 'kokoro'
40
+ Requires-Dist: kokoro>=0.9.0; extra == 'kokoro'
41
+ Requires-Dist: pip; extra == 'kokoro'
42
+ Requires-Dist: soundfile>=0.12.0; extra == 'kokoro'
43
+ Requires-Dist: transformers>=4.40.0; extra == 'kokoro'
44
+ Provides-Extra: llm
45
+ Requires-Dist: pydantic-ai-slim[duckduckgo,google,openai,vertexai]>=0.1.1; extra == 'llm'
35
46
  Provides-Extra: memory
36
47
  Requires-Dist: chromadb>=0.4.22; extra == 'memory'
37
48
  Requires-Dist: fastapi[standard]; extra == 'memory'
@@ -40,6 +51,12 @@ Requires-Dist: onnxruntime>=1.17.0; extra == 'memory'
40
51
  Requires-Dist: pyyaml>=6.0.0; extra == 'memory'
41
52
  Requires-Dist: transformers>=4.30.0; extra == 'memory'
42
53
  Requires-Dist: watchfiles>=0.21.0; extra == 'memory'
54
+ Provides-Extra: mlx-whisper
55
+ Requires-Dist: fastapi[standard]; extra == 'mlx-whisper'
56
+ Requires-Dist: mlx-whisper>=0.4.0; extra == 'mlx-whisper'
57
+ Provides-Extra: piper
58
+ Requires-Dist: fastapi[standard]; extra == 'piper'
59
+ Requires-Dist: piper-tts>=1.2.0; extra == 'piper'
43
60
  Provides-Extra: rag
44
61
  Requires-Dist: chromadb>=0.4.22; extra == 'rag'
45
62
  Requires-Dist: fastapi[standard]; extra == 'rag'
@@ -59,24 +76,8 @@ Requires-Dist: pytest-cov>=4.0.0; extra == 'test'
59
76
  Requires-Dist: pytest-mock; extra == 'test'
60
77
  Requires-Dist: pytest-timeout; extra == 'test'
61
78
  Requires-Dist: pytest>=7.0.0; extra == 'test'
62
- Provides-Extra: tts
63
- Requires-Dist: fastapi[standard]; extra == 'tts'
64
- Requires-Dist: piper-tts>=1.2.0; extra == 'tts'
65
- Provides-Extra: tts-kokoro
66
- Requires-Dist: fastapi[standard]; extra == 'tts-kokoro'
67
- Requires-Dist: huggingface-hub>=0.20.0; extra == 'tts-kokoro'
68
- Requires-Dist: kokoro>=0.9.0; extra == 'tts-kokoro'
69
- Requires-Dist: pip; extra == 'tts-kokoro'
70
- Requires-Dist: soundfile>=0.12.0; extra == 'tts-kokoro'
71
- Requires-Dist: transformers>=4.40.0; extra == 'tts-kokoro'
72
79
  Provides-Extra: vad
73
80
  Requires-Dist: silero-vad>=5.1; extra == 'vad'
74
- Provides-Extra: whisper
75
- Requires-Dist: fastapi[standard]; extra == 'whisper'
76
- Requires-Dist: faster-whisper>=1.0.0; extra == 'whisper'
77
- Provides-Extra: whisper-mlx
78
- Requires-Dist: fastapi[standard]; extra == 'whisper-mlx'
79
- Requires-Dist: mlx-whisper>=0.4.0; (sys_platform == 'darwin' and platform_machine == 'arm64') and extra == 'whisper-mlx'
80
81
  Description-Content-Type: text/markdown
81
82
 
82
83
  # Agent CLI
@@ -130,7 +131,7 @@ Since then I have expanded the tool with many more features, all focused on loca
130
131
  - **[`rag-proxy`](docs/commands/rag-proxy.md)**: RAG proxy server for chatting with your documents.
131
132
  - **[`dev`](docs/commands/dev.md)**: Parallel development with git worktrees and AI coding agents.
132
133
  - **[`server`](docs/commands/server/index.md)**: Local ASR and TTS servers with dual-protocol (Wyoming & OpenAI), 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).
133
- - **[`transcribe-daemon`](docs/commands/transcribe-daemon.md)**: Continuous background transcription with VAD. Install with `uv tool install "agent-cli[vad]"`.
134
+ - **[`transcribe-daemon`](docs/commands/transcribe-daemon.md)**: Continuous background transcription with VAD. Install with `uv tool install "agent-cli[vad]" -p 3.13`.
134
135
 
135
136
  ## Quick Start
136
137
 
@@ -140,12 +141,16 @@ If you already have AI services running (or plan to use OpenAI), simply install:
140
141
 
141
142
  ```bash
142
143
  # Using uv (recommended)
143
- uv tool install agent-cli
144
+ uv tool install agent-cli -p 3.13
144
145
 
145
146
  # Using pip
146
147
  pip install agent-cli
147
148
  ```
148
149
 
150
+ > [!NOTE]
151
+ > The `-p 3.13` flag is required because some dependencies (like `onnxruntime`) don't support Python 3.14 yet.
152
+ > See [uv issue #8206](https://github.com/astral-sh/uv/issues/8206) for details.
153
+
149
154
  Then use it:
150
155
  ```bash
151
156
  agent-cli autocorrect "this has an eror"
@@ -179,12 +184,12 @@ agent-cli autocorrect "this has an eror"
179
184
 
180
185
  > [!NOTE]
181
186
  > `agent-cli` uses `sounddevice` for real-time microphone/voice features.
182
- > 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`.
187
+ > 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`.
183
188
  > On Windows and macOS, this is handled automatically.
184
189
 
185
190
  ```bash
186
191
  # 1. Install agent-cli
187
- uv tool install agent-cli
192
+ uv tool install agent-cli -p 3.13
188
193
 
189
194
  # 2. Install all required services
190
195
  agent-cli install-services
@@ -265,7 +270,7 @@ If you already have AI services set up or plan to use cloud services (OpenAI/Gem
265
270
 
266
271
  ```bash
267
272
  # Using uv (recommended)
268
- uv tool install agent-cli
273
+ uv tool install agent-cli -p 3.13
269
274
 
270
275
  # Using pip
271
276
  pip install agent-cli
@@ -829,7 +834,7 @@ the `[defaults]` section of your configuration file.
829
834
 
830
835
  **Installation:** Requires the `vad` extra:
831
836
  ```bash
832
- uv tool install "agent-cli[vad]"
837
+ uv tool install "agent-cli[vad]" -p 3.13
833
838
  ```
834
839
 
835
840
  **How to Use It:**
@@ -1,43 +1,46 @@
1
1
  agent_cli/__init__.py,sha256=-bo57j_5TsCug2tGHh7wClAGDhzN239639K40pgVh4g,187
2
2
  agent_cli/__main__.py,sha256=2wx_SxA8KRdejM-hBFLN8JTR2rIgtwnDH03MPAbJH5U,106
3
+ agent_cli/_extras.json,sha256=PCeXMr8zX04n_fcLrticn4lRpisZTfBkT2oqdImVzEY,708
3
4
  agent_cli/_tools.py,sha256=u9Ww-k-sbwFnMTW8sreFGd71nJP6o5hKcM0Zd_D9GZk,12136
4
5
  agent_cli/api.py,sha256=FQ_HATc7DaedbEFQ275Z18wV90tkDByD_9x_K0wdSLQ,456
5
6
  agent_cli/cli.py,sha256=zCk7sVVZstTU3GHFXAavcXd8Kactav4x0PyVY_rX4SI,2739
6
7
  agent_cli/config.py,sha256=dgwDV6chrQzGnVZIJ0OOg26jFKLCGIInC4Q9oXcj3rM,15413
7
8
  agent_cli/config_cmd.py,sha256=Fb-KBjtveft3x3_xjqlqobBwZqtI6Umrd8YzlwTAnZ4,9554
8
9
  agent_cli/constants.py,sha256=-Q17N6qKIGqPDsu3FxpIKP33G0Cs0RUJlHwYNHxVxek,843
9
- agent_cli/docs_gen.py,sha256=n6QMPFZK0prpz2cGgo2yXX_I29p-l0jPGEbHZDZ-NUc,14809
10
+ agent_cli/docs_gen.py,sha256=j6mBHwoPcQzMdgIWi_bB2A6yOyhvmW_cntRfwUg_8p8,13374
10
11
  agent_cli/example-config.toml,sha256=xd9BXeOqdYx4xFJt58VBs2I49ESy6dF4-mWF_g8sM9o,7552
11
12
  agent_cli/opts.py,sha256=qMK_mLxzGAbX7C2IYuCFvOkLgaxCCMO66I9ps8AdrYo,12114
12
13
  agent_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
14
  agent_cli/_requirements/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- agent_cli/_requirements/memory.txt,sha256=LmX0uKxnKuLTcZg5TESJ4n7AWrar7iMspONskvyiDTY,8860
15
- agent_cli/_requirements/rag.txt,sha256=e45zy2Xn6csCd0qJuuHYkMgNQXPgNHk6SElz8LtezC0,9656
16
- agent_cli/_requirements/server.txt,sha256=DbgthcQ2CufWaaFu-spq9Ow14rqdT5XO05licQNoeMA,5127
17
- agent_cli/_requirements/speed.txt,sha256=U1sdmglUJxhg_ZmxPc-iaJ38dpt5xP6sLG8CVnSDeyY,3642
18
- agent_cli/_requirements/tts-kokoro.txt,sha256=3BooGvCXgub0y2olZuoeOkoL-xyvU9WzYw9CaWRmZGE,10848
19
- agent_cli/_requirements/tts.txt,sha256=wqefgl9Amh3xsVLJHJPbtgJUpPZqf6lr9zuC6jjTEU8,5569
20
- agent_cli/_requirements/vad.txt,sha256=-nyWylzzLYyC0fBONsZf6HUhqkXxb2WsKpZlueFmwyg,6195
21
- agent_cli/_requirements/whisper-mlx.txt,sha256=sE229FmA91RACIEMG2cMNiWcsawbXvbglit8I395f_Q,7096
22
- agent_cli/_requirements/whisper.txt,sha256=CKgk5iOjB4MMKor4eCcrhTDkDJbYMbQXU-TfZHeVWKA,6283
15
+ agent_cli/_requirements/audio.txt,sha256=VymefAqXKNQDg_hlNiO3-Pz8zApp1IqbtWjUv07fSL0,1391
16
+ agent_cli/_requirements/faster-whisper.txt,sha256=QP8akE33gcjpHmim1zcbuPOvcOAxBGh-tiOpRXfX3KI,4210
17
+ agent_cli/_requirements/kokoro.txt,sha256=XzvT9FvzWvMQK_ClanO0DJoyo7kqcfoCeenTT_KA3R0,8868
18
+ agent_cli/_requirements/llm.txt,sha256=06gG3fOiye0R7bDNj2h4YmAt6WuOi1HUtuW_BBjcKMY,3459
19
+ agent_cli/_requirements/memory.txt,sha256=RmUGuRKJvXXL1nVCZCGOKy6zvbqyzUikx5zHymk1fok,7152
20
+ agent_cli/_requirements/mlx-whisper.txt,sha256=gOlprOn5sKtrBbVK0tWnzc-CkGzII_X2URa2vpY5cr0,6090
21
+ agent_cli/_requirements/piper.txt,sha256=LGm1gQopXgpDbgjTyWJpWYwEjjHSb86DDn48qoHnZgU,3332
22
+ agent_cli/_requirements/rag.txt,sha256=5zDS0BtxcB0Ig8zw8IXWTMzgTmSTNj0MMzR9G9olrIc,8127
23
+ agent_cli/_requirements/server.txt,sha256=k4ALhN4oR2e4amz4_1lQ2_hxB6MXg5LaGtlfn5EOc-s,2881
24
+ agent_cli/_requirements/speed.txt,sha256=0jxqHWKJBsUGOmr5J1hc_BHE7I4kyBpmB3dhk7O6btU,1333
25
+ agent_cli/_requirements/vad.txt,sha256=shMttjopUeOhpYrb3dqu9XoWbeaqkqNBw9cjEoAfRIc,3886
23
26
  agent_cli/agents/__init__.py,sha256=c1rnncDW5pBvP6BiLzFVpLWDNZzFRaUA7-a97avFVAs,321
24
27
  agent_cli/agents/_voice_agent_common.py,sha256=PUAztW84Xf9U7d0C_K5cL7I8OANIE1H6M8dFD_cRqps,4360
25
- agent_cli/agents/assistant.py,sha256=BMF693kUZxM7u7mcI0nVua0EpqFcGlby2cMMZeLT7hY,13965
26
- agent_cli/agents/autocorrect.py,sha256=R1ZftWDBXbdWCpJUz5JZnUx0u-9ceAJsOxx-yZWW2Ew,8892
27
- agent_cli/agents/chat.py,sha256=UVuCCb0vTOgKayDUeOfffRw_UeNykXpcQYa3WuWG64s,17176
28
- agent_cli/agents/rag_proxy.py,sha256=GuoPiQy3A6mgpYud-Ym5XQLRjA5d4cbvGCnnqxF968A,4627
29
- agent_cli/agents/speak.py,sha256=xTpY1hmAo4Z_5T1fZIJPTZz7tUbkQG12EYAMX_XsaRg,7027
30
- agent_cli/agents/transcribe.py,sha256=S-nO7hVRsDDO2P-WAIDXvqhdQT9lNKfw3nHjgZmhGxk,24492
31
- agent_cli/agents/transcribe_daemon.py,sha256=_xlOvNj7FACN9Yq6w-oXmnh5Iciv7ZiZcd-EamhwlWc,17580
32
- agent_cli/agents/voice_edit.py,sha256=Tcb5vRLIMs26vGBpTOhcg0lbCVUGfxwz1CS0o299_LM,11056
28
+ agent_cli/agents/assistant.py,sha256=dXExb-UrWdMiEcI1c6bXvMhii1iGg49Zw4On6-inQUE,14046
29
+ agent_cli/agents/autocorrect.py,sha256=kIkQNo6ldRre8y1KYMqBxlDLyyoc2l6Wa632CoYkZOQ,8964
30
+ agent_cli/agents/chat.py,sha256=7qwDBXFQvhqtlRA4IFXJS24hZ9PN6lb0g9boxwHUS1c,17257
31
+ agent_cli/agents/rag_proxy.py,sha256=GNhBoFp0C5kIGxfI6382SBlAQEgIWUahBHuZHS32DF4,4699
32
+ agent_cli/agents/speak.py,sha256=xG2ppthpdmpzsYkNeUynwDmWe8JTpJYhdKs3L1jR6eY,7101
33
+ agent_cli/agents/transcribe.py,sha256=0A1lt0kiDpzp8tfG11vxwzDzoXcDi7-nVmMbKbETYcU,24573
34
+ agent_cli/agents/transcribe_daemon.py,sha256=FPqcAfGNK_PyxfgQw1b-xph4JrFeCvKy8e9b1HIhRUU,17668
35
+ agent_cli/agents/voice_edit.py,sha256=bOZzeRici5GFq9qPUwHTQiW1TFhHcm_AcLG-EdKxwgk,11137
33
36
  agent_cli/agents/memory/__init__.py,sha256=gW-0NGksjxTKkSjk4PzlXZIiAoF0sS2mFrRdeGVITf8,780
34
- agent_cli/agents/memory/add.py,sha256=VkNd8es2llqTl4TdSAvXXz2G3BmIbWWvhXPwU5JrNnk,6135
35
- agent_cli/agents/memory/proxy.py,sha256=SC4aTv8EYM2e6UOnoU-9DFMUwiIK7PapLQc0IIcETbE,6550
37
+ agent_cli/agents/memory/add.py,sha256=lk6q2SmuwNNFAoDnfOQxPpNHbbHjekGCyKaWUgC9x-8,6210
38
+ agent_cli/agents/memory/proxy.py,sha256=BRKMn1kxNnxGcy-zQnlhmDR6hs41Qec4125NCy5a3O8,6625
36
39
  agent_cli/core/__init__.py,sha256=c_knH7u9QgjsfMIil9NP4bVizHawLUMYoQWU4H9vMlQ,46
37
40
  agent_cli/core/audio.py,sha256=43FpYe2Wu_BYK9xJ_55V4xHjHJeFwQ5aM-CQzlTryt8,15168
38
41
  agent_cli/core/audio_format.py,sha256=zk3qlYMAlKYPz1enrjihQQspl_C218v1Rbcm7Uktlew,8773
39
42
  agent_cli/core/chroma.py,sha256=Vb_ny7SzAIL9SCEGlYgYOqsdG9BgusFGMj0RUzb6W90,2728
40
- agent_cli/core/deps.py,sha256=Btky1mknzhQ9nFjkIWW_dWBL8jxfhfg4WwDMrp7xzIc,704
43
+ agent_cli/core/deps.py,sha256=duZEIAJwx_faJr0E2yGn-UJDb8t1uEBcx6MEYNK7TDc,4587
41
44
  agent_cli/core/openai_proxy.py,sha256=f2kqxk6bAOeN7gOzU0JnyS-RYtXUcK5Gbsa_pBmlCv0,4470
42
45
  agent_cli/core/process.py,sha256=Zay6beX4JUbkBHr6xbJxwVBjVFDABmRHQCXVPQH93r8,5916
43
46
  agent_cli/core/reranker.py,sha256=Qv5ASGUdseLzI6eQRfNeQY-Lvv4SOgLOu56CpwmszDM,3779
@@ -74,7 +77,7 @@ agent_cli/dev/editors/sublime.py,sha256=owEfRSMuArSeFKqk-LE2JOXaZy5QlQfHQ-l0I4k2
74
77
  agent_cli/dev/editors/vim.py,sha256=Fo-IQMPVbIiwBdOfmkFxR37f96QW6xc5LV3Pvr3u-b0,1378
75
78
  agent_cli/dev/editors/vscode.py,sha256=GOrl4FwVdDyuSn7t4lglgnVt_T6NtpjLVh1OWBxDMwE,318
76
79
  agent_cli/dev/editors/zed.py,sha256=lRMhdN_SKmHBA1ulx8x-p7Th_0EGSIv6ppAE84xobU4,515
77
- agent_cli/dev/skill/SKILL.md,sha256=r_QoJR5VLrsI7h-oopfJ8o89oWM43EHgy8IYYa52q9c,4421
80
+ agent_cli/dev/skill/SKILL.md,sha256=SLDavirkkPVAHxf1JmRxvJz4EUQI81Dv0fdvjDs7VJ8,4443
78
81
  agent_cli/dev/skill/examples.md,sha256=ZzCyfudBk4lMR-sz8ER9l5vi6hI3HTeUlvQorRFVol4,16405
79
82
  agent_cli/dev/terminals/__init__.py,sha256=yUTNtvs1Do2hvhx56XxyfI-5HA5mjiv0IbJuuaL9TeE,371
80
83
  agent_cli/dev/terminals/apple_terminal.py,sha256=s7GdxXPgbpSLKK1DUwjNpshQpjR5Nt1QbL_cKPefIRI,2595
@@ -88,10 +91,10 @@ agent_cli/dev/terminals/warp.py,sha256=j-Jvz_BbWYC3QfLrvl4CbDh03c9OGRFmuCzjyB2ud
88
91
  agent_cli/dev/terminals/zellij.py,sha256=GnQnopimb9XH67CZGHjnbVWpVSWhaLCATGJizCT5TkY,2321
89
92
  agent_cli/install/__init__.py,sha256=JQPrOrtdNd1Y1NmQDkb3Nmm1qdyn3kPjhQwy9D8ryjI,124
90
93
  agent_cli/install/common.py,sha256=WvnmcjnFTW0d1HZrKVGzj5Tg3q8Txk_ZOdc4a1MBFWI,3121
91
- agent_cli/install/extras.py,sha256=_WJxawBwhQ6zcIkLwaK080nvBDY1WhC7mdI9_b-EzyY,5339
94
+ agent_cli/install/extras.py,sha256=ZknvNHXQDlg4K9Wn1Bs7tYQxx5T5wyQKi_Kea-aB1gU,5161
92
95
  agent_cli/install/hotkeys.py,sha256=bwGoPeEKK6VI-IrKU8Q0RLMW9smkDNU7CdqD3Nbsd-w,1626
93
96
  agent_cli/install/services.py,sha256=2s_7ThxaElKCuomBYTn4Z36TF_o_arNeyJ4f8Wh4jEI,2912
94
- agent_cli/memory/__init__.py,sha256=Q9lomqabThXFx-j_Yu3xKDyKLN4Odck92J6WDP53yUI,610
97
+ agent_cli/memory/__init__.py,sha256=8XNpVzP-qjF8o49A_eXsH_Rbp_FmxTIcknnvxq7vHms,162
95
98
  agent_cli/memory/_files.py,sha256=Za4YeSK5f2NKVZf1zDZXo4Sf-gERaProeSAXlLt8e0c,7598
96
99
  agent_cli/memory/_filters.py,sha256=VzuFyWTGqWKY0JYctfxF1JZFVYfVecW7mLDAM019mzU,2044
97
100
  agent_cli/memory/_git.py,sha256=qWOJkwUrWE6TkVYdUW1vVA6VB5w00w0LKDfqHUwQrBY,4738
@@ -108,7 +111,7 @@ agent_cli/memory/client.py,sha256=XomHhP-hPSoosORkBKSY1dW3gjheFEVqAac0b-tAULo,99
108
111
  agent_cli/memory/engine.py,sha256=rABVC86b5wU1QxY3BM43RhvfDOxoRT7Ddm98BN_qCL4,11656
109
112
  agent_cli/memory/entities.py,sha256=_8wyJz--tNa66CEtSpl2TUN_zeHQvMzm42htnDaOr6g,1219
110
113
  agent_cli/memory/models.py,sha256=KK0wToEf-tXssYVL0hYaJlcADlJ3G2lcSXwo1UmA0VU,2352
111
- agent_cli/rag/__init__.py,sha256=suQDSGBUlt4_KNxz2CyVqrJw58e64T3ltfmmg2F8iQY,543
114
+ agent_cli/rag/__init__.py,sha256=nWNh4_zFTiweNQAiUzNVt1jq7myJxaeB5kXv1063GUM,54
112
115
  agent_cli/rag/_indexer.py,sha256=tzce07xvCbfH2jA0F_sldPRe7VLDXVQ3PGZFRsAJN10,1998
113
116
  agent_cli/rag/_indexing.py,sha256=z2z5BWtQVuviPOjUiu151gJ9MzJxaqRYKrSi4Jj06mA,7605
114
117
  agent_cli/rag/_prompt.py,sha256=d8_jOhZGafMmjO7BlCl4H125bj4m-dNFWDOLz5_OPrw,954
@@ -136,6 +139,7 @@ agent_cli/scripts/setup-macos.sh,sha256=iKWhhONLGDTqYawSDqutnl0mfQomSVPPAsx09-0E
136
139
  agent_cli/scripts/setup-windows.ps1,sha256=NhyxOuwCjjSw24q2QOqggATos_n06DDbfvMQWuAB3tM,2938
137
140
  agent_cli/scripts/start-all-services-windows.ps1,sha256=uOODaPFzniEU7asDgMyf5MEOWcEFsGg_mCLLlDgKoa8,2643
138
141
  agent_cli/scripts/start-all-services.sh,sha256=c6pjXoyoQkeF-cYpldeMMo38XxRMmS43FHG5w3ElLxg,7756
142
+ agent_cli/scripts/sync_extras.py,sha256=VpuhNg7iP3YT3l1jqoSBeWbzDEkeUEGGba7_lGUxBjA,4737
139
143
  agent_cli/scripts/.runtime/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
144
  agent_cli/scripts/linux-hotkeys/README.md,sha256=OW48Xyv096XkUosSJkzED_nnEEncSzhl87FNgEfq8wg,2037
141
145
  agent_cli/scripts/linux-hotkeys/toggle-autocorrect.sh,sha256=sme-dil3EU4nkdRwxSvARr-hBN9UjrU1IFabLCrvwl8,1251
@@ -152,7 +156,7 @@ agent_cli/scripts/nvidia-asr-server/server.py,sha256=kPNQIVF3exblvqMtIVk38Y6sZy2
152
156
  agent_cli/scripts/nvidia-asr-server/shell.nix,sha256=IT20j5YNj_wc7MdXi7ndogGodDNSGwyq8G0bNoZEpmg,1003
153
157
  agent_cli/scripts/nvidia-asr-server/uv.lock,sha256=5WWaqWOuV_moMPC-LIZK-A-Y5oaHr1tUn_vbR-IupzY,728608
154
158
  agent_cli/server/__init__.py,sha256=NZuJHlLHck9KWrepNZHrJONptYCQI9P-uTqknSFI5Ds,71
155
- agent_cli/server/cli.py,sha256=Oi-Ca54YusJijOp7TSl4a_9pOeIOKrgZE3Ex833ehis,22846
159
+ agent_cli/server/cli.py,sha256=ZpsDmf9Z18jk2N1bdJILN2urPXb8iLYzrlHF9sCxmuY,23021
156
160
  agent_cli/server/common.py,sha256=fD2AZdM716TXcz1T4ZDPpPaKynVOEjbVC1LDDloDmDo,6463
157
161
  agent_cli/server/model_manager.py,sha256=93l_eeZeqnPALyDIK24or61tvded9TbM8tnde0okVjY,9225
158
162
  agent_cli/server/model_registry.py,sha256=KrRV1XxbFYuXu5rJlHFh6PTl_2BKiWnWsaNrf-0c6wQ,6988
@@ -179,13 +183,13 @@ agent_cli/server/whisper/backends/base.py,sha256=gQi5EyMCFS464mKXGIKbh1vgtBm99eN
179
183
  agent_cli/server/whisper/backends/faster_whisper.py,sha256=-BogM_-_rhlXKUZuW1qUN8zw2gD0ut1bJozPDP19knA,6717
180
184
  agent_cli/server/whisper/backends/mlx.py,sha256=wSkD9wL3K8PvQToJ5qkTj_HZQJD9Brs_bjNz-X0Sku8,9328
181
185
  agent_cli/services/__init__.py,sha256=8REdXC5eXfhAJJ6j85tgCinbj89PLwv8A50dysA8VUc,10004
182
- agent_cli/services/_wyoming_utils.py,sha256=h6Oq1PmyhHGWQxywrC8a58lQRZDMCITSLOUR9ZFUBgk,1906
183
- agent_cli/services/asr.py,sha256=V6SV-USnMhK-0aE-pneiktU4HpmLqenmMb-jZ-_74zU,16992
186
+ agent_cli/services/_wyoming_utils.py,sha256=pKPa4fOSdqcG3-kNHJOHHsMnZ1yZJZi6XohVwjAwabo,1971
187
+ agent_cli/services/asr.py,sha256=aRaCLVCygsJ15qyQEPECOZsdSrnlLPbyY4RwAqY0qIw,17258
184
188
  agent_cli/services/llm.py,sha256=Kwdo6pbMYI9oykF-RBe1iaL3KsYrNWTLdRSioewmsGQ,7199
185
- agent_cli/services/tts.py,sha256=exKo-55_670mx8dQOzVSZkv6aWYLv04SVmBcjOlD458,14772
186
- agent_cli/services/wake_word.py,sha256=j6Z8rsGq_vAdRevy9fkXIgLZd9UWfrIsefmTreNmM0c,4575
187
- agent_cli-0.66.2.dist-info/METADATA,sha256=1h1lBgxnldp130ukwCNmIY0xC2Jg46dmTs3SKSPkXUE,155374
188
- agent_cli-0.66.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
189
- agent_cli-0.66.2.dist-info/entry_points.txt,sha256=FUv-fB2atLsPUk_RT4zqnZl1coz4_XHFwRALOKOF38s,97
190
- agent_cli-0.66.2.dist-info/licenses/LICENSE,sha256=majJU6S9kC8R8bW39NVBHyv32Dq50FL6TDxECG2WVts,1068
191
- agent_cli-0.66.2.dist-info/RECORD,,
189
+ agent_cli/services/tts.py,sha256=NX5Qnq7ddLI3mwm3nzhbR3zB1Os4Ip4sSVSjDZDTBcI,14855
190
+ agent_cli/services/wake_word.py,sha256=JFJ1SA22H4yko9DXiQ1t7fcoxeALLAe3iBrLs0z8rX4,4664
191
+ agent_cli-0.67.1.dist-info/METADATA,sha256=wPs9-vLbAOlNEt0t87KYdgyLbSWgqIHphbzOA-lN67k,155674
192
+ agent_cli-0.67.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
193
+ agent_cli-0.67.1.dist-info/entry_points.txt,sha256=FUv-fB2atLsPUk_RT4zqnZl1coz4_XHFwRALOKOF38s,97
194
+ agent_cli-0.67.1.dist-info/licenses/LICENSE,sha256=majJU6S9kC8R8bW39NVBHyv32Dq50FL6TDxECG2WVts,1068
195
+ agent_cli-0.67.1.dist-info/RECORD,,