add a simple python fastapi server to serve whisper models for speech-to-text and piper for text-to-speech
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=82.0.1", "wheel"]
|
||||
|
||||
[project]
|
||||
name = "audio_server"
|
||||
description = "a fastapi server serving whisper and piper"
|
||||
version = "1.0.0"
|
||||
authors = [
|
||||
{ name = 'Milan', email = 'milan.boemer@gmail.com' }
|
||||
]
|
||||
|
||||
requires-python = '>=3.12'
|
||||
|
||||
dynamic = ["dependencies"]
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
dependencies = { file = ["requirements.txt"] }
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ['src']
|
||||
Reference in New Issue
Block a user