Refactor for aiohttp, correct use of settings

This commit is contained in:
Mark Backman
2025-01-16 23:49:53 -05:00
parent 740d2743df
commit d51893f61c
3 changed files with 114 additions and 77 deletions

View File

@@ -48,6 +48,7 @@ async def main():
tts = ElevenLabsHttpTTSService(
api_key=os.getenv("ELEVENLABS_API_KEY", ""),
voice_id=os.getenv("ELEVENLABS_VOICE_ID", ""),
# params=ElevenLabsHttpTTSService.InputParams(language="en"),
)
llm = OpenAILLMService(api_key=os.getenv("OPENAI_API_KEY"), model="gpt-4o")