summaryrefslogtreecommitdiff
path: root/backend/ai.py
blob: 1e63b94d642349bf8cf4784ddfbe645bace4fcfd (plain)
1
2
3
4
5
6
7
8
from google import genai

client = genai.Client(api_key="AIzaSyA-mA7v4xlbEAz80uKf3Dywpbeh9ZfpLMs")

response = client.models.generate_content(
    model="gemini-2.0-flash", contents="Explain how AI works in a few words"
)
print(response.text)