Continuity / check_genai_models.py
Gaurav vashistha
feat: integrate Veo and GCS download
ef27e6d
raw
history blame contribute delete
167 Bytes
from google import genai
import os
try:
client = genai.Client(api_key="TEST")
print("models methods:", dir(client.models))
except Exception as e:
print(e)