- Enhanced `ARCHITECTURE.md` with details on LLM models for work (Llama 3.1 70B Q4) and family agents (Phi-3 Mini 3.8B Q4). - Introduced new documents: - `ASR_EVALUATION.md` for ASR engine evaluation and selection. - `HARDWARE.md` outlining hardware requirements and purchase plans. - `IMPLEMENTATION_GUIDE.md` for Milestone 2 implementation steps. - `LLM_CAPACITY.md` assessing VRAM and context window limits. - `LLM_MODEL_SURVEY.md` surveying open-weight LLM models. - `LLM_USAGE_AND_COSTS.md` detailing LLM usage and operational costs. - `MCP_ARCHITECTURE.md` describing the Model Context Protocol architecture. - `MCP_IMPLEMENTATION_SUMMARY.md` summarizing MCP implementation status. These updates provide comprehensive guidance for the next phases of development and ensure clarity in project documentation.
38 lines
713 B
Markdown
38 lines
713 B
Markdown
# Quick Fix Guide
|
|
|
|
## Issue: ModuleNotFoundError: No module named 'pytz'
|
|
|
|
**Solution**: Install pytz in the virtual environment
|
|
|
|
```bash
|
|
cd /home/beast/Code/atlas/home-voice-agent/mcp-server
|
|
source venv/bin/activate
|
|
pip install pytz==2024.1
|
|
```
|
|
|
|
Or re-run setup:
|
|
```bash
|
|
./setup.sh
|
|
```
|
|
|
|
## Testing the Adapter
|
|
|
|
The adapter is in a different directory:
|
|
|
|
```bash
|
|
cd /home/beast/Code/atlas/home-voice-agent/mcp-adapter
|
|
pip install -r requirements.txt
|
|
python test_adapter.py
|
|
```
|
|
|
|
Make sure the MCP server is running first:
|
|
```bash
|
|
# In one terminal
|
|
cd /home/beast/Code/atlas/home-voice-agent/mcp-server
|
|
./run.sh
|
|
|
|
# In another terminal
|
|
cd /home/beast/Code/atlas/home-voice-agent/mcp-adapter
|
|
python test_adapter.py
|
|
```
|