Lol / Dock
RendiXD's picture
Create Dock
46d151f verified
raw
history blame contribute delete
273 Bytes
pip install -q -U google-genai
from google import genai
client = genai.Client(api_key="AIzaSyB9mbTLPPqOVYOnmmyetsphJbT1GzKP4pU")
response = client.models.generate_content(
model="gemini-2.0-flash", contents="Explain how AI works in a few words"
)
print(response.text)