Anurag
commited on
Commit
·
9744553
1
Parent(s):
ff167e0
dockerfile
Browse files- README.md +10 -4
- backend/package.json +2 -1
README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
| 1 |
# **VocRT - Personal Realtime Voice-to-Voice AI Solution**
|
| 2 |
|
| 3 |
[](https://opensource.org/licenses/MIT)
|
| 4 |
-
[](https://hub.docker.com/r/anuragsingh922/vocrt)
|
| 5 |
[](https://www.python.org/)
|
| 6 |
|
| 7 |
VocRT is a comprehensive, privacy-first **Realtime Voice-to-Voice (V2V)** solution that enables natural conversations with AI. Built with cutting-edge TTS models, RAG capabilities, and seamless integration, VocRT processes your voice input and responds with high-quality synthesized speech in real-time.
|
|
@@ -97,6 +96,12 @@ venv\Scripts\activate
|
|
| 97 |
|
| 98 |
### **Step 3: Install Python Dependencies**
|
| 99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 100 |
```
|
| 101 |
pip install --upgrade pip setuptools wheel
|
| 102 |
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
|
|
@@ -108,7 +113,8 @@ pip install -r requirements.txt
|
|
| 108 |
#### **Ubuntu/Debian:**
|
| 109 |
|
| 110 |
```
|
| 111 |
-
sudo apt-get update
|
|
|
|
| 112 |
```
|
| 113 |
|
| 114 |
#### **macOS:**
|
|
@@ -138,10 +144,10 @@ espeak "VocRT installation successful!"
|
|
| 138 |
```
|
| 139 |
cd backend
|
| 140 |
npm install
|
| 141 |
-
|
| 142 |
```
|
| 143 |
|
| 144 |
-
### **Step 6: Frontend Setup (
|
| 145 |
|
| 146 |
```
|
| 147 |
cd frontend
|
|
|
|
| 1 |
# **VocRT - Personal Realtime Voice-to-Voice AI Solution**
|
| 2 |
|
| 3 |
[](https://opensource.org/licenses/MIT)
|
|
|
|
| 4 |
[](https://www.python.org/)
|
| 5 |
|
| 6 |
VocRT is a comprehensive, privacy-first **Realtime Voice-to-Voice (V2V)** solution that enables natural conversations with AI. Built with cutting-edge TTS models, RAG capabilities, and seamless integration, VocRT processes your voice input and responds with high-quality synthesized speech in real-time.
|
|
|
|
| 96 |
|
| 97 |
### **Step 3: Install Python Dependencies**
|
| 98 |
|
| 99 |
+
```
|
| 100 |
+
pip install -r requirements.txt
|
| 101 |
+
```
|
| 102 |
+
|
| 103 |
+
If the installation fails (e.g. due to dependency or PyTorch issues), try the following recovery steps:
|
| 104 |
+
|
| 105 |
```
|
| 106 |
pip install --upgrade pip setuptools wheel
|
| 107 |
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
|
|
|
|
| 113 |
#### **Ubuntu/Debian:**
|
| 114 |
|
| 115 |
```
|
| 116 |
+
sudo apt-get update
|
| 117 |
+
sudo apt-get install espeak
|
| 118 |
```
|
| 119 |
|
| 120 |
#### **macOS:**
|
|
|
|
| 144 |
```
|
| 145 |
cd backend
|
| 146 |
npm install
|
| 147 |
+
npm run dev
|
| 148 |
```
|
| 149 |
|
| 150 |
+
### **Step 6: Frontend Setup (Vite)**
|
| 151 |
|
| 152 |
```
|
| 153 |
cd frontend
|
backend/package.json
CHANGED
|
@@ -4,7 +4,8 @@
|
|
| 4 |
"description": "",
|
| 5 |
"main": "index.js",
|
| 6 |
"scripts": {
|
| 7 |
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
| 8 |
},
|
| 9 |
"keywords": [],
|
| 10 |
"author": "",
|
|
|
|
| 4 |
"description": "",
|
| 5 |
"main": "index.js",
|
| 6 |
"scripts": {
|
| 7 |
+
"test": "echo \"Error: no test specified\" && exit 1",
|
| 8 |
+
"dev": "node app.js"
|
| 9 |
},
|
| 10 |
"keywords": [],
|
| 11 |
"author": "",
|