feat: add voice co-creation session skeleton

This commit is contained in:
2026-04-19 22:54:48 +08:00
parent 7c85d7a2e7
commit f106f740dd
10 changed files with 1540 additions and 0 deletions

View File

@@ -66,6 +66,10 @@ class Settings(BaseSettings):
"storage/audio",
description="Directory for cached story audio files",
)
voice_session_storage_dir: str = Field(
"storage/voice_sessions",
description="Directory for persisted voice co-creation session assets",
)
story_audio_cache_ttl_days: int = Field(
30,
description="TTL in days before cached story audio is pruned",