agent-cli 0.96.10__tar.gz → 0.97.0__tar.gz

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 (445) hide show
  1. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/pytest.yml +4 -0
  2. {agent_cli-0.96.10 → agent_cli-0.97.0}/PKG-INFO +7 -3
  3. {agent_cli-0.96.10 → agent_cli-0.97.0}/README.md +3 -2
  4. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_extras.json +6 -0
  5. agent_cli-0.97.0/agent_cli/_overrides/nemo-whisper.txt +9 -0
  6. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/audio.txt +3 -1
  7. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/diarization.txt +118 -28
  8. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/faster-whisper.txt +25 -7
  9. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/kokoro.txt +29 -7
  10. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/memory.txt +42 -13
  11. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/mlx-whisper.txt +20 -7
  12. agent_cli-0.97.0/agent_cli/_requirements/nemo-whisper.txt +892 -0
  13. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/piper.txt +7 -3
  14. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/rag.txt +43 -13
  15. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/speed.txt +3 -1
  16. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/vad.txt +7 -3
  17. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/vectordb.txt +42 -13
  18. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/whisper-transformers.txt +26 -7
  19. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/audio_format.py +56 -0
  20. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/deps.py +131 -1
  21. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/daemon/cli.py +43 -5
  22. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/docs_gen.py +6 -5
  23. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/extras.py +3 -2
  24. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/launchd.py +12 -3
  25. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/service_config.py +3 -1
  26. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/systemd.py +43 -3
  27. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/cli.py +95 -21
  28. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/model_manager.py +6 -2
  29. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/api.py +6 -0
  30. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/__init__.py +6 -1
  31. agent_cli-0.97.0/agent_cli/server/whisper/backends/nemo.py +411 -0
  32. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/daemon.md +11 -0
  33. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/diarize-live-session.md +1 -1
  34. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/install-extras.md +1 -0
  35. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/server/tts.md +2 -2
  36. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/server/whisper.md +21 -5
  37. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/speakers.md +1 -1
  38. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/appcast.xml +24 -17
  39. {agent_cli-0.96.10 → agent_cli-0.97.0}/pyproject.toml +11 -0
  40. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/core/test_audio_format.py +22 -0
  41. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_api_integration.py +154 -0
  42. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_daemon.py +151 -2
  43. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_docs_gen.py +17 -0
  44. agent_cli-0.97.0/tests/test_nemo_backend.py +446 -0
  45. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_requires_extras.py +108 -0
  46. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_server_whisper.py +116 -1
  47. {agent_cli-0.96.10 → agent_cli-0.97.0}/uv.lock +2954 -182
  48. {agent_cli-0.96.10 → agent_cli-0.97.0}/.claude/skills/agent-cli-dev/SKILL.md +0 -0
  49. {agent_cli-0.96.10 → agent_cli-0.97.0}/.claude/skills/agent-cli-dev/examples.md +0 -0
  50. {agent_cli-0.96.10 → agent_cli-0.97.0}/.claude-plugin/README.md +0 -0
  51. {agent_cli-0.96.10 → agent_cli-0.97.0}/.claude-plugin/marketplace.json +0 -0
  52. {agent_cli-0.96.10 → agent_cli-0.97.0}/.claude-plugin/plugin.json +0 -0
  53. {agent_cli-0.96.10 → agent_cli-0.97.0}/.claude-plugin/skills/agent-cli-dev/SKILL.md +0 -0
  54. {agent_cli-0.96.10 → agent_cli-0.97.0}/.claude-plugin/skills/agent-cli-dev/examples.md +0 -0
  55. {agent_cli-0.96.10 → agent_cli-0.97.0}/.cursorrules +0 -0
  56. {agent_cli-0.96.10 → agent_cli-0.97.0}/.dockerignore +0 -0
  57. {agent_cli-0.96.10 → agent_cli-0.97.0}/.env.example +0 -0
  58. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/logo.svg +0 -0
  59. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/release-drafter.yml +0 -0
  60. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/renovate.json +0 -0
  61. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/scripts/check_extras_sync.py +0 -0
  62. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/scripts/check_plugin_skill_sync.py +0 -0
  63. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/scripts/normalize_appcast.py +0 -0
  64. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/scripts/sync_extras.py +0 -0
  65. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/scripts/sync_requirements.py +0 -0
  66. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/automerge.yml +0 -0
  67. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/docker.yml +0 -0
  68. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/docs.yml +0 -0
  69. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/markdown-code-runner.yml +0 -0
  70. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/release-drafter.yml +0 -0
  71. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/release.yml +0 -0
  72. {agent_cli-0.96.10 → agent_cli-0.97.0}/.github/workflows/toc.yaml +0 -0
  73. {agent_cli-0.96.10 → agent_cli-0.97.0}/.gitignore +0 -0
  74. {agent_cli-0.96.10 → agent_cli-0.97.0}/.jscpd.json +0 -0
  75. {agent_cli-0.96.10 → agent_cli-0.97.0}/.pre-commit-config.yaml +0 -0
  76. {agent_cli-0.96.10 → agent_cli-0.97.0}/.prompts/docs-review.md +0 -0
  77. {agent_cli-0.96.10 → agent_cli-0.97.0}/.prompts/pr-review.md +0 -0
  78. {agent_cli-0.96.10 → agent_cli-0.97.0}/CLAUDE.md +0 -0
  79. {agent_cli-0.96.10 → agent_cli-0.97.0}/LICENSE +0 -0
  80. {agent_cli-0.96.10 → agent_cli-0.97.0}/LLAMA_SERVER_USAGE.md +0 -0
  81. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/__init__.py +0 -0
  82. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/__main__.py +0 -0
  83. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/.gitkeep +0 -0
  84. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/llm.txt +0 -0
  85. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/server.txt +0 -0
  86. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_requirements/wyoming.txt +0 -0
  87. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/_tools.py +0 -0
  88. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/__init__.py +0 -0
  89. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/_voice_agent_common.py +0 -0
  90. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/assistant.py +0 -0
  91. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/autocorrect.py +0 -0
  92. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/chat.py +0 -0
  93. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/diarize_live_session.py +0 -0
  94. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/memory/__init__.py +0 -0
  95. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/memory/add.py +0 -0
  96. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/memory/proxy.py +0 -0
  97. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/rag_proxy.py +0 -0
  98. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/speak.py +0 -0
  99. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/speakers.py +0 -0
  100. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/transcribe.py +0 -0
  101. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/transcribe_live.py +0 -0
  102. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/agents/voice_edit.py +0 -0
  103. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/api.py +0 -0
  104. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/cli.py +0 -0
  105. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/config.py +0 -0
  106. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/config_cmd.py +0 -0
  107. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/constants.py +0 -0
  108. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/__init__.py +0 -0
  109. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/alignment.py +0 -0
  110. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/audio.py +0 -0
  111. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/chroma.py +0 -0
  112. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/diarization.py +0 -0
  113. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/openai_proxy.py +0 -0
  114. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/process.py +0 -0
  115. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/reranker.py +0 -0
  116. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/speaker_identity.py +0 -0
  117. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/sse.py +0 -0
  118. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/transcription_logger.py +0 -0
  119. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/utils.py +0 -0
  120. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/vad.py +0 -0
  121. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/core/watch.py +0 -0
  122. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/daemon/__init__.py +0 -0
  123. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/__init__.py +0 -0
  124. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/_branch_name.py +0 -0
  125. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/_config.py +0 -0
  126. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/_output.py +0 -0
  127. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/cleanup.py +0 -0
  128. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/cli.py +0 -0
  129. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/__init__.py +0 -0
  130. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/aider.py +0 -0
  131. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/base.py +0 -0
  132. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/claude.py +0 -0
  133. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/codex.py +0 -0
  134. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/continue_dev.py +0 -0
  135. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/copilot.py +0 -0
  136. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/cursor_agent.py +0 -0
  137. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/gemini.py +0 -0
  138. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/opencode.py +0 -0
  139. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/registry.py +0 -0
  140. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/__init__.py +0 -0
  141. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/base.py +0 -0
  142. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/cursor.py +0 -0
  143. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/emacs.py +0 -0
  144. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/jetbrains.py +0 -0
  145. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/nano.py +0 -0
  146. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/neovim.py +0 -0
  147. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/registry.py +0 -0
  148. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/sublime.py +0 -0
  149. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/vim.py +0 -0
  150. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/vscode.py +0 -0
  151. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/editors/zed.py +0 -0
  152. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/hooks.py +0 -0
  153. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/launch.py +0 -0
  154. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/project.py +0 -0
  155. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/registry.py +0 -0
  156. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/skill/SKILL.md +0 -0
  157. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/skill/examples.md +0 -0
  158. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/__init__.py +0 -0
  159. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/apple_terminal.py +0 -0
  160. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/base.py +0 -0
  161. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/gnome.py +0 -0
  162. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/iterm2.py +0 -0
  163. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/kitty.py +0 -0
  164. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/registry.py +0 -0
  165. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/tmux.py +0 -0
  166. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/warp.py +0 -0
  167. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/terminals/zellij.py +0 -0
  168. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/dev/worktree.py +0 -0
  169. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/example-config.toml +0 -0
  170. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/__init__.py +0 -0
  171. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/common.py +0 -0
  172. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/hotkeys.py +0 -0
  173. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/install/services.py +0 -0
  174. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/__init__.py +0 -0
  175. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_files.py +0 -0
  176. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_filters.py +0 -0
  177. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_git.py +0 -0
  178. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_indexer.py +0 -0
  179. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_ingest.py +0 -0
  180. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_persistence.py +0 -0
  181. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_prompt.py +0 -0
  182. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_retrieval.py +0 -0
  183. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_store.py +0 -0
  184. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_streaming.py +0 -0
  185. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/_tasks.py +0 -0
  186. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/api.py +0 -0
  187. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/client.py +0 -0
  188. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/engine.py +0 -0
  189. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/entities.py +0 -0
  190. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/memory/models.py +0 -0
  191. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/opts.py +0 -0
  192. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/py.typed +0 -0
  193. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/__init__.py +0 -0
  194. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/_indexer.py +0 -0
  195. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/_indexing.py +0 -0
  196. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/_prompt.py +0 -0
  197. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/_retriever.py +0 -0
  198. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/_store.py +0 -0
  199. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/_utils.py +0 -0
  200. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/api.py +0 -0
  201. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/client.py +0 -0
  202. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/engine.py +0 -0
  203. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/rag/models.py +0 -0
  204. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/.runtime/.gitkeep +0 -0
  205. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/__init__.py +0 -0
  206. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/README.md +0 -0
  207. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/toggle-autocorrect.sh +0 -0
  208. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/toggle-transcription.sh +0 -0
  209. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/toggle-voice-edit.sh +0 -0
  210. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/README.md +0 -0
  211. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/skhd-config-example +0 -0
  212. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/toggle-autocorrect.sh +0 -0
  213. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/toggle-transcription.sh +0 -0
  214. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/toggle-voice-edit.sh +0 -0
  215. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/README.md +0 -0
  216. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/pyproject.toml +0 -0
  217. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/server.py +0 -0
  218. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/shell.nix +0 -0
  219. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/uv.lock +0 -0
  220. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/run-openwakeword.sh +0 -0
  221. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/setup-linux-hotkeys.sh +0 -0
  222. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/setup-linux.sh +0 -0
  223. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/setup-macos-hotkeys.sh +0 -0
  224. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/setup-macos.sh +0 -0
  225. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/setup-windows.ps1 +0 -0
  226. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/start-all-services-windows.ps1 +0 -0
  227. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/scripts/start-all-services.sh +0 -0
  228. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/__init__.py +0 -0
  229. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/common.py +0 -0
  230. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/model_registry.py +0 -0
  231. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/proxy/__init__.py +0 -0
  232. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/proxy/api.py +0 -0
  233. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/streaming.py +0 -0
  234. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/__init__.py +0 -0
  235. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/api.py +0 -0
  236. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/backends/__init__.py +0 -0
  237. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/backends/base.py +0 -0
  238. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/backends/kokoro.py +0 -0
  239. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/backends/piper.py +0 -0
  240. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/model_manager.py +0 -0
  241. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/model_registry.py +0 -0
  242. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/tts/wyoming_handler.py +0 -0
  243. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/__init__.py +0 -0
  244. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/base.py +0 -0
  245. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/faster_whisper.py +0 -0
  246. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/mlx.py +0 -0
  247. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/transformers.py +0 -0
  248. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/languages.py +0 -0
  249. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/model_manager.py +0 -0
  250. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/model_registry.py +0 -0
  251. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/server/whisper/wyoming_handler.py +0 -0
  252. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/services/__init__.py +0 -0
  253. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/services/_wyoming_utils.py +0 -0
  254. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/services/asr.py +0 -0
  255. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/services/llm.py +0 -0
  256. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/services/tts.py +0 -0
  257. {agent_cli-0.96.10 → agent_cli-0.97.0}/agent_cli/services/wake_word.py +0 -0
  258. {agent_cli-0.96.10 → agent_cli-0.97.0}/docker/docker-compose.yml +0 -0
  259. {agent_cli-0.96.10 → agent_cli-0.97.0}/docker/memory-proxy.Dockerfile +0 -0
  260. {agent_cli-0.96.10 → agent_cli-0.97.0}/docker/rag-proxy.Dockerfile +0 -0
  261. {agent_cli-0.96.10 → agent_cli-0.97.0}/docker/transcribe-proxy.Dockerfile +0 -0
  262. {agent_cli-0.96.10 → agent_cli-0.97.0}/docker/tts.Dockerfile +0 -0
  263. {agent_cli-0.96.10 → agent_cli-0.97.0}/docker/whisper.Dockerfile +0 -0
  264. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/CNAME +0 -0
  265. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/architecture/index.md +0 -0
  266. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/architecture/memory.md +0 -0
  267. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/architecture/rag.md +0 -0
  268. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/assistant.md +0 -0
  269. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/autocorrect.md +0 -0
  270. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/chat.md +0 -0
  271. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/config.md +0 -0
  272. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/dev.md +0 -0
  273. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/index.md +0 -0
  274. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/install-hotkeys.md +0 -0
  275. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/install-services.md +0 -0
  276. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/memory.md +0 -0
  277. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/rag-proxy.md +0 -0
  278. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/server/index.md +0 -0
  279. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/server/transcribe-proxy.md +0 -0
  280. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/speak.md +0 -0
  281. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/start-services.md +0 -0
  282. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/transcribe-live.md +0 -0
  283. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/transcribe.md +0 -0
  284. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/commands/voice-edit.md +0 -0
  285. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/configuration.md +0 -0
  286. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/getting-started.md +0 -0
  287. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/iOS_Shortcut_Guide.md +0 -0
  288. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/index.md +0 -0
  289. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/installation/docker.md +0 -0
  290. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/installation/index.md +0 -0
  291. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/installation/linux.md +0 -0
  292. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/installation/macos-app.md +0 -0
  293. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/installation/macos.md +0 -0
  294. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/installation/nixos.md +0 -0
  295. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/installation/windows.md +0 -0
  296. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/logo-avatar.svg +0 -0
  297. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/logo-clean.svg +0 -0
  298. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/overrides/partials/integrations/analytics/custom.html +0 -0
  299. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/run_markdown_code_runner.py +0 -0
  300. {agent_cli-0.96.10 → agent_cli-0.97.0}/docs/system-integration.md +0 -0
  301. {agent_cli-0.96.10 → agent_cli-0.97.0}/example.agent-cli-config.toml +0 -0
  302. {agent_cli-0.96.10 → agent_cli-0.97.0}/justfile +0 -0
  303. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Package.resolved +0 -0
  304. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Package.swift +0 -0
  305. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/README.md +0 -0
  306. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Resources/AgentCLI.entitlements +0 -0
  307. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Resources/Info.plist +0 -0
  308. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Resources/dmg-background.svg +0 -0
  309. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentCLIApp.swift +0 -0
  310. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentCommand.swift +0 -0
  311. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentCommandRunner.swift +0 -0
  312. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentRuntime.swift +0 -0
  313. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AppDelegate.swift +0 -0
  314. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AppMetadata.swift +0 -0
  315. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AppUpdater.swift +0 -0
  316. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/BootstrapState.swift +0 -0
  317. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/CommandResult.swift +0 -0
  318. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/ConfigurableHotkeyController.swift +0 -0
  319. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/FocusedTextTarget.swift +0 -0
  320. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/LoginItemController.swift +0 -0
  321. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuActivityStatus.swift +0 -0
  322. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuActivityStatusRow.swift +0 -0
  323. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuActivityTracker.swift +0 -0
  324. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuBarIcon.swift +0 -0
  325. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RecentTranscriptionReader.swift +0 -0
  326. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RecordingIndicatorController.swift +0 -0
  327. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RecordingSoundSettings.swift +0 -0
  328. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RuntimeSettings.swift +0 -0
  329. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/SettingsWindowController.swift +0 -0
  330. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/Shortcuts.swift +0 -0
  331. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/StatusMenuController.swift +0 -0
  332. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/TranscriptPasteController.swift +0 -0
  333. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/TranscriptionSettings.swift +0 -0
  334. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/VoiceLevelOverlay.swift +0 -0
  335. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/AgentCommandTests.swift +0 -0
  336. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/LoginItemControllerTests.swift +0 -0
  337. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/RecentTranscriptionReaderTests.swift +0 -0
  338. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/RecordingIndicatorControllerTests.swift +0 -0
  339. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/ShortcutDefaultsTests.swift +0 -0
  340. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/VoiceLevelMeterTests.swift +0 -0
  341. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/build-macos-app.sh +0 -0
  342. {agent_cli-0.96.10 → agent_cli-0.97.0}/macos/test-macos-app-e2e.sh +0 -0
  343. {agent_cli-0.96.10 → agent_cli-0.97.0}/reddit.md +0 -0
  344. {agent_cli-0.96.10 → agent_cli-0.97.0}/shell.nix +0 -0
  345. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/__init__.py +0 -0
  346. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/__init__.py +0 -0
  347. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_fix_my_text.py +0 -0
  348. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_interactive.py +0 -0
  349. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_interactive_extra.py +0 -0
  350. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_memory_add.py +0 -0
  351. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_speak.py +0 -0
  352. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_speak_e2e.py +0 -0
  353. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_speakers.py +0 -0
  354. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_transcribe.py +0 -0
  355. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_transcribe_agent.py +0 -0
  356. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_transcribe_e2e.py +0 -0
  357. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_transcribe_live.py +0 -0
  358. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_transcribe_recovery.py +0 -0
  359. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_tts_common.py +0 -0
  360. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_tts_common_extra.py +0 -0
  361. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_voice_agent_common.py +0 -0
  362. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_voice_edit.py +0 -0
  363. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_voice_edit_e2e.py +0 -0
  364. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/agents/test_wake_word_assistant.py +0 -0
  365. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/conftest.py +0 -0
  366. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/core/__init__.py +0 -0
  367. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/core/test_audio.py +0 -0
  368. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/core/test_chroma.py +0 -0
  369. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/core/test_sse.py +0 -0
  370. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/core/test_vad.py +0 -0
  371. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/core/test_watch.py +0 -0
  372. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/__init__.py +0 -0
  373. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_cleanup.py +0 -0
  374. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_cli.py +0 -0
  375. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_coding_agents.py +0 -0
  376. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_editors.py +0 -0
  377. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_hooks.py +0 -0
  378. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_launch.py +0 -0
  379. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_project.py +0 -0
  380. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_terminals.py +0 -0
  381. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_verification.py +0 -0
  382. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/dev/test_worktree.py +0 -0
  383. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/install/__init__.py +0 -0
  384. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/install/test_extras.py +0 -0
  385. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/install/test_launchd.py +0 -0
  386. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/__init__.py +0 -0
  387. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_api_health.py +0 -0
  388. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_api_integration_liveish.py +0 -0
  389. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_client.py +0 -0
  390. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_engine.py +0 -0
  391. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_files.py +0 -0
  392. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_filters.py +0 -0
  393. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_git_integration.py +0 -0
  394. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_indexer.py +0 -0
  395. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_memory_integration.py +0 -0
  396. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_proxy_passthrough.py +0 -0
  397. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_store.py +0 -0
  398. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/memory/test_utils.py +0 -0
  399. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/mocks/__init__.py +0 -0
  400. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/mocks/audio.py +0 -0
  401. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/mocks/llm.py +0 -0
  402. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/mocks/wyoming.py +0 -0
  403. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/__init__.py +0 -0
  404. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_api.py +0 -0
  405. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_engine.py +0 -0
  406. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_history.py +0 -0
  407. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_indexer.py +0 -0
  408. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_indexing.py +0 -0
  409. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_rag_client.py +0 -0
  410. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_rag_integration_liveish.py +0 -0
  411. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_rag_proxy_passthrough.py +0 -0
  412. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_retriever.py +0 -0
  413. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_store.py +0 -0
  414. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/rag/test_utils.py +0 -0
  415. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_alignment.py +0 -0
  416. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_api.py +0 -0
  417. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_asr.py +0 -0
  418. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_asr_recovery.py +0 -0
  419. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_audio_e2e.py +0 -0
  420. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_cli.py +0 -0
  421. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_config.py +0 -0
  422. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_config_cmd.py +0 -0
  423. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_diarization.py +0 -0
  424. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_diarize_live_session.py +0 -0
  425. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_env_vars.py +0 -0
  426. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_faster_whisper_backend.py +0 -0
  427. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_json_output.py +0 -0
  428. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_llm.py +0 -0
  429. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_llm_gemini.py +0 -0
  430. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_macos_app.py +0 -0
  431. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_memory_tools.py +0 -0
  432. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_mlx_backend.py +0 -0
  433. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_normalize_appcast.py +0 -0
  434. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_process_manager.py +0 -0
  435. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_server_streaming.py +0 -0
  436. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_server_tts.py +0 -0
  437. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_services.py +0 -0
  438. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_speaker_identity.py +0 -0
  439. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_tools.py +0 -0
  440. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_transformers_backend.py +0 -0
  441. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_tts.py +0 -0
  442. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_utils.py +0 -0
  443. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_wake_word.py +0 -0
  444. {agent_cli-0.96.10 → agent_cli-0.97.0}/tests/test_wyoming_utils.py +0 -0
  445. {agent_cli-0.96.10 → agent_cli-0.97.0}/zensical.toml +0 -0
