├── .env.cloudflared.example ├── .env.open-webui.example ├── .gitignore ├── Makefile ├── README.md ├── data └── openedai-speech │ └── config │ ├── pre_process_map.default.yaml │ └── voice_to_speaker.default.yaml ├── docker-compose.a1111-test.yaml ├── docker-compose.amdgpu.yaml ├── docker-compose.api.yaml ├── docker-compose.gpu.yaml ├── docker-compose.ollamadata.yaml ├── docker-compose.webuidata.yaml ├── docker-compose.yaml ├── initial-setup-configs ├── .env.open-webui └── openedai-speech │ └── config │ ├── pre_process_map.default.yaml │ └── voice_to_speaker.default.yaml └── run-compose.sh /.env.cloudflared.example: -------------------------------------------------------------------------------- 1 | TUNNEL_TOKEN=YourTunnelToken -------------------------------------------------------------------------------- /.env.open-webui.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/.env.open-webui.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/README.md -------------------------------------------------------------------------------- /data/openedai-speech/config/pre_process_map.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/data/openedai-speech/config/pre_process_map.default.yaml -------------------------------------------------------------------------------- /data/openedai-speech/config/voice_to_speaker.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/data/openedai-speech/config/voice_to_speaker.default.yaml -------------------------------------------------------------------------------- /docker-compose.a1111-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/docker-compose.a1111-test.yaml -------------------------------------------------------------------------------- /docker-compose.amdgpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/docker-compose.amdgpu.yaml -------------------------------------------------------------------------------- /docker-compose.api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/docker-compose.api.yaml -------------------------------------------------------------------------------- /docker-compose.gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/docker-compose.gpu.yaml -------------------------------------------------------------------------------- /docker-compose.ollamadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/docker-compose.ollamadata.yaml -------------------------------------------------------------------------------- /docker-compose.webuidata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/docker-compose.webuidata.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /initial-setup-configs/.env.open-webui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/initial-setup-configs/.env.open-webui -------------------------------------------------------------------------------- /initial-setup-configs/openedai-speech/config/pre_process_map.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/initial-setup-configs/openedai-speech/config/pre_process_map.default.yaml -------------------------------------------------------------------------------- /initial-setup-configs/openedai-speech/config/voice_to_speaker.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/initial-setup-configs/openedai-speech/config/voice_to_speaker.default.yaml -------------------------------------------------------------------------------- /run-compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishart0/open-webui-nvidia-cuda-setup/HEAD/run-compose.sh --------------------------------------------------------------------------------