You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# pip install runwayml from runwayml import RunwayML # The env var RUNWAYML_API_SECRET is expected to contain your API key. client = RunwayML() task = client.text_to_video.create( model='veo3.1', prompt_text='A cute bunny hopping in a meadow', ratio='1280:720', duration=8, ).wait_for_task_output() print(task) #217