







from google import genai
client = genai.Client(api_key="
YOUR_API_KEY")
response = client.models.generate_content(
model="gemini-2.0-flash", contents="Explain how AI works in a few words"
)
print(response.text)






© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
from google import genai
client = genai.Client(api_key="
YOUR_API_KEY")
response = client.models.generate_content(
model="gemini-2.0-flash", contents="Explain how AI works in a few words"
)
print(response.text)