Spaces:
Sleeping
Sleeping
File size: 155 Bytes
2d25973 | 1 2 3 4 5 6 7 8 9 10 | import os
from google import genai
from dotenv import load_dotenv
load_dotenv()
client = genai.Client()
for m in client.models.list():
print(m.name)
|