File size: 17,012 Bytes
c41750d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | import io
import os
import re
import shutil
import tempfile
import time
from http import HTTPStatus
from pathlib import Path
import numpy as np
import ormsgpack
import soundfile as sf
import torch
from kui.asgi import (
Body,
HTTPException,
HttpView,
JSONResponse,
Routes,
StreamResponse,
UploadFile,
request,
)
from loguru import logger
from typing_extensions import Annotated
from fish_speech.utils.schema import (
AddReferenceRequest,
AddReferenceResponse,
DeleteReferenceResponse,
ListReferencesResponse,
ServeTTSRequest,
ServeVQGANDecodeRequest,
ServeVQGANDecodeResponse,
ServeVQGANEncodeRequest,
ServeVQGANEncodeResponse,
UpdateReferenceResponse,
)
from tools.server.api_utils import (
buffer_to_async_generator,
format_response,
get_content_type,
inference_async,
)
from tools.server.inference import inference_wrapper as inference
from tools.server.model_manager import ModelManager
from tools.server.model_utils import (
batch_vqgan_decode,
cached_vqgan_batch_encode,
)
MAX_NUM_SAMPLES = int(os.getenv("NUM_SAMPLES", 1))
_WEBUI_HTML = (
Path(__file__).parent.parent.parent / "awesome_webui" / "dist" / "index.html"
)
routes = Routes()
@routes.http("/ui")
class WebUI(HttpView):
@classmethod
async def get(cls):
from kui.asgi import HTMLResponse
if _WEBUI_HTML.exists():
return HTMLResponse(_WEBUI_HTML.read_text(encoding="utf-8"))
return JSONResponse(
{"error": "WebUI not built. Run: cd awesome_webui && npm run build"},
status_code=404,
)
@routes.http("/v1/health")
class Health(HttpView):
@classmethod
async def get(cls):
return JSONResponse({"status": "ok"})
@classmethod
async def post(cls):
return JSONResponse({"status": "ok"})
@routes.http.post("/v1/vqgan/encode")
async def vqgan_encode(req: Annotated[ServeVQGANEncodeRequest, Body(exclusive=True)]):
"""
Encode audio using VQGAN model.
"""
try:
# Get the model from the app
model_manager: ModelManager = request.app.state.model_manager
decoder_model = model_manager.decoder_model
# Encode the audio
start_time = time.time()
tokens = cached_vqgan_batch_encode(decoder_model, req.audios)
logger.info(
f"[EXEC] VQGAN encode time: {(time.time() - start_time) * 1000:.2f}ms"
)
# Return the response
return ormsgpack.packb(
ServeVQGANEncodeResponse(tokens=[i.tolist() for i in tokens]),
option=ormsgpack.OPT_SERIALIZE_PYDANTIC,
)
except Exception as e:
logger.error(f"Error in VQGAN encode: {e}", exc_info=True)
raise HTTPException(
HTTPStatus.INTERNAL_SERVER_ERROR, content="Failed to encode audio"
)
@routes.http.post("/v1/vqgan/decode")
async def vqgan_decode(req: Annotated[ServeVQGANDecodeRequest, Body(exclusive=True)]):
"""
Decode tokens to audio using VQGAN model.
"""
try:
# Get the model from the app
model_manager: ModelManager = request.app.state.model_manager
decoder_model = model_manager.decoder_model
# Decode the audio
tokens = [torch.tensor(token, dtype=torch.int) for token in req.tokens]
start_time = time.time()
audios = batch_vqgan_decode(decoder_model, tokens)
logger.info(
f"[EXEC] VQGAN decode time: {(time.time() - start_time) * 1000:.2f}ms"
)
audios = [audio.astype(np.float16).tobytes() for audio in audios]
# Return the response
return ormsgpack.packb(
ServeVQGANDecodeResponse(audios=audios),
option=ormsgpack.OPT_SERIALIZE_PYDANTIC,
)
except Exception as e:
logger.error(f"Error in VQGAN decode: {e}", exc_info=True)
raise HTTPException(
HTTPStatus.INTERNAL_SERVER_ERROR, content="Failed to decode tokens to audio"
)
@routes.http.post("/v1/tts")
async def tts(req: Annotated[ServeTTSRequest, Body(exclusive=True)]):
"""
Generate speech from text using TTS model.
"""
try:
# Get the model from the app
app_state = request.app.state
model_manager: ModelManager = app_state.model_manager
engine = model_manager.tts_inference_engine
sample_rate = engine.decoder_model.sample_rate
# Check if the text is too long
if app_state.max_text_length > 0 and len(req.text) > app_state.max_text_length:
raise HTTPException(
HTTPStatus.BAD_REQUEST,
content=f"Text is too long, max length is {app_state.max_text_length}",
)
# Check if streaming is enabled
if req.streaming and req.format != "wav":
raise HTTPException(
HTTPStatus.BAD_REQUEST,
content="Streaming only supports WAV format",
)
# Perform TTS
if req.streaming:
return StreamResponse(
iterable=inference_async(req, engine),
headers={
"Content-Disposition": f"attachment; filename=audio.{req.format}",
},
content_type=get_content_type(req.format),
)
else:
fake_audios = next(inference(req, engine))
buffer = io.BytesIO()
sf.write(
buffer,
fake_audios,
sample_rate,
format=req.format,
)
return StreamResponse(
iterable=buffer_to_async_generator(buffer.getvalue()),
headers={
"Content-Disposition": f"attachment; filename=audio.{req.format}",
},
content_type=get_content_type(req.format),
)
except HTTPException:
# Re-raise HTTP exceptions as they are already properly formatted
raise
except Exception as e:
logger.error(f"Error in TTS generation: {e}", exc_info=True)
raise HTTPException(
HTTPStatus.INTERNAL_SERVER_ERROR, content="Failed to generate speech"
)
@routes.http.post("/v1/references/add")
async def add_reference(
id: str = Body(...), audio: UploadFile = Body(...), text: str = Body(...)
):
"""
Add a new reference voice with audio file and text.
"""
temp_file_path = None
try:
# Validate input parameters
if not id or not id.strip():
raise ValueError("Reference ID cannot be empty")
if not text or not text.strip():
raise ValueError("Reference text cannot be empty")
# Get the model manager to access the reference loader
app_state = request.app.state
model_manager: ModelManager = app_state.model_manager
engine = model_manager.tts_inference_engine
# Read the uploaded audio file
audio_content = audio.read()
if not audio_content:
raise ValueError("Audio file is empty or could not be read")
# Create a temporary file for the audio data
with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as temp_file:
temp_file.write(audio_content)
temp_file_path = temp_file.name
# Add the reference using the engine's reference loader
engine.add_reference(id, temp_file_path, text)
response = AddReferenceResponse(
success=True,
message=f"Reference voice '{id}' added successfully",
reference_id=id,
)
return format_response(response)
except FileExistsError as e:
logger.warning(f"Reference ID '{id}' already exists: {e}")
response = AddReferenceResponse(
success=False,
message=f"Reference ID '{id}' already exists",
reference_id=id,
)
return format_response(response, status_code=409) # Conflict
except ValueError as e:
logger.warning(f"Invalid input for reference '{id}': {e}")
response = AddReferenceResponse(success=False, message=str(e), reference_id=id)
return format_response(response, status_code=400)
except (FileNotFoundError, OSError) as e:
logger.error(f"File system error for reference '{id}': {e}")
response = AddReferenceResponse(
success=False, message="File system error occurred", reference_id=id
)
return format_response(response, status_code=500)
except Exception as e:
logger.error(f"Unexpected error adding reference '{id}': {e}", exc_info=True)
response = AddReferenceResponse(
success=False, message="Internal server error occurred", reference_id=id
)
return format_response(response, status_code=500)
finally:
# Clean up temporary file
if temp_file_path and os.path.exists(temp_file_path):
try:
os.unlink(temp_file_path)
except OSError as e:
logger.warning(
f"Failed to clean up temporary file {temp_file_path}: {e}"
)
@routes.http.get("/v1/references/list")
async def list_references():
"""
Get a list of all available reference voice IDs.
"""
try:
# Get the model manager to access the reference loader
app_state = request.app.state
model_manager: ModelManager = app_state.model_manager
engine = model_manager.tts_inference_engine
# Get the list of reference IDs
reference_ids = engine.list_reference_ids()
response = ListReferencesResponse(
success=True,
reference_ids=reference_ids,
message=f"Found {len(reference_ids)} reference voices",
)
return format_response(response)
except Exception as e:
logger.error(f"Unexpected error listing references: {e}", exc_info=True)
response = ListReferencesResponse(
success=False, reference_ids=[], message="Internal server error occurred"
)
return format_response(response, status_code=500)
@routes.http.delete("/v1/references/delete")
async def delete_reference(reference_id: str = Body(...)):
"""
Delete a reference voice by ID.
"""
try:
# Validate input parameters
if not reference_id or not reference_id.strip():
raise ValueError("Reference ID cannot be empty")
id_pattern = r"^[a-zA-Z0-9\-_ ]+$"
if not re.match(id_pattern, reference_id) or len(reference_id) > 255:
raise ValueError("Reference ID contains invalid characters or is too long")
# Get the model manager to access the reference loader
app_state = request.app.state
model_manager: ModelManager = app_state.model_manager
engine = model_manager.tts_inference_engine
# Delete the reference using the engine's reference loader
engine.delete_reference(reference_id)
response = DeleteReferenceResponse(
success=True,
message=f"Reference voice '{reference_id}' deleted successfully",
reference_id=reference_id,
)
return format_response(response)
except FileNotFoundError as e:
logger.warning(f"Reference ID '{reference_id}' not found: {e}")
response = DeleteReferenceResponse(
success=False,
message=f"Reference ID '{reference_id}' not found",
reference_id=reference_id,
)
return format_response(response, status_code=404) # Not Found
except ValueError as e:
logger.warning(f"Invalid input for reference '{reference_id}': {e}")
response = DeleteReferenceResponse(
success=False, message=str(e), reference_id=reference_id
)
return format_response(response, status_code=400)
except OSError as e:
logger.error(f"File system error deleting reference '{reference_id}': {e}")
response = DeleteReferenceResponse(
success=False,
message="File system error occurred",
reference_id=reference_id,
)
return format_response(response, status_code=500)
except Exception as e:
logger.error(
f"Unexpected error deleting reference '{reference_id}': {e}", exc_info=True
)
response = DeleteReferenceResponse(
success=False,
message="Internal server error occurred",
reference_id=reference_id,
)
return format_response(response, status_code=500)
@routes.http.post("/v1/references/update")
async def update_reference(
old_reference_id: str = Body(...), new_reference_id: str = Body(...)
):
"""
Rename a reference voice directory from old_reference_id to new_reference_id.
"""
try:
# Validate input parameters
if not old_reference_id or not old_reference_id.strip():
raise ValueError("Old reference ID cannot be empty")
if not new_reference_id or not new_reference_id.strip():
raise ValueError("New reference ID cannot be empty")
if old_reference_id == new_reference_id:
raise ValueError("New reference ID must be different from old reference ID")
# Validate ID format per ReferenceLoader rules
id_pattern = r"^[a-zA-Z0-9\-_ ]+$"
if not re.match(id_pattern, old_reference_id) or len(old_reference_id) > 255:
raise ValueError(
"Old reference ID contains invalid characters or is too long"
)
if not re.match(id_pattern, new_reference_id) or len(new_reference_id) > 255:
raise ValueError(
"New reference ID contains invalid characters or is too long"
)
# Access engine to update caches after renaming
app_state = request.app.state
model_manager: ModelManager = app_state.model_manager
engine = model_manager.tts_inference_engine
refs_base = Path("references")
old_dir = refs_base / old_reference_id
new_dir = refs_base / new_reference_id
# Existence checks
if not old_dir.exists() or not old_dir.is_dir():
raise FileNotFoundError(f"Reference ID '{old_reference_id}' not found")
if new_dir.exists():
# Conflict: destination already exists
response = UpdateReferenceResponse(
success=False,
message=f"Reference ID '{new_reference_id}' already exists",
old_reference_id=old_reference_id,
new_reference_id=new_reference_id,
)
return format_response(response, status_code=409)
# Perform rename
old_dir.rename(new_dir)
# Update in-memory cache key if present
if old_reference_id in engine.ref_by_id:
engine.ref_by_id[new_reference_id] = engine.ref_by_id.pop(old_reference_id)
response = UpdateReferenceResponse(
success=True,
message=(
f"Reference voice renamed from '{old_reference_id}' to '{new_reference_id}' successfully"
),
old_reference_id=old_reference_id,
new_reference_id=new_reference_id,
)
return format_response(response)
except FileNotFoundError as e:
logger.warning(str(e))
response = UpdateReferenceResponse(
success=False,
message=str(e),
old_reference_id=old_reference_id,
new_reference_id=new_reference_id,
)
return format_response(response, status_code=404)
except ValueError as e:
logger.warning(f"Invalid input for update reference: {e}")
response = UpdateReferenceResponse(
success=False,
message=str(e),
old_reference_id=old_reference_id if "old_reference_id" in locals() else "",
new_reference_id=new_reference_id if "new_reference_id" in locals() else "",
)
return format_response(response, status_code=400)
except OSError as e:
logger.error(f"File system error renaming reference: {e}")
response = UpdateReferenceResponse(
success=False,
message="File system error occurred",
old_reference_id=old_reference_id,
new_reference_id=new_reference_id,
)
return format_response(response, status_code=500)
except Exception as e:
logger.error(f"Unexpected error updating reference: {e}", exc_info=True)
response = UpdateReferenceResponse(
success=False,
message="Internal server error occurred",
old_reference_id=old_reference_id if "old_reference_id" in locals() else "",
new_reference_id=new_reference_id if "new_reference_id" in locals() else "",
)
return format_response(response, status_code=500)
|