VQA / test2.py
VigneshVS2005's picture
Initial commit of GenAI VQA System
2c5cb17
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}")