agent-cli 0.96.9__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.
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/docker.yml +10 -10
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/docs.yml +5 -5
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/markdown-code-runner.yml +3 -3
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/pytest.yml +8 -4
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/release-drafter.yml +1 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/release.yml +23 -15
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/toc.yaml +1 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.pre-commit-config.yaml +1 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/PKG-INFO +9 -7
- {agent_cli-0.96.9 → agent_cli-0.97.0}/README.md +5 -6
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_extras.json +6 -0
- agent_cli-0.97.0/agent_cli/_overrides/nemo-whisper.txt +9 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/audio.txt +3 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/diarization.txt +118 -28
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/faster-whisper.txt +25 -7
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/kokoro.txt +29 -7
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/memory.txt +42 -13
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/mlx-whisper.txt +20 -7
- agent_cli-0.97.0/agent_cli/_requirements/nemo-whisper.txt +892 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/piper.txt +7 -3
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/rag.txt +43 -13
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/speed.txt +3 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/vad.txt +7 -3
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/vectordb.txt +42 -13
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/whisper-transformers.txt +26 -7
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/audio_format.py +56 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/deps.py +131 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/daemon/cli.py +43 -5
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/docs_gen.py +6 -5
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/extras.py +3 -2
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/launchd.py +12 -3
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/service_config.py +3 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/systemd.py +43 -3
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/cli.py +95 -21
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/model_manager.py +6 -2
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/api.py +6 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/__init__.py +6 -1
- agent_cli-0.97.0/agent_cli/server/whisper/backends/nemo.py +411 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/daemon.md +11 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/diarize-live-session.md +1 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/install-extras.md +1 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/server/tts.md +2 -2
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/server/whisper.md +21 -5
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/speakers.md +1 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/getting-started.md +1 -2
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/index.md +1 -2
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/installation/macos-app.md +1 -8
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/system-integration.md +1 -2
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/README.md +2 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/appcast.xml +40 -32
- {agent_cli-0.96.9 → agent_cli-0.97.0}/pyproject.toml +11 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/core/test_audio_format.py +22 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_api_integration.py +154 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_daemon.py +151 -2
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_docs_gen.py +17 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_macos_app.py +36 -1
- agent_cli-0.97.0/tests/test_nemo_backend.py +446 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_requires_extras.py +108 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_server_whisper.py +116 -1
- {agent_cli-0.96.9 → agent_cli-0.97.0}/uv.lock +2954 -182
- agent_cli-0.96.9/.github/scripts/update_cask.py +0 -87
- agent_cli-0.96.9/Casks/agent-cli.rb +0 -29
- agent_cli-0.96.9/tests/test_update_cask.py +0 -51
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.claude/skills/agent-cli-dev/SKILL.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.claude/skills/agent-cli-dev/examples.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.claude-plugin/README.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.claude-plugin/marketplace.json +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.claude-plugin/plugin.json +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.claude-plugin/skills/agent-cli-dev/SKILL.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.claude-plugin/skills/agent-cli-dev/examples.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.cursorrules +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.dockerignore +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.env.example +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/logo.svg +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/release-drafter.yml +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/renovate.json +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/scripts/check_extras_sync.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/scripts/check_plugin_skill_sync.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/scripts/normalize_appcast.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/scripts/sync_extras.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/scripts/sync_requirements.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.github/workflows/automerge.yml +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.gitignore +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.jscpd.json +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.prompts/docs-review.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/.prompts/pr-review.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/CLAUDE.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/LICENSE +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/LLAMA_SERVER_USAGE.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/__main__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/.gitkeep +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/llm.txt +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/server.txt +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_requirements/wyoming.txt +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/_tools.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/_voice_agent_common.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/assistant.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/autocorrect.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/chat.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/diarize_live_session.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/memory/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/memory/add.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/memory/proxy.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/rag_proxy.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/speak.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/speakers.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/transcribe.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/transcribe_live.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/agents/voice_edit.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/api.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/cli.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/config.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/config_cmd.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/constants.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/alignment.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/audio.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/chroma.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/diarization.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/openai_proxy.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/process.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/reranker.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/speaker_identity.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/sse.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/transcription_logger.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/utils.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/vad.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/core/watch.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/daemon/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/_branch_name.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/_config.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/_output.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/cleanup.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/cli.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/aider.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/base.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/claude.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/codex.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/continue_dev.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/copilot.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/cursor_agent.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/gemini.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/opencode.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/coding_agents/registry.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/base.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/cursor.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/emacs.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/jetbrains.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/nano.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/neovim.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/registry.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/sublime.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/vim.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/vscode.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/editors/zed.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/hooks.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/launch.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/project.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/registry.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/skill/SKILL.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/skill/examples.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/apple_terminal.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/base.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/gnome.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/iterm2.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/kitty.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/registry.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/tmux.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/warp.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/terminals/zellij.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/dev/worktree.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/example-config.toml +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/common.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/hotkeys.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/install/services.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_files.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_filters.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_git.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_indexer.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_ingest.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_persistence.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_prompt.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_retrieval.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_store.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_streaming.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/_tasks.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/api.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/client.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/engine.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/entities.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/memory/models.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/opts.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/py.typed +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/_indexer.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/_indexing.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/_prompt.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/_retriever.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/_store.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/_utils.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/api.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/client.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/engine.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/rag/models.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/.runtime/.gitkeep +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/README.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/toggle-autocorrect.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/toggle-transcription.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/linux-hotkeys/toggle-voice-edit.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/README.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/skhd-config-example +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/toggle-autocorrect.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/toggle-transcription.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/macos-hotkeys/toggle-voice-edit.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/README.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/pyproject.toml +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/server.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/shell.nix +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/nvidia-asr-server/uv.lock +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/run-openwakeword.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/setup-linux-hotkeys.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/setup-linux.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/setup-macos-hotkeys.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/setup-macos.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/setup-windows.ps1 +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/start-all-services-windows.ps1 +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/scripts/start-all-services.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/common.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/model_registry.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/proxy/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/proxy/api.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/streaming.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/api.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/backends/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/backends/base.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/backends/kokoro.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/backends/piper.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/model_manager.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/model_registry.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/tts/wyoming_handler.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/base.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/faster_whisper.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/mlx.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/backends/transformers.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/languages.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/model_manager.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/model_registry.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/server/whisper/wyoming_handler.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/services/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/services/_wyoming_utils.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/services/asr.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/services/llm.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/services/tts.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/agent_cli/services/wake_word.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docker/docker-compose.yml +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docker/memory-proxy.Dockerfile +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docker/rag-proxy.Dockerfile +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docker/transcribe-proxy.Dockerfile +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docker/tts.Dockerfile +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docker/whisper.Dockerfile +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/CNAME +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/architecture/index.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/architecture/memory.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/architecture/rag.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/assistant.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/autocorrect.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/chat.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/config.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/dev.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/index.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/install-hotkeys.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/install-services.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/memory.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/rag-proxy.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/server/index.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/server/transcribe-proxy.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/speak.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/start-services.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/transcribe-live.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/transcribe.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/commands/voice-edit.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/configuration.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/iOS_Shortcut_Guide.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/installation/docker.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/installation/index.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/installation/linux.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/installation/macos.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/installation/nixos.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/installation/windows.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/logo-avatar.svg +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/logo-clean.svg +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/overrides/partials/integrations/analytics/custom.html +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/docs/run_markdown_code_runner.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/example.agent-cli-config.toml +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/justfile +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Package.resolved +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Package.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Resources/AgentCLI.entitlements +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Resources/Info.plist +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Resources/dmg-background.svg +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentCLIApp.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentCommand.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentCommandRunner.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AgentRuntime.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AppDelegate.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AppMetadata.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/AppUpdater.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/BootstrapState.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/CommandResult.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/ConfigurableHotkeyController.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/FocusedTextTarget.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/LoginItemController.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuActivityStatus.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuActivityStatusRow.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuActivityTracker.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/MenuBarIcon.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RecentTranscriptionReader.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RecordingIndicatorController.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RecordingSoundSettings.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/RuntimeSettings.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/SettingsWindowController.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/Shortcuts.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/StatusMenuController.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/TranscriptPasteController.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/TranscriptionSettings.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Sources/AgentCLI/VoiceLevelOverlay.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/AgentCommandTests.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/LoginItemControllerTests.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/RecentTranscriptionReaderTests.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/RecordingIndicatorControllerTests.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/ShortcutDefaultsTests.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/AgentCLI/Tests/AgentCLITests/VoiceLevelMeterTests.swift +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/build-macos-app.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/macos/test-macos-app-e2e.sh +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/reddit.md +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/shell.nix +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_fix_my_text.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_interactive.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_interactive_extra.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_memory_add.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_speak.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_speak_e2e.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_speakers.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_transcribe.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_transcribe_agent.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_transcribe_e2e.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_transcribe_live.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_transcribe_recovery.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_tts_common.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_tts_common_extra.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_voice_agent_common.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_voice_edit.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_voice_edit_e2e.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/agents/test_wake_word_assistant.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/conftest.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/core/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/core/test_audio.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/core/test_chroma.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/core/test_sse.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/core/test_vad.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/core/test_watch.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_cleanup.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_cli.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_coding_agents.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_editors.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_hooks.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_launch.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_project.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_terminals.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_verification.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/dev/test_worktree.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/install/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/install/test_extras.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/install/test_launchd.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_api_health.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_api_integration_liveish.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_client.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_engine.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_files.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_filters.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_git_integration.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_indexer.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_memory_integration.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_proxy_passthrough.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_store.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/memory/test_utils.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/mocks/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/mocks/audio.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/mocks/llm.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/mocks/wyoming.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/__init__.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_api.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_engine.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_history.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_indexer.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_indexing.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_rag_client.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_rag_integration_liveish.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_rag_proxy_passthrough.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_retriever.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_store.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/rag/test_utils.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_alignment.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_api.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_asr.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_asr_recovery.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_audio_e2e.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_cli.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_config.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_config_cmd.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_diarization.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_diarize_live_session.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_env_vars.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_faster_whisper_backend.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_json_output.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_llm.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_llm_gemini.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_memory_tools.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_mlx_backend.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_normalize_appcast.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_process_manager.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_server_streaming.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_server_tts.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_services.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_speaker_identity.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_tools.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_transformers_backend.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_tts.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_utils.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_wake_word.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/tests/test_wyoming_utils.py +0 -0
- {agent_cli-0.96.9 → agent_cli-0.97.0}/zensical.toml +0 -0
|
@@ -46,15 +46,15 @@ jobs:
|
|
|
46
46
|
df -h
|
|
47
47
|
|
|
48
48
|
- name: Checkout repository
|
|
49
|
-
uses: actions/checkout@v6
|
|
49
|
+
uses: actions/checkout@v6.0.3
|
|
50
50
|
with:
|
|
51
51
|
fetch-depth: 0 # Full history for version detection
|
|
52
52
|
|
|
53
53
|
- name: Set up Docker Buildx
|
|
54
|
-
uses: docker/setup-buildx-action@v4
|
|
54
|
+
uses: docker/setup-buildx-action@v4.1.0
|
|
55
55
|
|
|
56
56
|
- name: Log in to Container Registry
|
|
57
|
-
uses: docker/login-action@v4
|
|
57
|
+
uses: docker/login-action@v4.2.0
|
|
58
58
|
with:
|
|
59
59
|
registry: ${{ env.REGISTRY }}
|
|
60
60
|
username: ${{ github.actor }}
|
|
@@ -71,7 +71,7 @@ jobs:
|
|
|
71
71
|
|
|
72
72
|
- name: Extract metadata
|
|
73
73
|
id: meta
|
|
74
|
-
uses: docker/metadata-action@v6
|
|
74
|
+
uses: docker/metadata-action@v6.1.0
|
|
75
75
|
with:
|
|
76
76
|
images: ${{ env.REGISTRY }}/${{ github.repository }}-${{ matrix.image }}
|
|
77
77
|
tags: |
|
|
@@ -80,7 +80,7 @@ jobs:
|
|
|
80
80
|
type=sha,suffix=-${{ matrix.suffix }}
|
|
81
81
|
|
|
82
82
|
- name: Build and push
|
|
83
|
-
uses: docker/build-push-action@v7
|
|
83
|
+
uses: docker/build-push-action@v7.2.0
|
|
84
84
|
with:
|
|
85
85
|
context: .
|
|
86
86
|
file: ${{ matrix.dockerfile }}
|
|
@@ -111,15 +111,15 @@ jobs:
|
|
|
111
111
|
|
|
112
112
|
steps:
|
|
113
113
|
- name: Checkout repository
|
|
114
|
-
uses: actions/checkout@v6
|
|
114
|
+
uses: actions/checkout@v6.0.3
|
|
115
115
|
with:
|
|
116
116
|
fetch-depth: 0 # Full history for version detection
|
|
117
117
|
|
|
118
118
|
- name: Set up Docker Buildx
|
|
119
|
-
uses: docker/setup-buildx-action@v4
|
|
119
|
+
uses: docker/setup-buildx-action@v4.1.0
|
|
120
120
|
|
|
121
121
|
- name: Log in to Container Registry
|
|
122
|
-
uses: docker/login-action@v4
|
|
122
|
+
uses: docker/login-action@v4.2.0
|
|
123
123
|
with:
|
|
124
124
|
registry: ${{ env.REGISTRY }}
|
|
125
125
|
username: ${{ github.actor }}
|
|
@@ -136,7 +136,7 @@ jobs:
|
|
|
136
136
|
|
|
137
137
|
- name: Extract metadata
|
|
138
138
|
id: meta
|
|
139
|
-
uses: docker/metadata-action@v6
|
|
139
|
+
uses: docker/metadata-action@v6.1.0
|
|
140
140
|
with:
|
|
141
141
|
images: ${{ env.REGISTRY }}/${{ github.repository }}-${{ matrix.image }}
|
|
142
142
|
tags: |
|
|
@@ -145,7 +145,7 @@ jobs:
|
|
|
145
145
|
type=sha
|
|
146
146
|
|
|
147
147
|
- name: Build and push
|
|
148
|
-
uses: docker/build-push-action@v7
|
|
148
|
+
uses: docker/build-push-action@v7.2.0
|
|
149
149
|
with:
|
|
150
150
|
context: .
|
|
151
151
|
file: ${{ matrix.dockerfile }}
|
|
@@ -27,12 +27,12 @@ jobs:
|
|
|
27
27
|
build:
|
|
28
28
|
runs-on: ubuntu-latest
|
|
29
29
|
steps:
|
|
30
|
-
- uses: actions/checkout@v6
|
|
30
|
+
- uses: actions/checkout@v6.0.3
|
|
31
31
|
with:
|
|
32
32
|
lfs: true
|
|
33
33
|
|
|
34
34
|
- name: Install uv
|
|
35
|
-
uses: astral-sh/setup-uv@v8.
|
|
35
|
+
uses: astral-sh/setup-uv@v8.2.0
|
|
36
36
|
|
|
37
37
|
- name: Set up Python
|
|
38
38
|
run: uv python install 3.12
|
|
@@ -45,11 +45,11 @@ jobs:
|
|
|
45
45
|
|
|
46
46
|
- name: Setup Pages
|
|
47
47
|
if: github.event_name != 'pull_request'
|
|
48
|
-
uses: actions/configure-pages@v6
|
|
48
|
+
uses: actions/configure-pages@v6.0.0
|
|
49
49
|
|
|
50
50
|
- name: Upload artifact
|
|
51
51
|
if: github.event_name != 'pull_request'
|
|
52
|
-
uses: actions/upload-pages-artifact@v5
|
|
52
|
+
uses: actions/upload-pages-artifact@v5.0.0
|
|
53
53
|
with:
|
|
54
54
|
path: "./site"
|
|
55
55
|
|
|
@@ -63,4 +63,4 @@ jobs:
|
|
|
63
63
|
steps:
|
|
64
64
|
- name: Deploy to GitHub Pages
|
|
65
65
|
id: deployment
|
|
66
|
-
uses: actions/deploy-pages@v5
|
|
66
|
+
uses: actions/deploy-pages@v5.0.0
|
|
@@ -11,18 +11,18 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Check out repository
|
|
14
|
-
uses: actions/checkout@v6
|
|
14
|
+
uses: actions/checkout@v6.0.3
|
|
15
15
|
with:
|
|
16
16
|
persist-credentials: false
|
|
17
17
|
fetch-depth: 0
|
|
18
18
|
|
|
19
19
|
- name: Set up Python
|
|
20
|
-
uses: actions/setup-python@v6
|
|
20
|
+
uses: actions/setup-python@v6.2.0
|
|
21
21
|
with:
|
|
22
22
|
python-version: "3.13.11"
|
|
23
23
|
|
|
24
24
|
- name: Install uv
|
|
25
|
-
uses: astral-sh/setup-uv@v8.
|
|
25
|
+
uses: astral-sh/setup-uv@v8.2.0
|
|
26
26
|
|
|
27
27
|
- name: Run markdown-code-runner
|
|
28
28
|
env:
|
|
@@ -18,27 +18,31 @@ jobs:
|
|
|
18
18
|
python-version: ["3.11", "3.13"]
|
|
19
19
|
|
|
20
20
|
steps:
|
|
21
|
-
- uses: actions/checkout@v6
|
|
21
|
+
- uses: actions/checkout@v6.0.3
|
|
22
22
|
- name: Set up Python ${{ matrix.python-version }}
|
|
23
|
-
uses: actions/setup-python@v6
|
|
23
|
+
uses: actions/setup-python@v6.2.0
|
|
24
24
|
with:
|
|
25
25
|
python-version: ${{ matrix.python-version }}
|
|
26
26
|
- name: Install portaudio (Linux only)
|
|
27
27
|
if: matrix.os == 'ubuntu-latest'
|
|
28
28
|
run: sudo apt-get update && sudo apt-get install -y portaudio19-dev
|
|
29
29
|
- name: Install uv
|
|
30
|
-
uses: astral-sh/setup-uv@v8.
|
|
30
|
+
uses: astral-sh/setup-uv@v8.2.0
|
|
31
31
|
- name: Run macOS app Swift tests
|
|
32
32
|
if: matrix.os == 'macos-latest' && matrix.python-version == '3.13'
|
|
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'
|
|
39
43
|
run: uv run --extra audio --extra diarization --extra llm --extra rag --extra memory --extra vad --extra faster-whisper --extra piper --extra kokoro --extra server --extra speed --extra test pytest -vvv
|
|
40
44
|
- name: Upload coverage reports to Codecov
|
|
41
45
|
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
|
|
42
|
-
uses: codecov/codecov-action@v6
|
|
46
|
+
uses: codecov/codecov-action@v6.0.1
|
|
43
47
|
env:
|
|
44
48
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
@@ -14,9 +14,9 @@ jobs:
|
|
|
14
14
|
permissions:
|
|
15
15
|
id-token: write
|
|
16
16
|
steps:
|
|
17
|
-
- uses: actions/checkout@v6
|
|
17
|
+
- uses: actions/checkout@v6.0.3
|
|
18
18
|
- name: Install uv
|
|
19
|
-
uses: astral-sh/setup-uv@v8.
|
|
19
|
+
uses: astral-sh/setup-uv@v8.2.0
|
|
20
20
|
- name: Build
|
|
21
21
|
run: uv build
|
|
22
22
|
- name: Publish package distributions to PyPI
|
|
@@ -29,11 +29,11 @@ jobs:
|
|
|
29
29
|
permissions:
|
|
30
30
|
contents: write
|
|
31
31
|
steps:
|
|
32
|
-
- uses: actions/checkout@v6
|
|
32
|
+
- uses: actions/checkout@v6.0.3
|
|
33
33
|
- name: Install uv
|
|
34
|
-
uses: astral-sh/setup-uv@v8.
|
|
34
|
+
uses: astral-sh/setup-uv@v8.2.0
|
|
35
35
|
- name: Import Developer ID certificate
|
|
36
|
-
uses: apple-actions/import-codesign-certs@v7
|
|
36
|
+
uses: apple-actions/import-codesign-certs@v7.0.0
|
|
37
37
|
with:
|
|
38
38
|
p12-file-base64: ${{ secrets.MACOS_CODESIGN_CERTIFICATE_BASE64 }}
|
|
39
39
|
p12-password: ${{ secrets.MACOS_CODESIGN_CERTIFICATE_PASSWORD }}
|
|
@@ -109,26 +109,34 @@ jobs:
|
|
|
109
109
|
"$APPCAST_DIR"
|
|
110
110
|
|
|
111
111
|
cp "$APPCAST_DIR/appcast.xml" macos/appcast.xml
|
|
112
|
-
- name: Update
|
|
112
|
+
- name: Update Sparkle appcast metadata
|
|
113
113
|
env:
|
|
114
114
|
TAG_NAME: ${{ github.event.release.tag_name }}
|
|
115
115
|
run: |
|
|
116
|
-
VERSION="${TAG_NAME#v}"
|
|
117
|
-
SHA256=$(shasum -a 256 dist/macos/AgentCLI.dmg | awk '{ print $1 }')
|
|
118
|
-
|
|
119
|
-
python3 .github/scripts/update_cask.py \
|
|
120
|
-
--version "$VERSION" \
|
|
121
|
-
--sha256 "$SHA256"
|
|
122
116
|
python3 .github/scripts/normalize_appcast.py macos/appcast.xml
|
|
123
117
|
|
|
124
|
-
if git diff --quiet --
|
|
125
|
-
echo "
|
|
118
|
+
if git diff --quiet -- macos/appcast.xml; then
|
|
119
|
+
echo "macos/appcast.xml is already up to date."
|
|
126
120
|
exit 0
|
|
127
121
|
fi
|
|
128
122
|
|
|
129
123
|
git config user.name "github-actions[bot]"
|
|
130
124
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
131
|
-
git add
|
|
125
|
+
git add macos/appcast.xml
|
|
132
126
|
git commit -m "Update AgentCLI release metadata to ${TAG_NAME}"
|
|
133
127
|
git pull --rebase origin main
|
|
134
128
|
git push origin HEAD:main
|
|
129
|
+
- name: Trigger Homebrew tap update
|
|
130
|
+
env:
|
|
131
|
+
GH_TOKEN: ${{ secrets.HOMEBREW_TAP_DISPATCH_TOKEN }}
|
|
132
|
+
TAG_NAME: ${{ github.event.release.tag_name }}
|
|
133
|
+
run: |
|
|
134
|
+
if [[ -z "$GH_TOKEN" ]]; then
|
|
135
|
+
echo "HOMEBREW_TAP_DISPATCH_TOKEN is required to update basnijholt/homebrew-tap." >&2
|
|
136
|
+
exit 1
|
|
137
|
+
fi
|
|
138
|
+
|
|
139
|
+
gh api repos/basnijholt/homebrew-tap/dispatches \
|
|
140
|
+
-f event_type=agent-cli-release \
|
|
141
|
+
-F "client_payload[tag_name]=$TAG_NAME" \
|
|
142
|
+
-F "client_payload[asset_url]=https://github.com/basnijholt/agent-cli/releases/download/${TAG_NAME}/AgentCLI.dmg"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-cli
|
|
3
|
-
Version: 0.
|
|
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'
|
|
@@ -163,8 +166,7 @@ Since then I have expanded the tool with many more features, all focused on loca
|
|
|
163
166
|
Install the native AgentCLI app with Homebrew:
|
|
164
167
|
|
|
165
168
|
```bash
|
|
166
|
-
brew
|
|
167
|
-
brew install --cask agent-cli
|
|
169
|
+
brew install --cask basnijholt/tap/agent-cli
|
|
168
170
|
```
|
|
169
171
|
|
|
170
172
|
The app provides global shortcuts, a menu bar UI, automatic local Whisper setup on first transcription, and a private bundled `agent-cli` runtime. See the [macOS app guide](docs/installation/macos-app.md) for setup, updates, and uninstall instructions.
|
|
@@ -368,8 +370,7 @@ AgentCLI is also available as a native macOS menu bar app for voice workflows th
|
|
|
368
370
|
Install it with Homebrew:
|
|
369
371
|
|
|
370
372
|
```bash
|
|
371
|
-
brew
|
|
372
|
-
brew install --cask agent-cli
|
|
373
|
+
brew install --cask basnijholt/tap/agent-cli
|
|
373
374
|
```
|
|
374
375
|
|
|
375
376
|
The app is a SwiftUI wrapper around the same `agent-cli` commands. It bundles `uv`, installs a private `agent-cli[audio,llm]` runtime in your Application Support folder on first use, and starts the local Whisper daemon automatically the first time you transcribe.
|
|
@@ -565,6 +566,7 @@ agent-cli install-extras rag memory vad
|
|
|
565
566
|
• llm - LLM framework (pydantic-ai)
|
|
566
567
|
• memory - Long-term memory proxy
|
|
567
568
|
• mlx-whisper - Whisper ASR for Apple Silicon
|
|
569
|
+
• nemo-whisper - Whisper-compatible ASR via NVIDIA NeMo (Parakeet)
|
|
568
570
|
• piper - Piper TTS (CPU)
|
|
569
571
|
• rag - RAG proxy (ChromaDB, embeddings)
|
|
570
572
|
• server - FastAPI server components
|
|
@@ -585,8 +587,8 @@ agent-cli install-extras rag memory vad
|
|
|
585
587
|
|
|
586
588
|
╭─ Arguments ────────────────────────────────────────────────────────────────────────────╮
|
|
587
589
|
│ extras [EXTRAS]... Extras to install: audio, diarization, faster-whisper, │
|
|
588
|
-
│ kokoro, llm, memory, mlx-whisper, piper, rag,
|
|
589
|
-
│ speed, vad, vectordb, whisper-transformers, wyoming
|
|
590
|
+
│ kokoro, llm, memory, mlx-whisper, nemo-whisper, piper, rag, │
|
|
591
|
+
│ server, speed, vad, vectordb, whisper-transformers, wyoming │
|
|
590
592
|
╰────────────────────────────────────────────────────────────────────────────────────────╯
|
|
591
593
|
╭─ Options ──────────────────────────────────────────────────────────────────────────────╮
|
|
592
594
|
│ --list -l Show available extras with descriptions (what each one enables) │
|
|
@@ -58,8 +58,7 @@ Since then I have expanded the tool with many more features, all focused on loca
|
|
|
58
58
|
Install the native AgentCLI app with Homebrew:
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
-
brew
|
|
62
|
-
brew install --cask agent-cli
|
|
61
|
+
brew install --cask basnijholt/tap/agent-cli
|
|
63
62
|
```
|
|
64
63
|
|
|
65
64
|
The app provides global shortcuts, a menu bar UI, automatic local Whisper setup on first transcription, and a private bundled `agent-cli` runtime. See the [macOS app guide](docs/installation/macos-app.md) for setup, updates, and uninstall instructions.
|
|
@@ -263,8 +262,7 @@ AgentCLI is also available as a native macOS menu bar app for voice workflows th
|
|
|
263
262
|
Install it with Homebrew:
|
|
264
263
|
|
|
265
264
|
```bash
|
|
266
|
-
brew
|
|
267
|
-
brew install --cask agent-cli
|
|
265
|
+
brew install --cask basnijholt/tap/agent-cli
|
|
268
266
|
```
|
|
269
267
|
|
|
270
268
|
The app is a SwiftUI wrapper around the same `agent-cli` commands. It bundles `uv`, installs a private `agent-cli[audio,llm]` runtime in your Application Support folder on first use, and starts the local Whisper daemon automatically the first time you transcribe.
|
|
@@ -460,6 +458,7 @@ agent-cli install-extras rag memory vad
|
|
|
460
458
|
• llm - LLM framework (pydantic-ai)
|
|
461
459
|
• memory - Long-term memory proxy
|
|
462
460
|
• mlx-whisper - Whisper ASR for Apple Silicon
|
|
461
|
+
• nemo-whisper - Whisper-compatible ASR via NVIDIA NeMo (Parakeet)
|
|
463
462
|
• piper - Piper TTS (CPU)
|
|
464
463
|
• rag - RAG proxy (ChromaDB, embeddings)
|
|
465
464
|
• server - FastAPI server components
|
|
@@ -480,8 +479,8 @@ agent-cli install-extras rag memory vad
|
|
|
480
479
|
|
|
481
480
|
╭─ Arguments ────────────────────────────────────────────────────────────────────────────╮
|
|
482
481
|
│ extras [EXTRAS]... Extras to install: audio, diarization, faster-whisper, │
|
|
483
|
-
│ kokoro, llm, memory, mlx-whisper, piper, rag,
|
|
484
|
-
│ speed, vad, vectordb, whisper-transformers, wyoming
|
|
482
|
+
│ kokoro, llm, memory, mlx-whisper, nemo-whisper, piper, rag, │
|
|
483
|
+
│ server, speed, vad, vectordb, whisper-transformers, wyoming │
|
|
485
484
|
╰────────────────────────────────────────────────────────────────────────────────────────╯
|
|
486
485
|
╭─ Options ──────────────────────────────────────────────────────────────────────────────╮
|
|
487
486
|
│ --list -l Show available extras with descriptions (what each one enables) │
|
|
@@ -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==
|
|
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
|