update fal image_gen to use size in constructor

This commit is contained in:
Moishe Lettvin
2024-01-18 11:29:13 -05:00
parent f9f2e2d7ea
commit 0245f98eb5
2 changed files with 7 additions and 9 deletions

View File

@@ -27,9 +27,9 @@ async def main(room_url):
transport.camera_height = 1024
llm = AzureLLMService()
dalle = FalImageGenService()
dalle = FalImageGenService(image_size="1024x1024")
tts = ElevenLabsTTSService(voice_id="ErXwobaYiN019PkySvjV")
#dalle = OpenAIImageGenService(image_size="1024x1024")
# dalle = OpenAIImageGenService(image_size="1024x1024")
# Get a complete audio chunk from the given text. Splitting this into its own
# coroutine lets us ensure proper ordering of the audio chunks on the send queue.