Spaces:
Sleeping
Sleeping
File size: 165 Bytes
ef27e6d | 1 2 3 4 5 6 7 8 | from google import genai
import os
try:
client = genai.Client(api_key="TEST")
print(help(client.models.generate_videos))
except Exception as e:
print(e)
|