agent-cli 0.70.5__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/__init__.py +5 -0
- agent_cli/__main__.py +6 -0
- agent_cli/_extras.json +14 -0
- agent_cli/_requirements/.gitkeep +0 -0
- agent_cli/_requirements/audio.txt +79 -0
- agent_cli/_requirements/faster-whisper.txt +215 -0
- agent_cli/_requirements/kokoro.txt +425 -0
- agent_cli/_requirements/llm.txt +183 -0
- agent_cli/_requirements/memory.txt +355 -0
- agent_cli/_requirements/mlx-whisper.txt +222 -0
- agent_cli/_requirements/piper.txt +176 -0
- agent_cli/_requirements/rag.txt +402 -0
- agent_cli/_requirements/server.txt +154 -0
- agent_cli/_requirements/speed.txt +77 -0
- agent_cli/_requirements/vad.txt +155 -0
- agent_cli/_requirements/wyoming.txt +71 -0
- agent_cli/_tools.py +368 -0
- agent_cli/agents/__init__.py +23 -0
- agent_cli/agents/_voice_agent_common.py +136 -0
- agent_cli/agents/assistant.py +383 -0
- agent_cli/agents/autocorrect.py +284 -0
- agent_cli/agents/chat.py +496 -0
- agent_cli/agents/memory/__init__.py +31 -0
- agent_cli/agents/memory/add.py +190 -0
- agent_cli/agents/memory/proxy.py +160 -0
- agent_cli/agents/rag_proxy.py +128 -0
- agent_cli/agents/speak.py +209 -0
- agent_cli/agents/transcribe.py +671 -0
- agent_cli/agents/transcribe_daemon.py +499 -0
- agent_cli/agents/voice_edit.py +291 -0
- agent_cli/api.py +22 -0
- agent_cli/cli.py +106 -0
- agent_cli/config.py +503 -0
- agent_cli/config_cmd.py +307 -0
- agent_cli/constants.py +27 -0
- agent_cli/core/__init__.py +1 -0
- agent_cli/core/audio.py +461 -0
- agent_cli/core/audio_format.py +299 -0
- agent_cli/core/chroma.py +88 -0
- agent_cli/core/deps.py +191 -0
- agent_cli/core/openai_proxy.py +139 -0
- agent_cli/core/process.py +195 -0
- agent_cli/core/reranker.py +120 -0
- agent_cli/core/sse.py +87 -0
- agent_cli/core/transcription_logger.py +70 -0
- agent_cli/core/utils.py +526 -0
- agent_cli/core/vad.py +175 -0
- agent_cli/core/watch.py +65 -0
- agent_cli/dev/__init__.py +14 -0
- agent_cli/dev/cli.py +1588 -0
- agent_cli/dev/coding_agents/__init__.py +19 -0
- agent_cli/dev/coding_agents/aider.py +24 -0
- agent_cli/dev/coding_agents/base.py +167 -0
- agent_cli/dev/coding_agents/claude.py +39 -0
- agent_cli/dev/coding_agents/codex.py +24 -0
- agent_cli/dev/coding_agents/continue_dev.py +15 -0
- agent_cli/dev/coding_agents/copilot.py +24 -0
- agent_cli/dev/coding_agents/cursor_agent.py +48 -0
- agent_cli/dev/coding_agents/gemini.py +28 -0
- agent_cli/dev/coding_agents/opencode.py +15 -0
- agent_cli/dev/coding_agents/registry.py +49 -0
- agent_cli/dev/editors/__init__.py +19 -0
- agent_cli/dev/editors/base.py +89 -0
- agent_cli/dev/editors/cursor.py +15 -0
- agent_cli/dev/editors/emacs.py +46 -0
- agent_cli/dev/editors/jetbrains.py +56 -0
- agent_cli/dev/editors/nano.py +31 -0
- agent_cli/dev/editors/neovim.py +33 -0
- agent_cli/dev/editors/registry.py +59 -0
- agent_cli/dev/editors/sublime.py +20 -0
- agent_cli/dev/editors/vim.py +42 -0
- agent_cli/dev/editors/vscode.py +15 -0
- agent_cli/dev/editors/zed.py +20 -0
- agent_cli/dev/project.py +568 -0
- agent_cli/dev/registry.py +52 -0
- agent_cli/dev/skill/SKILL.md +141 -0
- agent_cli/dev/skill/examples.md +571 -0
- agent_cli/dev/terminals/__init__.py +19 -0
- agent_cli/dev/terminals/apple_terminal.py +82 -0
- agent_cli/dev/terminals/base.py +56 -0
- agent_cli/dev/terminals/gnome.py +51 -0
- agent_cli/dev/terminals/iterm2.py +84 -0
- agent_cli/dev/terminals/kitty.py +77 -0
- agent_cli/dev/terminals/registry.py +48 -0
- agent_cli/dev/terminals/tmux.py +58 -0
- agent_cli/dev/terminals/warp.py +132 -0
- agent_cli/dev/terminals/zellij.py +78 -0
- agent_cli/dev/worktree.py +856 -0
- agent_cli/docs_gen.py +417 -0
- agent_cli/example-config.toml +185 -0
- agent_cli/install/__init__.py +5 -0
- agent_cli/install/common.py +89 -0
- agent_cli/install/extras.py +174 -0
- agent_cli/install/hotkeys.py +48 -0
- agent_cli/install/services.py +87 -0
- agent_cli/memory/__init__.py +7 -0
- agent_cli/memory/_files.py +250 -0
- agent_cli/memory/_filters.py +63 -0
- agent_cli/memory/_git.py +157 -0
- agent_cli/memory/_indexer.py +142 -0
- agent_cli/memory/_ingest.py +408 -0
- agent_cli/memory/_persistence.py +182 -0
- agent_cli/memory/_prompt.py +91 -0
- agent_cli/memory/_retrieval.py +294 -0
- agent_cli/memory/_store.py +169 -0
- agent_cli/memory/_streaming.py +44 -0
- agent_cli/memory/_tasks.py +48 -0
- agent_cli/memory/api.py +113 -0
- agent_cli/memory/client.py +272 -0
- agent_cli/memory/engine.py +361 -0
- agent_cli/memory/entities.py +43 -0
- agent_cli/memory/models.py +112 -0
- agent_cli/opts.py +433 -0
- agent_cli/py.typed +0 -0
- agent_cli/rag/__init__.py +3 -0
- agent_cli/rag/_indexer.py +67 -0
- agent_cli/rag/_indexing.py +226 -0
- agent_cli/rag/_prompt.py +30 -0
- agent_cli/rag/_retriever.py +156 -0
- agent_cli/rag/_store.py +48 -0
- agent_cli/rag/_utils.py +218 -0
- agent_cli/rag/api.py +175 -0
- agent_cli/rag/client.py +299 -0
- agent_cli/rag/engine.py +302 -0
- agent_cli/rag/models.py +55 -0
- agent_cli/scripts/.runtime/.gitkeep +0 -0
- agent_cli/scripts/__init__.py +1 -0
- agent_cli/scripts/check_plugin_skill_sync.py +50 -0
- agent_cli/scripts/linux-hotkeys/README.md +63 -0
- agent_cli/scripts/linux-hotkeys/toggle-autocorrect.sh +45 -0
- agent_cli/scripts/linux-hotkeys/toggle-transcription.sh +58 -0
- agent_cli/scripts/linux-hotkeys/toggle-voice-edit.sh +58 -0
- agent_cli/scripts/macos-hotkeys/README.md +45 -0
- agent_cli/scripts/macos-hotkeys/skhd-config-example +5 -0
- agent_cli/scripts/macos-hotkeys/toggle-autocorrect.sh +12 -0
- agent_cli/scripts/macos-hotkeys/toggle-transcription.sh +37 -0
- agent_cli/scripts/macos-hotkeys/toggle-voice-edit.sh +37 -0
- agent_cli/scripts/nvidia-asr-server/README.md +99 -0
- agent_cli/scripts/nvidia-asr-server/pyproject.toml +27 -0
- agent_cli/scripts/nvidia-asr-server/server.py +255 -0
- agent_cli/scripts/nvidia-asr-server/shell.nix +32 -0
- agent_cli/scripts/nvidia-asr-server/uv.lock +4654 -0
- agent_cli/scripts/run-openwakeword.sh +11 -0
- agent_cli/scripts/run-piper-windows.ps1 +30 -0
- agent_cli/scripts/run-piper.sh +24 -0
- agent_cli/scripts/run-whisper-linux.sh +40 -0
- agent_cli/scripts/run-whisper-macos.sh +6 -0
- agent_cli/scripts/run-whisper-windows.ps1 +51 -0
- agent_cli/scripts/run-whisper.sh +9 -0
- agent_cli/scripts/run_faster_whisper_server.py +136 -0
- agent_cli/scripts/setup-linux-hotkeys.sh +72 -0
- agent_cli/scripts/setup-linux.sh +108 -0
- agent_cli/scripts/setup-macos-hotkeys.sh +61 -0
- agent_cli/scripts/setup-macos.sh +76 -0
- agent_cli/scripts/setup-windows.ps1 +63 -0
- agent_cli/scripts/start-all-services-windows.ps1 +53 -0
- agent_cli/scripts/start-all-services.sh +178 -0
- agent_cli/scripts/sync_extras.py +138 -0
- agent_cli/server/__init__.py +3 -0
- agent_cli/server/cli.py +721 -0
- agent_cli/server/common.py +222 -0
- agent_cli/server/model_manager.py +288 -0
- agent_cli/server/model_registry.py +225 -0
- agent_cli/server/proxy/__init__.py +3 -0
- agent_cli/server/proxy/api.py +444 -0
- agent_cli/server/streaming.py +67 -0
- agent_cli/server/tts/__init__.py +3 -0
- agent_cli/server/tts/api.py +335 -0
- agent_cli/server/tts/backends/__init__.py +82 -0
- agent_cli/server/tts/backends/base.py +139 -0
- agent_cli/server/tts/backends/kokoro.py +403 -0
- agent_cli/server/tts/backends/piper.py +253 -0
- agent_cli/server/tts/model_manager.py +201 -0
- agent_cli/server/tts/model_registry.py +28 -0
- agent_cli/server/tts/wyoming_handler.py +249 -0
- agent_cli/server/whisper/__init__.py +3 -0
- agent_cli/server/whisper/api.py +413 -0
- agent_cli/server/whisper/backends/__init__.py +89 -0
- agent_cli/server/whisper/backends/base.py +97 -0
- agent_cli/server/whisper/backends/faster_whisper.py +225 -0
- agent_cli/server/whisper/backends/mlx.py +270 -0
- agent_cli/server/whisper/languages.py +116 -0
- agent_cli/server/whisper/model_manager.py +157 -0
- agent_cli/server/whisper/model_registry.py +28 -0
- agent_cli/server/whisper/wyoming_handler.py +203 -0
- agent_cli/services/__init__.py +343 -0
- agent_cli/services/_wyoming_utils.py +64 -0
- agent_cli/services/asr.py +506 -0
- agent_cli/services/llm.py +228 -0
- agent_cli/services/tts.py +450 -0
- agent_cli/services/wake_word.py +142 -0
- agent_cli-0.70.5.dist-info/METADATA +2118 -0
- agent_cli-0.70.5.dist-info/RECORD +196 -0
- agent_cli-0.70.5.dist-info/WHEEL +4 -0
- agent_cli-0.70.5.dist-info/entry_points.txt +4 -0
- agent_cli-0.70.5.dist-info/licenses/LICENSE +21 -0
agent_cli/__init__.py
ADDED
agent_cli/__main__.py
ADDED
agent_cli/_extras.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"wyoming": ["Wyoming protocol for ASR/TTS servers", ["wyoming"]],
|
|
3
|
+
"audio": ["Local audio recording/playback", ["numpy", "sounddevice", "wyoming"]],
|
|
4
|
+
"llm": ["LLM framework (pydantic-ai)", ["pydantic_ai"]],
|
|
5
|
+
"memory": ["Long-term memory proxy", ["chromadb", "yaml"]],
|
|
6
|
+
"rag": ["RAG proxy (ChromaDB, embeddings)", ["chromadb"]],
|
|
7
|
+
"server": ["FastAPI server components", ["fastapi"]],
|
|
8
|
+
"speed": ["Audio speed adjustment (audiostretchy)", ["audiostretchy"]],
|
|
9
|
+
"piper": ["Local Piper TTS", ["piper"]],
|
|
10
|
+
"kokoro": ["Kokoro neural TTS", ["kokoro"]],
|
|
11
|
+
"vad": ["Voice Activity Detection (silero-vad)", ["silero_vad"]],
|
|
12
|
+
"faster-whisper": ["Whisper ASR (CUDA/CPU)", ["faster_whisper"]],
|
|
13
|
+
"mlx-whisper": ["Whisper ASR (Apple Silicon)", ["mlx_whisper"]]
|
|
14
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# This file was autogenerated by uv via the following command:
|
|
2
|
+
# uv export --extra audio --no-dev --no-emit-project --no-hashes
|
|
3
|
+
annotated-types==0.7.0
|
|
4
|
+
# via pydantic
|
|
5
|
+
anyio==4.12.1
|
|
6
|
+
# via httpx
|
|
7
|
+
certifi==2026.1.4
|
|
8
|
+
# via
|
|
9
|
+
# httpcore
|
|
10
|
+
# httpx
|
|
11
|
+
cffi==2.0.0
|
|
12
|
+
# via sounddevice
|
|
13
|
+
click==8.3.1
|
|
14
|
+
# via
|
|
15
|
+
# typer
|
|
16
|
+
# typer-slim
|
|
17
|
+
colorama==0.4.6 ; sys_platform == 'win32'
|
|
18
|
+
# via click
|
|
19
|
+
dotenv==0.9.9
|
|
20
|
+
# via agent-cli
|
|
21
|
+
h11==0.16.0
|
|
22
|
+
# via httpcore
|
|
23
|
+
httpcore==1.0.9
|
|
24
|
+
# via httpx
|
|
25
|
+
httpx==0.28.1
|
|
26
|
+
# via agent-cli
|
|
27
|
+
idna==3.11
|
|
28
|
+
# via
|
|
29
|
+
# anyio
|
|
30
|
+
# httpx
|
|
31
|
+
markdown-it-py==4.0.0
|
|
32
|
+
# via rich
|
|
33
|
+
mdurl==0.1.2
|
|
34
|
+
# via markdown-it-py
|
|
35
|
+
numpy==2.3.5
|
|
36
|
+
# via agent-cli
|
|
37
|
+
psutil==7.2.1 ; sys_platform == 'win32'
|
|
38
|
+
# via agent-cli
|
|
39
|
+
pycparser==2.23 ; implementation_name != 'PyPy'
|
|
40
|
+
# via cffi
|
|
41
|
+
pydantic==2.12.5
|
|
42
|
+
# via agent-cli
|
|
43
|
+
pydantic-core==2.41.5
|
|
44
|
+
# via pydantic
|
|
45
|
+
pygments==2.19.2
|
|
46
|
+
# via rich
|
|
47
|
+
pyperclip==1.11.0
|
|
48
|
+
# via agent-cli
|
|
49
|
+
python-dotenv==1.2.1
|
|
50
|
+
# via dotenv
|
|
51
|
+
rich==14.2.0
|
|
52
|
+
# via
|
|
53
|
+
# agent-cli
|
|
54
|
+
# typer
|
|
55
|
+
# typer-slim
|
|
56
|
+
setproctitle==1.3.7
|
|
57
|
+
# via agent-cli
|
|
58
|
+
shellingham==1.5.4
|
|
59
|
+
# via
|
|
60
|
+
# typer
|
|
61
|
+
# typer-slim
|
|
62
|
+
sounddevice==0.5.3
|
|
63
|
+
# via agent-cli
|
|
64
|
+
typer==0.21.1
|
|
65
|
+
# via agent-cli
|
|
66
|
+
typer-slim==0.21.1
|
|
67
|
+
# via agent-cli
|
|
68
|
+
typing-extensions==4.15.0
|
|
69
|
+
# via
|
|
70
|
+
# anyio
|
|
71
|
+
# pydantic
|
|
72
|
+
# pydantic-core
|
|
73
|
+
# typer
|
|
74
|
+
# typer-slim
|
|
75
|
+
# typing-inspection
|
|
76
|
+
typing-inspection==0.4.2
|
|
77
|
+
# via pydantic
|
|
78
|
+
wyoming==1.8.0
|
|
79
|
+
# via agent-cli
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
# This file was autogenerated by uv via the following command:
|
|
2
|
+
# uv export --extra faster-whisper --no-dev --no-emit-project --no-hashes
|
|
3
|
+
annotated-doc==0.0.4
|
|
4
|
+
# via fastapi
|
|
5
|
+
annotated-types==0.7.0
|
|
6
|
+
# via pydantic
|
|
7
|
+
anyio==4.12.1
|
|
8
|
+
# via
|
|
9
|
+
# httpx
|
|
10
|
+
# starlette
|
|
11
|
+
# watchfiles
|
|
12
|
+
av==16.1.0
|
|
13
|
+
# via faster-whisper
|
|
14
|
+
certifi==2026.1.4
|
|
15
|
+
# via
|
|
16
|
+
# httpcore
|
|
17
|
+
# httpx
|
|
18
|
+
# requests
|
|
19
|
+
# sentry-sdk
|
|
20
|
+
charset-normalizer==3.4.4
|
|
21
|
+
# via requests
|
|
22
|
+
click==8.3.1
|
|
23
|
+
# via
|
|
24
|
+
# rich-toolkit
|
|
25
|
+
# typer
|
|
26
|
+
# typer-slim
|
|
27
|
+
# uvicorn
|
|
28
|
+
colorama==0.4.6 ; sys_platform == 'win32'
|
|
29
|
+
# via
|
|
30
|
+
# click
|
|
31
|
+
# tqdm
|
|
32
|
+
# uvicorn
|
|
33
|
+
coloredlogs==15.0.1
|
|
34
|
+
# via onnxruntime
|
|
35
|
+
ctranslate2==4.6.3
|
|
36
|
+
# via faster-whisper
|
|
37
|
+
dnspython==2.8.0
|
|
38
|
+
# via email-validator
|
|
39
|
+
dotenv==0.9.9
|
|
40
|
+
# via agent-cli
|
|
41
|
+
email-validator==2.3.0
|
|
42
|
+
# via
|
|
43
|
+
# fastapi
|
|
44
|
+
# pydantic
|
|
45
|
+
fastapi==0.128.0
|
|
46
|
+
# via agent-cli
|
|
47
|
+
fastapi-cli==0.0.20
|
|
48
|
+
# via fastapi
|
|
49
|
+
fastapi-cloud-cli==0.10.1
|
|
50
|
+
# via fastapi-cli
|
|
51
|
+
fastar==0.8.0
|
|
52
|
+
# via fastapi-cloud-cli
|
|
53
|
+
faster-whisper==1.2.1
|
|
54
|
+
# via agent-cli
|
|
55
|
+
filelock==3.20.3
|
|
56
|
+
# via huggingface-hub
|
|
57
|
+
flatbuffers==25.12.19
|
|
58
|
+
# via onnxruntime
|
|
59
|
+
fsspec==2026.1.0
|
|
60
|
+
# via huggingface-hub
|
|
61
|
+
h11==0.16.0
|
|
62
|
+
# via
|
|
63
|
+
# httpcore
|
|
64
|
+
# uvicorn
|
|
65
|
+
hf-xet==1.2.0 ; platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'
|
|
66
|
+
# via huggingface-hub
|
|
67
|
+
httpcore==1.0.9
|
|
68
|
+
# via httpx
|
|
69
|
+
httptools==0.7.1
|
|
70
|
+
# via uvicorn
|
|
71
|
+
httpx==0.28.1
|
|
72
|
+
# via
|
|
73
|
+
# agent-cli
|
|
74
|
+
# fastapi
|
|
75
|
+
# fastapi-cloud-cli
|
|
76
|
+
huggingface-hub==0.36.0
|
|
77
|
+
# via
|
|
78
|
+
# faster-whisper
|
|
79
|
+
# tokenizers
|
|
80
|
+
humanfriendly==10.0
|
|
81
|
+
# via coloredlogs
|
|
82
|
+
idna==3.11
|
|
83
|
+
# via
|
|
84
|
+
# anyio
|
|
85
|
+
# email-validator
|
|
86
|
+
# httpx
|
|
87
|
+
# requests
|
|
88
|
+
jinja2==3.1.6
|
|
89
|
+
# via fastapi
|
|
90
|
+
markdown-it-py==4.0.0
|
|
91
|
+
# via rich
|
|
92
|
+
markupsafe==3.0.3
|
|
93
|
+
# via jinja2
|
|
94
|
+
mdurl==0.1.2
|
|
95
|
+
# via markdown-it-py
|
|
96
|
+
mpmath==1.3.0
|
|
97
|
+
# via sympy
|
|
98
|
+
numpy==2.3.5
|
|
99
|
+
# via
|
|
100
|
+
# ctranslate2
|
|
101
|
+
# onnxruntime
|
|
102
|
+
onnxruntime==1.20.1
|
|
103
|
+
# via faster-whisper
|
|
104
|
+
packaging==25.0
|
|
105
|
+
# via
|
|
106
|
+
# huggingface-hub
|
|
107
|
+
# onnxruntime
|
|
108
|
+
protobuf==6.33.4
|
|
109
|
+
# via onnxruntime
|
|
110
|
+
psutil==7.2.1 ; sys_platform == 'win32'
|
|
111
|
+
# via agent-cli
|
|
112
|
+
pydantic==2.12.5
|
|
113
|
+
# via
|
|
114
|
+
# agent-cli
|
|
115
|
+
# fastapi
|
|
116
|
+
# fastapi-cloud-cli
|
|
117
|
+
# pydantic-extra-types
|
|
118
|
+
# pydantic-settings
|
|
119
|
+
pydantic-core==2.41.5
|
|
120
|
+
# via pydantic
|
|
121
|
+
pydantic-extra-types==2.11.0
|
|
122
|
+
# via fastapi
|
|
123
|
+
pydantic-settings==2.12.0
|
|
124
|
+
# via fastapi
|
|
125
|
+
pygments==2.19.2
|
|
126
|
+
# via rich
|
|
127
|
+
pyperclip==1.11.0
|
|
128
|
+
# via agent-cli
|
|
129
|
+
pyreadline3==3.5.4 ; sys_platform == 'win32'
|
|
130
|
+
# via humanfriendly
|
|
131
|
+
python-dotenv==1.2.1
|
|
132
|
+
# via
|
|
133
|
+
# dotenv
|
|
134
|
+
# pydantic-settings
|
|
135
|
+
# uvicorn
|
|
136
|
+
python-multipart==0.0.21
|
|
137
|
+
# via fastapi
|
|
138
|
+
pyyaml==6.0.3
|
|
139
|
+
# via
|
|
140
|
+
# ctranslate2
|
|
141
|
+
# huggingface-hub
|
|
142
|
+
# uvicorn
|
|
143
|
+
requests==2.32.5
|
|
144
|
+
# via huggingface-hub
|
|
145
|
+
rich==14.2.0
|
|
146
|
+
# via
|
|
147
|
+
# agent-cli
|
|
148
|
+
# rich-toolkit
|
|
149
|
+
# typer
|
|
150
|
+
# typer-slim
|
|
151
|
+
rich-toolkit==0.17.1
|
|
152
|
+
# via
|
|
153
|
+
# fastapi-cli
|
|
154
|
+
# fastapi-cloud-cli
|
|
155
|
+
rignore==0.7.6
|
|
156
|
+
# via fastapi-cloud-cli
|
|
157
|
+
sentry-sdk==2.49.0
|
|
158
|
+
# via fastapi-cloud-cli
|
|
159
|
+
setproctitle==1.3.7
|
|
160
|
+
# via agent-cli
|
|
161
|
+
setuptools==80.9.0
|
|
162
|
+
# via ctranslate2
|
|
163
|
+
shellingham==1.5.4
|
|
164
|
+
# via
|
|
165
|
+
# typer
|
|
166
|
+
# typer-slim
|
|
167
|
+
starlette==0.50.0
|
|
168
|
+
# via fastapi
|
|
169
|
+
sympy==1.14.0
|
|
170
|
+
# via onnxruntime
|
|
171
|
+
tokenizers==0.22.2
|
|
172
|
+
# via faster-whisper
|
|
173
|
+
tqdm==4.67.1
|
|
174
|
+
# via
|
|
175
|
+
# faster-whisper
|
|
176
|
+
# huggingface-hub
|
|
177
|
+
typer==0.21.1
|
|
178
|
+
# via
|
|
179
|
+
# agent-cli
|
|
180
|
+
# fastapi-cli
|
|
181
|
+
# fastapi-cloud-cli
|
|
182
|
+
typer-slim==0.21.1
|
|
183
|
+
# via agent-cli
|
|
184
|
+
typing-extensions==4.15.0
|
|
185
|
+
# via
|
|
186
|
+
# anyio
|
|
187
|
+
# fastapi
|
|
188
|
+
# huggingface-hub
|
|
189
|
+
# pydantic
|
|
190
|
+
# pydantic-core
|
|
191
|
+
# pydantic-extra-types
|
|
192
|
+
# rich-toolkit
|
|
193
|
+
# starlette
|
|
194
|
+
# typer
|
|
195
|
+
# typer-slim
|
|
196
|
+
# typing-inspection
|
|
197
|
+
typing-inspection==0.4.2
|
|
198
|
+
# via
|
|
199
|
+
# pydantic
|
|
200
|
+
# pydantic-settings
|
|
201
|
+
urllib3==2.3.0
|
|
202
|
+
# via
|
|
203
|
+
# requests
|
|
204
|
+
# sentry-sdk
|
|
205
|
+
uvicorn==0.40.0
|
|
206
|
+
# via
|
|
207
|
+
# fastapi
|
|
208
|
+
# fastapi-cli
|
|
209
|
+
# fastapi-cloud-cli
|
|
210
|
+
uvloop==0.22.1 ; platform_python_implementation != 'PyPy' and sys_platform != 'cygwin' and sys_platform != 'win32'
|
|
211
|
+
# via uvicorn
|
|
212
|
+
watchfiles==1.1.1
|
|
213
|
+
# via uvicorn
|
|
214
|
+
websockets==15.0.1
|
|
215
|
+
# via uvicorn
|