VQA_docker / test2.py
Vigneshsaminathan's picture
Upload 10 files
a934f86 verified
raw
history blame contribute delete
296 Bytes
from google import genai
import sys
try:
client = genai.Client(api_key="AIzaSyB1fMfnnp2etuOVWiLrecdMp3_0GbEWLaU")
models = client.models.list()
print("Available Models:")
for m in models:
print(f"- {m.name}")
except Exception as e:
print(f"Error: {e}")