├── .dockerignore ├── .env.example ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE.txt ├── README.md ├── pyproject.toml ├── src ├── __init__.py ├── assets │ ├── arena-opengraph-logo.png │ └── styles.css ├── config.py ├── constants.py ├── custom_types.py ├── database │ ├── __init__.py │ ├── crud.py │ ├── database.py │ └── models.py ├── frontend.py ├── integrations │ ├── __init__.py │ ├── anthropic_api.py │ ├── elevenlabs_api.py │ └── hume_api.py ├── main.py ├── scripts │ ├── __init__.py │ ├── init_db.py │ └── test_db.py └── utils.py └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/assets/arena-opengraph-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/assets/arena-opengraph-logo.png -------------------------------------------------------------------------------- /src/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/assets/styles.css -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/config.py -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/custom_types.py -------------------------------------------------------------------------------- /src/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/database/__init__.py -------------------------------------------------------------------------------- /src/database/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/database/crud.py -------------------------------------------------------------------------------- /src/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/database/database.py -------------------------------------------------------------------------------- /src/database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/database/models.py -------------------------------------------------------------------------------- /src/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/frontend.py -------------------------------------------------------------------------------- /src/integrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/integrations/__init__.py -------------------------------------------------------------------------------- /src/integrations/anthropic_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/integrations/anthropic_api.py -------------------------------------------------------------------------------- /src/integrations/elevenlabs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/integrations/elevenlabs_api.py -------------------------------------------------------------------------------- /src/integrations/hume_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/integrations/hume_api.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/main.py -------------------------------------------------------------------------------- /src/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | This package contains standalone utility scripts. 3 | """ 4 | -------------------------------------------------------------------------------- /src/scripts/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/scripts/init_db.py -------------------------------------------------------------------------------- /src/scripts/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/scripts/test_db.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/src/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/expressive-tts-arena/HEAD/uv.lock --------------------------------------------------------------------------------