@@ -33,6 +33,10 @@ jobs:
33
33
  run: swift test --package-path macos/AgentCLI --enable-xctest
34
34
  - name: Run pytest (macOS - all extras)
35
35
  if: matrix.os == 'macos-latest'
36
+ env:
37
+ # kaldialign builds pybind11 2.10.x from source, which needs this
38
+ # compatibility floor with CMake 4 on current macOS runners.
39
+ CMAKE_POLICY_VERSION_MINIMUM: "3.5"
36
40
  run: uv run --all-extras pytest -vvv
37
41
  - name: Run pytest (non-macOS - exclude mlx-whisper)
38
42
  if: matrix.os != 'macos-latest'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-cli
3
- Version: 0.96.10
3
+ Version: 0.97.0
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>
@@ -61,6 +61,9 @@ Requires-Dist: watchfiles>=0.21.0; extra == 'memory'
61
61
  Provides-Extra: mlx-whisper
62
62
  Requires-Dist: fastapi[standard]; extra == 'mlx-whisper'
63
63
  Requires-Dist: mlx-whisper>=0.4.0; (sys_platform == 'darwin' and platform_machine == 'arm64') and extra == 'mlx-whisper'
64
+ Provides-Extra: nemo-whisper
65
+ Requires-Dist: fastapi[standard]; extra == 'nemo-whisper'
66
+ Requires-Dist: nemo-toolkit[asr]>=2.2.0; (python_version < '3.14') and extra == 'nemo-whisper'
64
67
  Provides-Extra: piper
