AI Skill Hub 推荐使用:开源AI工具:本地AI助手 是一款优质的AI工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
本地AI助手,使用Silero VAD、Faster-Whisper和LM Stud,提供私有AI解决方案,提高隐私和安全性,适合企业和个人使用。
开源AI工具:本地AI助手 是一款基于 Python 开发的开源工具,专注于 installable、advanced-speech-to-speech-local-ai-assistant、ai 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
本地AI助手,使用Silero VAD、Faster-Whisper和LM Stud,提供私有AI解决方案,提高隐私和安全性,适合企业和个人使用。
开源AI工具:本地AI助手 是一款基于 Python 开发的开源工具,专注于 installable、advanced-speech-to-speech-local-ai-assistant、ai 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install advanced-sts-local-ai-assistant
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install advanced-sts-local-ai-assistant
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/DIY-Engineering/Advanced-STS-Local-AI-Assistant
cd Advanced-STS-Local-AI-Assistant
pip install -e .
# 验证安装
python -c "import advanced_sts_local_ai_assistant; print('安装成功')"
# 命令行使用
advanced-sts-local-ai-assistant --help
# 基本用法
advanced-sts-local-ai-assistant input_file -o output_file
# Python 代码中调用
import advanced_sts_local_ai_assistant
# 示例
result = advanced_sts_local_ai_assistant.process("input")
print(result)
# advanced-sts-local-ai-assistant 配置文件示例(config.yml) app: name: "advanced-sts-local-ai-assistant" debug: false log_level: "INFO" # 运行时指定配置文件 advanced-sts-local-ai-assistant --config config.yml # 或通过环境变量配置 export ADVANCED_STS_LOCAL_AI_ASSISTANT_API_KEY="your-key" export ADVANCED_STS_LOCAL_AI_ASSISTANT_OUTPUT_DIR="./output"
A fully local, privacy first AI assistant that runs entirely on your machine, no cloud, no subscriptions, no data leaving your PC. It combines speech recognition, a large language model, text to speech, a RAG database and a Powerfull MCP Server with a modular plugin architecture into a single easy to use desktop application.

