45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
import argparse
|
|
import asyncio
|
|
|
|
from dailyai.queue_frame import QueueFrame, FrameType
|
|
from dailyai.services.daily_transport_service import DailyTransportService
|
|
from dailyai.services.open_ai_services import OpenAIImageGenService
|
|
|
|
local_joined = False
|
|
participant_joined = False
|
|
|
|
async def main(room_url):
|
|
meeting_duration_minutes = 1
|
|
transport = DailyTransportService(
|
|
room_url,
|
|
None,
|
|
"Show a still frame image",
|
|
meeting_duration_minutes,
|
|
)
|
|
transport.mic_enabled = False
|
|
transport.camera_enabled = True
|
|
transport.camera_width = 1024
|
|
transport.camera_height = 1024
|
|
|
|
imagegen = OpenAIImageGenService(image_size="1024x1024")
|
|
image_task = asyncio.create_task(
|
|
imagegen.run_to_queue(transport.send_queue, [QueueFrame(FrameType.TEXT, "a cat in the style of picasso")])
|
|
)
|
|
|
|
@transport.event_handler("on_participant_joined")
|
|
async def on_participant_joined(transport, participant):
|
|
await image_task
|
|
|
|
await transport.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description="Simple Daily Bot Sample")
|
|
parser.add_argument(
|
|
"-u", "--url", type=str, required=True, help="URL of the Daily room to join"
|
|
)
|
|
|
|
args, unknown = parser.parse_known_args()
|
|
|
|
asyncio.run(main(args.url))
|