├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile.cpu ├── Dockerfile.gpu ├── Dockerfile.gpu-rocm ├── LICENSE ├── README.md ├── System_Prompt.md ├── app.py ├── docker-compose-cpu.yaml ├── docker-compose-gpu-rocm.yml ├── docker-compose-gpu.yml ├── docs ├── Banner.png ├── DefaultTest.mp3 ├── LeahHappy.mp3 ├── ServerConfig.png ├── TaraLongGeneration.mp3 ├── TaraSad.mp3 ├── WebUI.png ├── ZacContemplative.mp3 ├── docs.png ├── index.html └── terminal.png ├── requirements.txt ├── static └── favicon.ico ├── templates └── tts.html └── tts_engine ├── __init__.py ├── inference.py └── speechpipe.py /.dockerignore: -------------------------------------------------------------------------------- 1 | *.env 2 | models/ 3 | *.gguf -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/Dockerfile.cpu -------------------------------------------------------------------------------- /Dockerfile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/Dockerfile.gpu -------------------------------------------------------------------------------- /Dockerfile.gpu-rocm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/Dockerfile.gpu-rocm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/README.md -------------------------------------------------------------------------------- /System_Prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/System_Prompt.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docker-compose-cpu.yaml -------------------------------------------------------------------------------- /docker-compose-gpu-rocm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docker-compose-gpu-rocm.yml -------------------------------------------------------------------------------- /docker-compose-gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docker-compose-gpu.yml -------------------------------------------------------------------------------- /docs/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/Banner.png -------------------------------------------------------------------------------- /docs/DefaultTest.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/DefaultTest.mp3 -------------------------------------------------------------------------------- /docs/LeahHappy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/LeahHappy.mp3 -------------------------------------------------------------------------------- /docs/ServerConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/ServerConfig.png -------------------------------------------------------------------------------- /docs/TaraLongGeneration.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/TaraLongGeneration.mp3 -------------------------------------------------------------------------------- /docs/TaraSad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/TaraSad.mp3 -------------------------------------------------------------------------------- /docs/WebUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/WebUI.png -------------------------------------------------------------------------------- /docs/ZacContemplative.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/ZacContemplative.mp3 -------------------------------------------------------------------------------- /docs/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/docs.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/docs/terminal.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /templates/tts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/templates/tts.html -------------------------------------------------------------------------------- /tts_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/tts_engine/__init__.py -------------------------------------------------------------------------------- /tts_engine/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/tts_engine/inference.py -------------------------------------------------------------------------------- /tts_engine/speechpipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lex-au/Orpheus-FastAPI/HEAD/tts_engine/speechpipe.py --------------------------------------------------------------------------------