File size: 1,959 Bytes
87337b1 |
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 |
#
# This file is part of TEN Framework, an open source project.
# Licensed under the Apache License, Version 2.0.
# See the LICENSE file for more information.
#
import traceback
from .elevenlabs_tts import ElevenLabsTTS, ElevenLabsTTSConfig
from ten import (
AsyncTenEnv,
)
from ten_ai_base.tts import AsyncTTSBaseExtension
class ElevenLabsTTSExtension(AsyncTTSBaseExtension):
def __init__(self, name: str) -> None:
super().__init__(name)
self.config = None
self.client = None
async def on_init(self, ten_env: AsyncTenEnv) -> None:
await super().on_init(ten_env)
ten_env.log_debug("on_init")
async def on_start(self, ten_env: AsyncTenEnv) -> None:
try:
await super().on_start(ten_env)
ten_env.log_debug("on_start")
self.config = await ElevenLabsTTSConfig.create_async(ten_env=ten_env)
if not self.config.api_key:
raise ValueError("api_key is required")
self.client = ElevenLabsTTS(self.config)
except Exception:
ten_env.log_error(f"on_start failed: {traceback.format_exc()}")
async def on_stop(self, ten_env: AsyncTenEnv) -> None:
await super().on_stop(ten_env)
ten_env.log_debug("on_stop")
async def on_deinit(self, ten_env: AsyncTenEnv) -> None:
await super().on_deinit(ten_env)
ten_env.log_debug("on_deinit")
async def on_request_tts(
self, ten_env: AsyncTenEnv, input_text: str, end_of_segment: bool
) -> None:
audio_stream = await self.client.text_to_speech_stream(input_text)
ten_env.log_info(f"on_request_tts: {input_text}")
async for audio_data in audio_stream:
await self.send_audio_out(ten_env, audio_data)
ten_env.log_info(f"on_request_tts: {input_text} done")
async def on_cancel_tts(self, ten_env: AsyncTenEnv) -> None:
return await super().on_cancel_tts(ten_env)
|