Itration 0 from deepseek

This commit is contained in:
2026-02-20 02:24:44 +03:00
parent 564b407300
commit 721bf3d6d8
8 changed files with 268 additions and 171 deletions

32
info.txt Normal file
View File

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