Skip to content

Commit d80156b

Browse files
Merge branch 'main' into b_446220000
2 parents 8d6ccd5 + a9f2193 commit d80156b

File tree

34 files changed

+379
-24
lines changed

34 files changed

+379
-24
lines changed

appengine/standard_python3/bundled-services/mail/django/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==5.1.12; python_version >= "3.10"
1+
Django==5.1.13; python_version >= "3.10"
22
Django==4.2.16; python_version >= "3.8" and python_version < "3.10"
33
Django==3.2.25; python_version < "3.8"
44
django-environ==0.10.0

cloud-sql/mysql/sqlalchemy/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Flask==2.2.2
22
SQLAlchemy==2.0.40
33
PyMySQL==1.1.1
44
gunicorn==23.0.0
5-
cloud-sql-python-connector==1.18.2
5+
cloud-sql-python-connector==1.18.4
66
functions-framework==3.9.2
77
Werkzeug==2.3.8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SQLAlchemy==2.0.40
2-
pg8000==1.31.2
2+
pg8000==1.31.5
33
tink==1.9.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Flask==2.2.2
2-
pg8000==1.31.2
2+
pg8000==1.31.5
33
SQLAlchemy==2.0.40
4-
cloud-sql-python-connector==1.18.2
4+
cloud-sql-python-connector==1.18.4
55
gunicorn==23.0.0
66
functions-framework==3.9.2
77
Werkzeug==2.3.8

cloud-sql/sql-server/sqlalchemy/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ gunicorn==23.0.0
33
python-tds==1.16.0
44
pyopenssl==25.0.0
55
SQLAlchemy==2.0.40
6-
cloud-sql-python-connector==1.18.2
6+
cloud-sql-python-connector==1.18.4
77
sqlalchemy-pytds==1.0.2
88
functions-framework==3.9.2
99
Werkzeug==2.3.8

connectgateway/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
google-cloud-gke-connect-gateway==0.10.4
22
google-auth==2.38.0
3-
kubernetes==33.1.0
3+
kubernetes==34.1.0
44
google-api-core==2.24.2

genai/image_generation/imggen_mmflash_edit_img_with_txt_img.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def generate_content() -> str:
2626
image = Image.open("test_resources/example-image-eiffel-tower.png")
2727

2828
response = client.models.generate_content(
29-
model="gemini-2.5-flash-image-preview",
29+
model="gemini-2.5-flash-image",
3030
contents=[image, "Edit this image to make it look like a cartoon."],
3131
config=GenerateContentConfig(response_modalities=[Modality.TEXT, Modality.IMAGE]),
3232
)

genai/image_generation/imggen_mmflash_locale_aware_with_txt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def generate_content() -> str:
2323
client = genai.Client()
2424

2525
response = client.models.generate_content(
26-
model="gemini-2.5-flash-image-preview",
26+
model="gemini-2.5-flash-image",
2727
contents=("Generate a photo of a breakfast meal."),
2828
config=GenerateContentConfig(response_modalities=[Modality.TEXT, Modality.IMAGE]),
2929
)

genai/image_generation/imggen_mmflash_multiple_imgs_with_txt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def generate_content() -> str:
2323
client = genai.Client()
2424

2525
response = client.models.generate_content(
26-
model="gemini-2.5-flash-image-preview",
26+
model="gemini-2.5-flash-image",
2727
contents=("Generate 3 images a cat sitting on a chair."),
2828
config=GenerateContentConfig(response_modalities=[Modality.TEXT, Modality.IMAGE]),
2929
)

genai/image_generation/imggen_mmflash_txt_and_img_with_txt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def generate_content() -> int:
2323
client = genai.Client()
2424

2525
response = client.models.generate_content(
26-
model="gemini-2.5-flash-image-preview",
26+
model="gemini-2.5-flash-image",
2727
contents=(
2828
"Generate an illustrated recipe for a paella."
2929
"Create images to go alongside the text as you generate the recipe"

0 commit comments

Comments
 (0)