33 lines
969 B
Plaintext
33 lines
969 B
Plaintext
ai1/
|
|
├── .gitignore
|
|
├── README.md
|
|
├── docker-compose.yml
|
|
├── services/
|
|
│ ├── vad/
|
|
│ │ ├── Dockerfile
|
|
│ │ ├── requirements.txt
|
|
│ │ └── app.py
|
|
│ ├── asr/
|
|
│ │ ├── Dockerfile
|
|
│ │ ├── requirements.txt
|
|
│ │ └── app.py
|
|
│ ├── speaker-id/
|
|
│ │ ├── Dockerfile
|
|
│ │ ├── requirements.txt
|
|
│ │ ├── app.py
|
|
│ │ └── embeddings.json
|
|
│ ├── orchestrator/
|
|
│ │ ├── Dockerfile
|
|
│ │ ├── requirements.txt
|
|
│ │ ├── app.py
|
|
│ │ └── tools/
|
|
│ │ └── time_tool.py
|
|
│ └── tts/
|
|
│ ├── Dockerfile
|
|
│ ├── requirements.txt
|
|
│ └── app.py
|
|
├── client/
|
|
│ └── client.py
|
|
└── redis/
|
|
└── (файлы Redis не нужны, образ стандартный)
|