Files
ai1/info.txt
2026-02-20 02:24:44 +03:00

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 не нужны, образ стандартный)