push gitignore

This commit is contained in:
zhh
2025-10-24 10:37:19 +08:00
parent ce00630bb2
commit 1adf29a3f6
36 changed files with 6089 additions and 334 deletions

10
get_token.py Normal file
View File

@@ -0,0 +1,10 @@
from google import genai
client = genai.Client(
vertexai=True, project='aida-461108', location='us-central1'
)
response = client.models.generate_content(
model="gemini-2.0-flash", contents="三句话总结人工智能在当代的作用"
)
print(response.text)