65
68
  Requires-Dist: fastapi[standard]; extra == 'piper'
66
69
  Requires-Dist: piper-tts>=1.2.0; extra == 'piper'
@@ -563,6 +566,7 @@ agent-cli install-extras rag memory vad
563
566
  • llm - LLM framework (pydantic-ai)
564
567
  • memory - Long-term memory proxy
565
568
  • mlx-whisper - Whisper ASR for Apple Silicon
569
+ • nemo-whisper - Whisper-compatible ASR via NVIDIA NeMo (Parakeet)
566
570
  • piper - Piper TTS (CPU)
567
571
  • rag - RAG proxy (ChromaDB, embeddings)
568
572
  • server - FastAPI server components
@@ -583,8 +587,8 @@ agent-cli install-extras rag memory vad
583
587
 
584
588
  ╭─ Arguments ────────────────────────────────────────────────────────────────────────────╮
585
589
  │ extras [EXTRAS]... Extras to install: audio, diarization, faster-whisper, │
586
- │ kokoro, llm, memory, mlx-whisper, piper, rag, server,
587
- │ speed, vad, vectordb, whisper-transformers, wyoming
590
+ │ kokoro, llm, memory, mlx-whisper, nemo-whisper, piper, rag, │
591
+ server, speed, vad, vectordb, whisper-transformers, wyoming
588
592
  ╰────────────────────────────────────────────────────────────────────────────────────────╯
