Spaces:
Configuration error
Configuration error
File size: 199 Bytes
eb17e9f | 1 2 3 4 5 6 7 8 9 10 | from google import genai
client = genai.Client()
response = client.models.generate_content(
model="gemini-2.5-flash",
contents="Explain how AI works in a few words",
)
print(response.text) |