agent-cli 0.64.0__py3-none-any.whl → 0.64.2__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.
- agent_cli/core/deps.py +0 -16
- {agent_cli-0.64.0.dist-info → agent_cli-0.64.2.dist-info}/METADATA +8 -8
- {agent_cli-0.64.0.dist-info → agent_cli-0.64.2.dist-info}/RECORD +6 -6
- {agent_cli-0.64.0.dist-info → agent_cli-0.64.2.dist-info}/WHEEL +0 -0
- {agent_cli-0.64.0.dist-info → agent_cli-0.64.2.dist-info}/entry_points.txt +0 -0
- {agent_cli-0.64.0.dist-info → agent_cli-0.64.2.dist-info}/licenses/LICENSE +0 -0
agent_cli/core/deps.py
CHANGED
|
@@ -2,12 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
import sys
|
|
6
5
|
from importlib.util import find_spec
|
|
7
6
|
|
|
8
|
-
# Dependencies that don't support Python 3.14 yet
|
|
9
|
-
_PYTHON_314_INCOMPATIBLE = {"chromadb", "onnxruntime"}
|
|
10
|
-
|
|
11
7
|
|
|
12
8
|
def ensure_optional_dependencies(
|
|
13
9
|
required: dict[str, str],
|
|
@@ -22,18 +18,6 @@ def ensure_optional_dependencies(
|
|
|
22
18
|
if not missing:
|
|
23
19
|
return
|
|
24
20
|
|
|
25
|
-
# Check if running on Python 3.14+ with incompatible dependencies
|
|
26
|
-
is_py314 = sys.version_info >= (3, 14)
|
|
27
|
-
incompatible = set(missing) & _PYTHON_314_INCOMPATIBLE
|
|
28
|
-
|
|
29
|
-
if is_py314 and incompatible:
|
|
30
|
-
msg = (
|
|
31
|
-
f"The '{extra_name}' feature requires {', '.join(sorted(incompatible))}, "
|
|
32
|
-
f"which {'does' if len(incompatible) == 1 else 'do'} not support Python 3.14 yet. "
|
|
33
|
-
f"Please use Python 3.13 or earlier for this feature."
|
|
34
|
-
)
|
|
35
|
-
raise ImportError(msg)
|
|
36
|
-
|
|
37
21
|
hint = install_hint or f"`pip install agent-cli[{extra_name}]`"
|
|
38
22
|
msg = f"Missing required dependencies for {extra_name}: {', '.join(missing)}. Please install with {hint}."
|
|
39
23
|
raise ImportError(msg)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-cli
|
|
3
|
-
Version: 0.64.
|
|
3
|
+
Version: 0.64.2
|
|
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
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: <3.14,>=3.11
|
|
9
9
|
Requires-Dist: dotenv
|
|
10
10
|
Requires-Dist: google-genai>=1.25.0
|
|
11
11
|
Requires-Dist: httpx
|
|
@@ -33,19 +33,19 @@ Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
|
|
33
33
|
Requires-Dist: ruff; extra == 'dev'
|
|
34
34
|
Requires-Dist: versioningit; extra == 'dev'
|
|
35
35
|
Provides-Extra: memory
|
|
36
|
-
Requires-Dist: chromadb>=0.4.22;
|
|
36
|
+
Requires-Dist: chromadb>=0.4.22; extra == 'memory'
|
|
37
37
|
Requires-Dist: fastapi[standard]; extra == 'memory'
|
|
38
38
|
Requires-Dist: huggingface-hub>=0.20.0; extra == 'memory'
|
|
39
|
-
Requires-Dist: onnxruntime>=1.17.0;
|
|
39
|
+
Requires-Dist: onnxruntime>=1.17.0; extra == 'memory'
|
|
40
40
|
Requires-Dist: pyyaml>=6.0.0; extra == 'memory'
|
|
41
41
|
Requires-Dist: transformers>=4.30.0; extra == 'memory'
|
|
42
42
|
Requires-Dist: watchfiles>=0.21.0; extra == 'memory'
|
|
43
43
|
Provides-Extra: rag
|
|
44
|
-
Requires-Dist: chromadb>=0.4.22;
|
|
44
|
+
Requires-Dist: chromadb>=0.4.22; extra == 'rag'
|
|
45
45
|
Requires-Dist: fastapi[standard]; extra == 'rag'
|
|
46
46
|
Requires-Dist: huggingface-hub>=0.20.0; extra == 'rag'
|
|
47
|
-
Requires-Dist: markitdown[docx,pdf,pptx]>=0.1.3;
|
|
48
|
-
Requires-Dist: onnxruntime>=1.17.0;
|
|
47
|
+
Requires-Dist: markitdown[docx,pdf,pptx]>=0.1.3; extra == 'rag'
|
|
48
|
+
Requires-Dist: onnxruntime>=1.17.0; extra == 'rag'
|
|
49
49
|
Requires-Dist: transformers>=4.30.0; extra == 'rag'
|
|
50
50
|
Requires-Dist: watchfiles>=0.21.0; extra == 'rag'
|
|
51
51
|
Provides-Extra: server
|
|
@@ -69,7 +69,7 @@ Requires-Dist: kokoro>=0.9.0; extra == 'tts-kokoro'
|
|
|
69
69
|
Requires-Dist: pip; extra == 'tts-kokoro'
|
|
70
70
|
Requires-Dist: soundfile>=0.12.0; extra == 'tts-kokoro'
|
|
71
71
|
Provides-Extra: vad
|
|
72
|
-
Requires-Dist: silero-vad>=5.1;
|
|
72
|
+
Requires-Dist: silero-vad>=5.1; extra == 'vad'
|
|
73
73
|
Provides-Extra: whisper
|
|
74
74
|
Requires-Dist: fastapi[standard]; extra == 'whisper'
|
|
75
75
|
Requires-Dist: faster-whisper>=1.0.0; extra == 'whisper'
|
|
@@ -27,7 +27,7 @@ agent_cli/core/__init__.py,sha256=c_knH7u9QgjsfMIil9NP4bVizHawLUMYoQWU4H9vMlQ,46
|
|
|
27
27
|
agent_cli/core/audio.py,sha256=43FpYe2Wu_BYK9xJ_55V4xHjHJeFwQ5aM-CQzlTryt8,15168
|
|
28
28
|
agent_cli/core/audio_format.py,sha256=zk3qlYMAlKYPz1enrjihQQspl_C218v1Rbcm7Uktlew,8773
|
|
29
29
|
agent_cli/core/chroma.py,sha256=Vb_ny7SzAIL9SCEGlYgYOqsdG9BgusFGMj0RUzb6W90,2728
|
|
30
|
-
agent_cli/core/deps.py,sha256=
|
|
30
|
+
agent_cli/core/deps.py,sha256=Btky1mknzhQ9nFjkIWW_dWBL8jxfhfg4WwDMrp7xzIc,704
|
|
31
31
|
agent_cli/core/openai_proxy.py,sha256=f2kqxk6bAOeN7gOzU0JnyS-RYtXUcK5Gbsa_pBmlCv0,4470
|
|
32
32
|
agent_cli/core/process.py,sha256=Zay6beX4JUbkBHr6xbJxwVBjVFDABmRHQCXVPQH93r8,5916
|
|
33
33
|
agent_cli/core/reranker.py,sha256=Qv5ASGUdseLzI6eQRfNeQY-Lvv4SOgLOu56CpwmszDM,3779
|
|
@@ -173,8 +173,8 @@ agent_cli/services/asr.py,sha256=V6SV-USnMhK-0aE-pneiktU4HpmLqenmMb-jZ-_74zU,169
|
|
|
173
173
|
agent_cli/services/llm.py,sha256=Kwdo6pbMYI9oykF-RBe1iaL3KsYrNWTLdRSioewmsGQ,7199
|
|
174
174
|
agent_cli/services/tts.py,sha256=exKo-55_670mx8dQOzVSZkv6aWYLv04SVmBcjOlD458,14772
|
|
175
175
|
agent_cli/services/wake_word.py,sha256=j6Z8rsGq_vAdRevy9fkXIgLZd9UWfrIsefmTreNmM0c,4575
|
|
176
|
-
agent_cli-0.64.
|
|
177
|
-
agent_cli-0.64.
|
|
178
|
-
agent_cli-0.64.
|
|
179
|
-
agent_cli-0.64.
|
|
180
|
-
agent_cli-0.64.
|
|
176
|
+
agent_cli-0.64.2.dist-info/METADATA,sha256=Hf66h8hIhQdYCyYB19ueP0onG_9mJqlTTXZsEgWNRB4,151735
|
|
177
|
+
agent_cli-0.64.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
178
|
+
agent_cli-0.64.2.dist-info/entry_points.txt,sha256=FUv-fB2atLsPUk_RT4zqnZl1coz4_XHFwRALOKOF38s,97
|
|
179
|
+
agent_cli-0.64.2.dist-info/licenses/LICENSE,sha256=majJU6S9kC8R8bW39NVBHyv32Dq50FL6TDxECG2WVts,1068
|
|
180
|
+
agent_cli-0.64.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|