Skip to content

Commit e5ea90b

Browse files
authored
Merge pull request #317 from open-edge-platform/update-branch
feat: Add architecture diagram (#844)
2 parents 8409e06 + 6602982 commit e5ea90b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

usecases/ai/edge-ai-demo-studio/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ Edge AI Demo Studio is a modern toolkit for deploying, managing, and serving AI
2020
- **Samples:** Samples use cases that implements the ai services
2121
- Digital Avatar
2222

23+
## Architecture Diagram
24+
![Archictecture Diagram](./docs/Architecture.png)
25+
2326
## Software Requirements
2427

2528
- **Operating System:**
@@ -40,7 +43,7 @@ sudo ./install_dependencies.sh
4043

4144
### 2. Set Up Python & Node.js Dependencies
4245

43-
For Linux/macOS:
46+
For Linux:
4447
```bash
4548
./setup.sh
4649
```
@@ -57,7 +60,7 @@ This will:
5760
---
5861

5962
### 3. Start the App
60-
For Linux/macOS:
63+
For Linux:
6164
```bash
6265
./start.sh
6366
```
721 KB
Loading

usecases/ai/edge-ai-demo-studio/workers/text-to-speech/kokoro/main.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,18 @@
1515
from fastapi.responses import JSONResponse, StreamingResponse
1616
from fastapi.middleware.cors import CORSMiddleware
1717
from pydantic import BaseModel, Field
18-
import openvino as ov
1918
from huggingface_hub import hf_hub_download
2019

2120
from utils import create_cache_directory, validate_and_sanitize_cache_dir
2221
from ov_kokoro import OVKModel
2322
from kokoro import KPipeline, KModel
2423

24+
from misaki.espeak import EspeakWrapper
25+
26+
# Disable espeakng-loader, use system wide espeak (should be installed)
27+
EspeakWrapper.set_library(None)
28+
EspeakWrapper.set_data_path(None)
29+
2530
# Configure logging
2631
logging.basicConfig(level=logging.INFO)
2732
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)