Update MARS model names to mars-flash, mars-pro, mars-instruct

Rename model identifiers from mars-8-* to the new naming convention:
- mars-8-flash -> mars-flash (default)
- mars-8 -> removed
- mars-8-instruct -> mars-instruct
- Added mars-pro
This commit is contained in:
Neil Ruaro
2026-01-09 18:20:50 +09:00
parent a3d7e9eafe
commit a541d65255
4 changed files with 24 additions and 24 deletions

View File

@@ -68,12 +68,12 @@ async def main(voice_id: int):
# Create HTTP session for Camb.ai TTS
async with aiohttp.ClientSession() as session:
# Camb.ai TTS with MARS-8-flash model
# Camb.ai TTS with MARS-flash model
tts = CambTTSService(
api_key=os.getenv("CAMB_API_KEY"),
aiohttp_session=session,
voice_id=voice_id,
model="mars-8-flash",
model="mars-flash",
params=CambTTSService.InputParams(
speed=1.0,
),