589
593
  ╭─ Options ──────────────────────────────────────────────────────────────────────────────╮
590
594
  │ --list -l Show available extras with descriptions (what each one enables) │
@@ -458,6 +458,7 @@ agent-cli install-extras rag memory vad
458
458
  • llm - LLM framework (pydantic-ai)
459
459
  • memory - Long-term memory proxy
460
460
  • mlx-whisper - Whisper ASR for Apple Silicon
461
+ • nemo-whisper - Whisper-compatible ASR via NVIDIA NeMo (Parakeet)
461
462
  • piper - Piper TTS (CPU)
462
463
  • rag - RAG proxy (ChromaDB, embeddings)
463
464
  • server - FastAPI server components
@@ -478,8 +479,8 @@ agent-cli install-extras rag memory vad
478
479
 
479
480
  ╭─ Arguments ────────────────────────────────────────────────────────────────────────────╮
480
481
  │ extras [EXTRAS]... Extras to install: audio, diarization, faster-whisper, │
481
- │ kokoro, llm, memory, mlx-whisper, piper, rag, server,
482
- │ speed, vad, vectordb, whisper-transformers, wyoming
482
+ │ kokoro, llm, memory, mlx-whisper, nemo-whisper, piper, rag, │
483
+ server, speed, vad, vectordb, whisper-transformers, wyoming
483
484
  ╰────────────────────────────────────────────────────────────────────────────────────────╯