Demo Video :
://www.youtube.com/watch?v=V0Aa8dKgbi0&t=141s
Key Features :
Par With Eleven Labs on Voice Quality History is saved as a .txt file for backup and GUI continuity between sessions. It is also used to manually rebuild RAG Database if it gets corrupted/deleted.pdf .txt is NO limit on how much it can remember😊: Google Services, Windows CLI, Home Assistant, Telegram, Signal and more to come two C++ backends: faster-whisper and ChromaDB Pannel StyleMinimum System Requirements :
| Component | Requirement |
|---|---|
| OS | Windows 10 / 11 (64-Bit) |
Installation :
Step 1 - Install Python 3.12.6 X64
Download and install Python 3.12.6 X64 from the official website:
://www.python.org/downloads/release/python-3126/ During installation, make sure to check Python to PATH option. Other Python versions are not supported and will cause dependency errors.
Step 2 - Install Visual Studio Build Tools
Some packages require C++ compilation. Download and install the Build Tools from:
://visualstudio.microsoft.com/visual-cpp-build-tools/ During installation, select development with C++.
Step 3 - Install NVIDIA CUDA 12.8 and cuDNN 9.12
CUDA 12.8:
://developer.nvidia.com/cuda-12-8-0-download-archive cuDNN 9.12: ://developer.nvidia.com/cudnn (requires free NVIDIA account)
Step 4 - Install LM Studio
Download and install LM Studio:
://lmstudio.ai I recommend starting with .gguf model, because in my case it offered the best results. To download go to LM-Studio Model Search tab, or hit + shift + M. Next go to /Local Server tab, turn ON the local server, open settings and turn ON CORS, Model loading and Keep Last JIT Model Loaded. Next time you reboot your PC LM-Studio will auto-start in sys tray.
Step 5 - Clone the Repository
git clone
://github.com/DIY-Engineering/Advanced-STS-Local-AI-Assistant.git cd Advanced-STS-Local-AI-Assistant Or download the ZIP from GitHub and extract it to a folder (e.g. "C:\AI Assistant\").
Step 6 - Run the
.py Script
The setup script handles everything automatically: - ✅ Verifies you are using Python 3.12.6 X64 - ✅ Creates the full project folder structure - ✅ Installs PyTorch with CUDA 12.8 - ✅ Installs all required Python packages - ✅ Downloads and installs all AI models
You can run the script with following options:
Setup.py --cpu # Install PyTorch CPU version (no GPU)
Setup.py --skip-deps # Skip dependency installation (models only)
Setup.py --skip-models # Skip model downloads (deps only)
Setup.py --only-coqui # Download only the Coqui TTS model
Setup.py --only-whisper # Download only Faster-Whisper models
Setup.py --whisper-models small medium large-v3 # Specific Whisper models only Full setup takes approximately 15-30 minutes depending on your internet speed.
Step 7 - Manual Model Installation Alternative
If the automatic setup fails for the model downloads, you can install the models manually. See
Models Download.txt in folder
Step 8 - Manual python dependencyes install Alternative
If
.py fails to run, you can manually install python dependencies by opening a terminal in folder and run install -r requirements.txt
Folder Structure
Advanced STS Local AI Assistant\
│
├── Advanced STS Local AI Assistant.py ← Main application
├── Setup.py ← Automated setup script
│
├── Chat History\ ← Conversation logs
├── Coqui TTS\
│ ├── Models\ ← XTTS-v2 model files
│ └── Samples\ ← Voice cloning reference audio
├── Debug Logs\ ← Application logs
├── Dependencies\ ← Additional local dependencies
├── Graphics\ ← UI assets
├── MCP ← Tool Chain Rules File
├── MCP Server\
│ ├── Graphics\
│ └── Plugins\ ← MCP plugin scripts
├── Profiles\ ← User settings and profiles
├── RAG Embedder\
│ └── MiniLM-L6-v2\ ← Sentence embedding model
├── RAG Vector Database\ ← ChromaDB knowledge base
├── Silero VAD\
│ └── Models\ ← Voice activity detection models
├── System Prompt\ ← System prompt configuration files
└── Whisper STT\
└── Models\
├── tiny\
├── base\
├── small\
├── medium\
└── large-v3\
Dependencies
All dependencies are installed automatically by
.py. For reference, here is a summary of the main packages:
| Category | Package |
|---|---|
| GUI | PyQt5 |
| Speech-to-Text | faster-whisper, openai-whisper, ctranslate2 |
| Text-to-Speech | coqui-tts |
| Voice Activity Detection | silero-vad |
| LLM | transformers, sentence-transformers |
| Audio | PyAudio, pydub, soundfile, librosa |
| RAG / Vector DB | chromadb, sentence-transformers |
| Deep Learning | PyTorch 2.7.0 + CUDA 12.8 |
| Google APIs | google-auth, google-api-python-client |
| MCP Protocol | mcp |
| UI Server | uvicorn, starlette, websockets |
Full pinned dependency list:
/Requirements.txt
🚀 First Launch 🚀
1. Make sure LM Studio is running, the local server is started and that you have at least one model downloaded, for starters i recommend
.gguf a verry capable SOTA Model 2. Run the main application: "Advanced STS Local AI Assistant.py" or just double-click patient here, it has to load Heavy Dependencies😊 3. Select your microphone and audio output device from the dropdowns default it uses Microsoft Sound Mapper for input/output 4. Select your preferred Whisper model. Use "Medium" for best speed/accuracy balance 5. Select a voice sample from Voice Sample menu in Coqui XTTS-V2 Settings Frame 6. Press "Start" and start talking! 7. Do not activate "Real Talk" if you are using speakers, this setting is for headphone use ONLY. Real Talk immediatly stops the TTS if it detects ANY voice and restarts the processing loop.
Troubleshooting :
on launch → Make sure you ran .py and it completed without errors. Check Logs\Debug Log.txt for details.
out of memory → Use a smaller Whisper model ( small or base ) or reduce the LLM context size in LM Studio. You can do this when you manually load a model, you just have to check choose model load parameters setting.
not working / Coqui refuses to load → Make sure .txt exists in TTS\Models\ with the correct text. See Models Download.txt.
not detected → Check Windows sound settings and make sure your mic is set as the default recording device.
Studio connection error → Make sure the LM Studio local server is running on ://localhost:1234 before launching the assistant. # Author : Nechifor Marian
Acknowledgements: - Faster-Whisper -
://github.com/SYSTRAN/faster-whisper - Coqui TTS - ://github.com/coqui-ai/TTS - Silero VAD - ://github.com/snakers4/silero-vad - ChromaDB - ://github.com/chroma-core/chroma - LM Studio - ://lmstudio.ai - Sentence Transformers - ://github.com/UKPLab/sentence-transformers
本地AI助手是一个有潜力的开源工具,使用Silero VAD、Faster-Whisper和LM Stud,提供私有AI解决方案,提高隐私和安全性,但需要进一步优化和测试。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ GPL 3.0 — 强 Copyleft,衍生作品须开源,含专利保护条款,不可闭源使用。
总体来看,开源AI工具:本地AI助手 是一款质量良好的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | Advanced-STS-Local-AI-Assistant |
| 原始描述 | 开源AI工具:This is a fully local AI Assistant that uses Silero VAD, Faster-Whisper, LM Stud。⭐15 · Python |
| Topics | installableadvanced-speech-to-speech-local-ai-assistantaillmlocal-aiprivate-aipython |
| GitHub | https://github.com/DIY-Engineering/Advanced-STS-Local-AI-Assistant |
| License | GPL-3.0 |
| 语言 | Python |
收录时间:2026-05-23 · 更新时间:2026-05-30 · License:GPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。