├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── __init__.py ├── api │ ├── __init__.py │ ├── routes.py │ ├── schemas.py │ └── voice_routes.py ├── core │ ├── __init__.py │ └── config.py ├── main.py ├── models │ ├── __init__.py │ └── voice.py ├── services │ ├── __init__.py │ ├── audio_service.py │ └── dia_service.py └── utils │ ├── __init__.py │ └── helpers.py ├── docker-compose.yml ├── requirements.txt └── static └── index.html /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/api/routes.py -------------------------------------------------------------------------------- /app/api/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/api/schemas.py -------------------------------------------------------------------------------- /app/api/voice_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/api/voice_routes.py -------------------------------------------------------------------------------- /app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/core/config.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/main.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/models/voice.py -------------------------------------------------------------------------------- /app/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/services/audio_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/services/audio_service.py -------------------------------------------------------------------------------- /app/services/dia_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/services/dia_service.py -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/app/utils/helpers.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildougherty/dia_openai/HEAD/static/index.html --------------------------------------------------------------------------------