484
485
  ╭─ Options ──────────────────────────────────────────────────────────────────────────────╮
485
486
  │ --list -l Show available extras with descriptions (what each one enables) │
@@ -37,6 +37,12 @@
37
37
  "pydantic_ai"
38
38
  ]
39
39
  ],
40
+ "nemo-whisper": [
41
+ "Whisper-compatible ASR via NVIDIA NeMo (Parakeet)",
42
+ [
43
+ "nemo"
44
+ ]
45
+ ],
40
46
  "mlx-whisper": [
41
47
  "Whisper ASR for Apple Silicon",
42
48
  [
@@ -0,0 +1,9 @@
1
+ # Temporary NeMo runtime install override.
2
+ #
3
+ # Runtime installs pin NeMo to Git until a PyPI release can load
4
+ # parakeet-unified-en-0.6b. Released NeMo metadata also caps kaldialign below
5
+ # the first Python 3.14 macOS wheel, so override that cap here.
6
+ # Pin exact 0.9.3 instead of >=0.9.3 because 0.10.0 currently lacks macOS
7
+ # wheels. Remove after the needed NeMo fixes reach a PyPI release.
8
+ nemo-toolkit[asr] @ git+https://github.com/NVIDIA-NeMo/NeMo.git@be23ce1ee6594da3d7fa2f37e603d3b3ba230a9e
9
+ kaldialign==0.9.3
@@ -30,7 +30,9 @@ markdown-it-py==4.2.0
30
30
  # via rich
31
31
  mdurl==0.1.2
32
32
  # via markdown-it-py
33
- numpy==2.4.6
33
+ numpy==1.26.4 ; python_full_version < '3.13'
34
+ # via agent-cli
35
+ numpy==2.4.6 ; python_full_version >= '3.13'
34
36
  # via agent-cli
35
37
  psutil==7.2.2 ; sys_platform == 'win32'
36
38
  # via agent-cli
@@ -12,6 +12,8 @@ annotated-doc==0.0.4
12
12
  # via typer
13
13
  annotated-types==0.7.0
14
14
  # via pydantic
15
+ antlr4-python3-runtime==4.9.3 ; python_full_version < '3.13'
16
+ # via omegaconf
15
17
  anyio==4.13.0
16
18
  # via httpx
17
19
  asteroid-filterbanks==0.4.0
@@ -23,6 +25,8 @@ certifi==2026.5.20
23
25
  # httpcore
24
26
  # httpx
25
27
  # requests
28
+ cffi==2.0.0 ; python_full_version < '3.13'
29
+ # via soundfile
26
30
  charset-normalizer==3.4.7
27
31
  # via requests
28
32
  colorama==0.4.6 ; sys_platform == 'win32'
@@ -42,6 +46,10 @@ cuda-toolkit==13.0.2 ; sys_platform == 'linux'
42
46
  # via torch
43
47
  cycler==0.12.1
44
48
  # via matplotlib
49
+ docopt==0.6.2 ; python_full_version < '3.13'
50
+ # via
51
+ # pyannote-metrics
52
+ # pyannote-pipeline
45
53
  dotenv==0.9.9
46
54
  # via agent-cli
47
55
  einops==0.8.2
@@ -57,23 +65,23 @@ frozenlist==1.8.0
57
65
  # via
58
66
  # aiohttp
59
67
  # aiosignal
60
- fsspec==2026.4.0
68
+ fsspec==2024.12.0
61
69
  # via
62
70
  # huggingface-hub
63
71
  # lightning
64
72
  # pytorch-lightning
65
73
  # torch
66
- googleapis-common-protos==1.75.0
74
+ googleapis-common-protos==1.75.0 ; python_full_version >= '3.13'
67
75
  # via
68
76
  # opentelemetry-exporter-otlp-proto-grpc
69
77
  # opentelemetry-exporter-otlp-proto-http
70
78
  greenlet==3.5.1 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'
71
79
  # via sqlalchemy
72
- grpcio==1.80.0
80
+ grpcio==1.80.0 ; python_full_version >= '3.13'
73
81
  # via opentelemetry-exporter-otlp-proto-grpc
74
82
  h11==0.16.0
75
83
  # via httpcore
76
- hf-xet==1.5.0 ; platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'
84
+ hf-xet==1.5.0 ; (python_full_version < '3.13' and platform_machine == 'AMD64') or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'
77
85
  # via huggingface-hub
78
86
  httpcore==1.0.9
79
87
  # via httpx
@@ -81,8 +89,14 @@ httpx==0.28.1
81
89
  # via
82
90
  # agent-cli
83
91
  # huggingface-hub
84
- huggingface-hub==1.16.1
92
+ huggingface-hub==0.36.2 ; python_full_version >= '3.13'
85
93
  # via pyannote-audio
94
+ huggingface-hub==1.16.1 ; python_full_version < '3.13'
95
+ # via
96
+ # pyannote-audio
97
+ # speechbrain
98
+ hyperpyyaml==1.2.2 ; python_full_version < '3.13'
99
+ # via speechbrain
86
100
  idna==3.17
87
101
  # via
88
102
  # anyio
@@ -92,12 +106,14 @@ idna==3.17
92
106
  jinja2==3.1.6
93
107
  # via torch
94
108
  joblib==1.5.3
95
- # via scikit-learn
109
+ # via
110
+ # scikit-learn
111
+ # speechbrain
96
112
  julius==0.2.7
97
113
  # via torch-audiomentations
98
114
  kiwisolver==1.5.0
99
115
  # via matplotlib
100
- lightning==2.6.5
116
+ lightning==2.4.0
101
117
  # via pyannote-audio
102
118
  lightning-utilities==0.15.3
103
119
  # via
@@ -113,7 +129,9 @@ markupsafe==3.0.3
113
129
  # jinja2
114
130
  # mako
115
131
  matplotlib==3.10.9
116
- # via pyannote-audio
132
+ # via
133
+ # pyannote-audio
134
+ # pyannote-metrics
117
135
  mdurl==0.1.2
118
136
  # via markdown-it-py
119
137
  mpmath==1.3.0
@@ -124,7 +142,23 @@ multidict==6.7.1
124
142
  # yarl
125
143
  networkx==3.6.1
126
144
  # via torch
127
- numpy==2.4.6
145
+ numpy==1.26.4 ; python_full_version < '3.13'
146
+ # via
147
+ # asteroid-filterbanks
148
+ # contourpy
149
+ # matplotlib
150
+ # optuna
151
+ # pandas
152
+ # pyannote-core
153
+ # pyannote-metrics
154
+ # pytorch-metric-learning
155
+ # scikit-learn
156
+ # scipy
157
+ # soundfile
158
+ # speechbrain
159
+ # tensorboardx
160
+ # torchmetrics
161
+ numpy==2.4.6 ; python_full_version >= '3.13'
128
162
  # via
129
163
  # asteroid-filterbanks
130
164
  # contourpy
@@ -136,6 +170,7 @@ numpy==2.4.6
136
170
  # pytorch-metric-learning
137
171
  # scikit-learn
138
172
  # scipy
173
+ # soundfile
139
174
  # torchmetrics
140
175
  nvidia-cublas==13.1.1.3 ; sys_platform == 'linux'
141
176
  # via
@@ -178,38 +213,40 @@ nvidia-nvshmem-cu13==3.4.5 ; sys_platform == 'linux'
178
213
  # via torch
179
214
  nvidia-nvtx==13.0.85 ; sys_platform == 'linux'
180
215
  # via cuda-toolkit
181
- opentelemetry-api==1.42.1
216
+ omegaconf==2.3.0 ; python_full_version < '3.13'
217
+ # via pyannote-audio
218
+ opentelemetry-api==1.42.1 ; python_full_version >= '3.13'
182
219
  # via
183
220
  # opentelemetry-exporter-otlp-proto-grpc
184
221
  # opentelemetry-exporter-otlp-proto-http
185
222
  # opentelemetry-sdk
186
223
  # opentelemetry-semantic-conventions
187
224
  # pyannote-audio
188
- opentelemetry-exporter-otlp==1.42.1
225
+ opentelemetry-exporter-otlp==1.42.1 ; python_full_version >= '3.13'
189
226
  # via pyannote-audio
190
- opentelemetry-exporter-otlp-proto-common==1.42.1
227
+ opentelemetry-exporter-otlp-proto-common==1.42.1 ; python_full_version >= '3.13'
191
228
  # via
192
229
  # opentelemetry-exporter-otlp-proto-grpc
193
230
  # opentelemetry-exporter-otlp-proto-http
194
- opentelemetry-exporter-otlp-proto-grpc==1.42.1
231
+ opentelemetry-exporter-otlp-proto-grpc==1.42.1 ; python_full_version >= '3.13'
195
232
  # via opentelemetry-exporter-otlp
196
- opentelemetry-exporter-otlp-proto-http==1.42.1
233
+ opentelemetry-exporter-otlp-proto-http==1.42.1 ; python_full_version >= '3.13'
197
234
  # via opentelemetry-exporter-otlp
198
- opentelemetry-proto==1.42.1
235
+ opentelemetry-proto==1.42.1 ; python_full_version >= '3.13'
199
236
  # via
200
237
  # opentelemetry-exporter-otlp-proto-common
201
238
  # opentelemetry-exporter-otlp-proto-grpc
202
239
  # opentelemetry-exporter-otlp-proto-http
203
- opentelemetry-sdk==1.42.1
240
+ opentelemetry-sdk==1.42.1 ; python_full_version >= '3.13'
204
241
  # via
205
242
  # opentelemetry-exporter-otlp-proto-grpc
206
243
  # opentelemetry-exporter-otlp-proto-http
207
244
  # pyannote-audio
208
- opentelemetry-semantic-conventions==0.63b1
245
+ opentelemetry-semantic-conventions==0.63b1 ; python_full_version >= '3.13'
209
246
  # via opentelemetry-sdk
210
247
  optuna==4.8.0
211
248
  # via pyannote-pipeline
212
- packaging==26.2
249
+ packaging==24.2
213
250
  # via
214
251
  # huggingface-hub
215
252
  # lightning
@@ -217,6 +254,8 @@ packaging==26.2
217
254
  # matplotlib
218
255
  # optuna
219
256
  # pytorch-lightning
257
+ # speechbrain
258
+ # tensorboardx
220
259
  # torch-pitch-shift
221
260
  # torchmetrics
222
261
  pandas==3.0.3
@@ -232,31 +271,52 @@ propcache==0.5.2
232
271
  # via
233
272
  # aiohttp
234
273
  # yarl
235
- protobuf==6.33.6
274
+ protobuf==4.24.4 ; python_full_version < '3.13'
275
+ # via tensorboardx
276
+ protobuf==5.29.6 ; python_full_version >= '3.13'
236
277
  # via
237
278
  # googleapis-common-protos
238
279
  # opentelemetry-proto
239
280
  psutil==7.2.2 ; sys_platform == 'win32'
240
281
  # via agent-cli
241
- pyannote-audio==4.0.4
282
+ pyannote-audio==3.4.0 ; python_full_version < '3.13'
283
+ # via agent-cli
284
+ pyannote-audio==4.0.4 ; python_full_version >= '3.13'
242
285
  # via agent-cli
243
- pyannote-core==6.0.1
286
+ pyannote-core==5.0.0 ; python_full_version < '3.13'
244
287
  # via
245
288
  # pyannote-audio
246
289
  # pyannote-database
247
290
  # pyannote-metrics
248
291
  # pyannote-pipeline
249
- pyannote-database==6.1.1
292
+ pyannote-core==6.0.1 ; python_full_version >= '3.13'
250
293
  # via
251
294
  # pyannote-audio
295
+ # pyannote-database
252
296
  # pyannote-metrics
253
297
  # pyannote-pipeline
254
- pyannote-metrics==4.1
298
+ pyannote-database==5.1.3 ; python_full_version < '3.13'
299
+ # via
300
+ # pyannote-audio
301
+ # pyannote-metrics
302
+ # pyannote-pipeline
303
+ pyannote-database==6.1.1 ; python_full_version >= '3.13'
304
+ # via
305
+ # pyannote-audio
306
+ # pyannote-metrics
307
+ # pyannote-pipeline
308
+ pyannote-metrics==3.2.1 ; python_full_version < '3.13'
309
+ # via pyannote-audio
310
+ pyannote-metrics==4.1 ; python_full_version >= '3.13'
255
311
  # via pyannote-audio
256
- pyannote-pipeline==4.0.0
312
+ pyannote-pipeline==3.0.1 ; python_full_version < '3.13'
257
313
  # via pyannote-audio
258
- pyannoteai-sdk==0.4.0
314
+ pyannote-pipeline==4.0.0 ; python_full_version >= '3.13'
259
315
  # via pyannote-audio
316
+ pyannoteai-sdk==0.4.0 ; python_full_version >= '3.13'
317
+ # via pyannote-audio
318
+ pycparser==3.0 ; python_full_version < '3.13' and implementation_name != 'PyPy'
319
+ # via cffi
260
320
  pydantic==2.13.4
261
321
  # via agent-cli
262
322
  pydantic-core==2.46.4
@@ -280,30 +340,43 @@ pytorch-metric-learning==2.9.0
280
340
  pyyaml==6.0.3
281
341
  # via
282
342
  # huggingface-hub
343
+ # hyperpyyaml
283
344
  # lightning
345
+ # omegaconf
284
346
  # optuna
285
347
  # pyannote-database
286
348
  # pyannote-pipeline
287
349
  # pytorch-lightning
288
350
  requests==2.34.2
289
351
  # via
352
+ # huggingface-hub
290
353
  # opentelemetry-exporter-otlp-proto-http
291
354
  # pyannoteai-sdk
355
+ # speechbrain
292
356
  rich==15.0.0
293
357
  # via
294
358
  # agent-cli
295
359
  # pyannote-audio
296
360
  # typer
297
- safetensors==0.7.0
361
+ ruamel-yaml==0.19.1 ; python_full_version < '3.13'
362
+ # via hyperpyyaml
363
+ safetensors==0.7.0 ; python_full_version >= '3.13'
298
364
  # via pyannote-audio
299
365
  scikit-learn==1.8.0
300
366
  # via
301
367
  # pyannote-metrics
368
+ # pyannote-pipeline
302
369
  # pytorch-metric-learning
303
370
  scipy==1.17.1
304
371
  # via
372
+ # pyannote-core
305
373
  # pyannote-metrics
306
374
  # scikit-learn
375
+ # speechbrain
376
+ semver==3.0.4 ; python_full_version < '3.13'
377
+ # via pyannote-audio
378
+ sentencepiece==0.2.1 ; python_full_version < '3.13'
379
+ # via speechbrain
307
380
  setproctitle==1.3.7
308
381
  # via agent-cli
309
382
  setuptools==81.0.0
@@ -314,12 +387,24 @@ six==1.17.0
314
387
  # via python-dateutil
315
388
  sortedcontainers==2.4.0
316
389
  # via pyannote-core
390
+ soundfile==0.13.1 ; python_full_version < '3.13'
391
+ # via
392
+ # pyannote-audio
393
+ # speechbrain
394
+ speechbrain==1.1.0 ; python_full_version < '3.13'
395
+ # via pyannote-audio
317
396
  sqlalchemy==2.0.50
318
397
  # via
319
398
  # alembic
320
399
  # optuna
321
400
  sympy==1.14.0
322
- # via torch
401
+ # via
402
+ # pyannote-metrics
403
+ # torch
404
+ tabulate==0.10.0 ; python_full_version < '3.13'
405
+ # via pyannote-metrics
406
+ tensorboardx==2.6.5 ; python_full_version < '3.13'
407
+ # via pyannote-audio
323
408
  threadpoolctl==3.6.0
324
409
  # via scikit-learn
325
410
  torch==2.12.0
@@ -330,6 +415,7 @@ torch==2.12.0
330
415
  # pyannote-audio
331
416
  # pytorch-lightning
332
417
  # pytorch-metric-learning
418
+ # speechbrain
333
419
  # torch-audiomentations
334
420
  # torch-pitch-shift
335
421
  # torchmetrics
@@ -340,9 +426,10 @@ torch-pitch-shift==1.2.5
340
426
  torchaudio==2.11.0
341
427
  # via
342
428
  # pyannote-audio
429
+ # speechbrain
343
430
  # torch-audiomentations
344
431
  # torch-pitch-shift
345
- torchcodec==0.13.0
432
+ torchcodec==0.13.0 ; python_full_version >= '3.13'
346
433
  # via pyannote-audio
347
434
  torchmetrics==1.9.0
348
435
  # via
@@ -357,12 +444,14 @@ tqdm==4.67.3
357
444
  # pyannote-pipeline
358
445
  # pytorch-lightning
359
446
  # pytorch-metric-learning
447
+ # speechbrain
360
448
  triton==3.7.0 ; sys_platform == 'linux'
361
449
  # via torch
362
450
  typer==0.26.3
363
451
  # via
364
452
  # agent-cli
365
453
  # huggingface-hub
454
+ # pyannote-database
366
455
  typing-extensions==4.15.0
367
456
  # via
368
457
  # aiosignal
@@ -378,6 +467,7 @@ typing-extensions==4.15.0
378
467
  # opentelemetry-exporter-otlp-proto-http
379
468
  # opentelemetry-sdk
380
469
  # opentelemetry-semantic-conventions
470
+ # pyannote-core
381
471
  # pydantic
382
472
  # pydantic-core
383
473
  # pytorch-lightning
@@ -17,7 +17,10 @@ certifi==2026.5.20
17
17
  # via
18
18
  # httpcore
19
19
  # httpx
20
+ # requests
20
21
  # sentry-sdk
22
+ charset-normalizer==3.4.7 ; python_full_version >= '3.13'
23
+ # via requests
21
24
  click==8.4.1
22
25
  # via
23
26
  # rich-toolkit
@@ -58,13 +61,13 @@ filelock==3.29.0
58
61
  # via huggingface-hub
59
62
  flatbuffers==25.12.19
60
63
  # via onnxruntime
61
- fsspec==2026.4.0
64
+ fsspec==2024.12.0
62
65
  # via huggingface-hub
63
66
  h11==0.16.0
64
67
  # via
65
68
  # httpcore
66
69
  # uvicorn
67
- hf-xet==1.5.0 ; platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'
70
+ hf-xet==1.5.0 ; (python_full_version < '3.13' and platform_machine == 'AMD64') or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'
68
71
  # via huggingface-hub
69
72
  httpcore==1.0.9
70
73
  # via httpx
@@ -76,7 +79,11 @@ httpx==0.28.1
76
79
  # fastapi
77
80
  # fastapi-cloud-cli
78
81
  # huggingface-hub
79
- huggingface-hub==1.16.1
82
+ huggingface-hub==0.36.2 ; python_full_version >= '3.13'
83
+ # via
84
+ # faster-whisper
85
+ # tokenizers
86
+ huggingface-hub==1.16.1 ; python_full_version < '3.13'
80
87
  # via
81
88
  # faster-whisper
82
89
  # tokenizers
@@ -85,6 +92,7 @@ idna==3.17
85
92
  # anyio
86
93
  # email-validator
87
94
  # httpx
95
+ # requests
88
96
  jinja2==3.1.6
89
97
  # via fastapi
90
98
  markdown-it-py==4.2.0
@@ -93,17 +101,23 @@ markupsafe==3.0.3
93
101
  # via jinja2
94
102
  mdurl==0.1.2
95
103
  # via markdown-it-py
96
- numpy==2.4.6
104
+ numpy==1.26.4 ; python_full_version < '3.13'
105
+ # via
106
+ # ctranslate2
107
+ # onnxruntime
108
+ numpy==2.4.6 ; python_full_version >= '3.13'
97
109
  # via
98
110
  # ctranslate2
99
111
  # onnxruntime
100
112
  onnxruntime==1.26.0
101
113
  # via faster-whisper
102
- packaging==26.2
114
+ packaging==24.2
103
115
  # via
104
116
  # huggingface-hub
105
117
  # onnxruntime
106
- protobuf==6.33.6
118
+ protobuf==4.24.4 ; python_full_version < '3.13'
119
+ # via onnxruntime
120
+ protobuf==5.29.6 ; python_full_version >= '3.13'
107
121
  # via onnxruntime
108
122
  psutil==7.2.2 ; sys_platform == 'win32'
109
123
  # via agent-cli
@@ -136,6 +150,8 @@ pyyaml==6.0.3
136
150
  # ctranslate2
137
151
  # huggingface-hub
138
152
  # uvicorn
153
+ requests==2.34.2 ; python_full_version >= '3.13'
154
+ # via huggingface-hub
139
155
  rich==15.0.0
140
156
  # via
141
157
  # agent-cli
@@ -186,7 +202,9 @@ typing-inspection==0.4.2
186
202
  # pydantic
187
203
  # pydantic-settings
188
204
  urllib3==2.7.0
189
- # via sentry-sdk
205
+ # via
206
+ # requests
207
+ # sentry-sdk
190
208
  uvicorn==0.48.0
191
209
  # via
192
210
  # fastapi
@@ -103,7 +103,8 @@ filelock==3.29.0 ; python_full_version < '3.14'
103
103
  # via
104
104
  # huggingface-hub
105
105
  # torch
106
- fsspec==2026.4.0 ; python_full_version < '3.14'
106
+ # transformers
107
+ fsspec==2024.12.0 ; python_full_version < '3.14'
107
108
  # via
108
109
  # huggingface-hub
109
110
  # torch
@@ -111,7 +112,7 @@ h11==0.16.0
111
112
  # via
112
113
  # httpcore
113
114
  # uvicorn
114
- hf-xet==1.5.0 ; (python_full_version < '3.14' and platform_machine == 'AMD64') or (python_full_version < '3.14' and platform_machine == 'aarch64') or (python_full_version < '3.14' and platform_machine == 'amd64') or (python_full_version < '3.14' and platform_machine == 'arm64') or (python_full_version < '3.14' and platform_machine == 'x86_64')
115
+ hf-xet==1.5.0 ; (python_full_version < '3.13' and platform_machine == 'AMD64') or (python_full_version < '3.14' and platform_machine == 'aarch64') or (python_full_version < '3.14' and platform_machine == 'amd64') or (python_full_version < '3.14' and platform_machine == 'arm64') or (python_full_version < '3.14' and platform_machine == 'x86_64')
115
116
  # via huggingface-hub
116
117
  httpcore==1.0.9
117
118
  # via httpx
@@ -124,7 +125,13 @@ httpx==0.28.1
124
125
  # fastapi-cloud-cli
125
126
  # huggingface-hub
126
127
  # weasel
127
- huggingface-hub==1.16.1 ; python_full_version < '3.14'
128
+ huggingface-hub==0.36.2 ; python_full_version == '3.13.*'
129
+ # via
130
+ # agent-cli
131
+ # kokoro
132
+ # tokenizers
133
+ # transformers
134
+ huggingface-hub==1.16.1 ; python_full_version < '3.13'
128
135
  # via
129
136
  # agent-cli
130
137
  # kokoro
@@ -174,7 +181,15 @@ networkx==3.6.1 ; python_full_version < '3.14'
174
181
  # via torch
175
182
  num2words==0.5.14 ; python_full_version < '3.14'
176
183
  # via misaki
177
- numpy==2.4.6 ; python_full_version < '3.14'
184
+ numpy==1.26.4 ; python_full_version < '3.13'
185
+ # via
186
+ # blis
187
+ # kokoro
188
+ # soundfile
189
+ # spacy
190
+ # thinc
191
+ # transformers
192
+ numpy==2.4.6 ; python_full_version == '3.13.*'
178
193
  # via
179
194
  # blis
180
195
  # kokoro
@@ -223,7 +238,7 @@ nvidia-nvshmem-cu13==3.4.5 ; python_full_version < '3.14' and sys_platform == 'l
223
238
  # via torch
224
239
  nvidia-nvtx==13.0.85 ; python_full_version < '3.14' and sys_platform == 'linux'
225
240
  # via cuda-toolkit
226
- packaging==26.2 ; python_full_version < '3.14'
241
+ packaging==24.2 ; python_full_version < '3.14'
227
242
  # via
228
243
  # huggingface-hub
229
244
  # spacy
@@ -291,7 +306,10 @@ regex==2026.5.9 ; python_full_version < '3.14'
291
306
  # segments
292
307
  # transformers
293
308
  requests==2.34.2 ; python_full_version < '3.14'
294
- # via spacy
309
+ # via
310
+ # huggingface-hub
311
+ # spacy
312
+ # transformers
295
313
  rfc3986==1.5.0 ; python_full_version < '3.14'
296
314
  # via csvw
297
315
  rich==15.0.0
@@ -363,7 +381,11 @@ tqdm==4.67.3 ; python_full_version < '3.14'
363
381
  # huggingface-hub
364
382
  # spacy
365
383
  # transformers
366
- transformers==5.9.0 ; python_full_version < '3.14'
384
+ transformers==4.57.6 ; python_full_version == '3.13.*'
385
+ # via
386
+ # agent-cli
387
+ # kokoro
388
+ transformers==5.9.0 ; python_full_version < '3.13'
367
389
  # via
368
390
  # agent-cli
369
391
  # kokoro