Spaces:
Running
Running
File size: 296 Bytes
2c5cb17 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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}")
|