You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vertexai/_genai/types/common.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7608,7 +7608,7 @@ class ReasoningEngineSpecPackageSpec(_common.BaseModel):
7608
7608
)
7609
7609
python_version: Optional[str] = Field(
7610
7610
default=None,
7611
-
description="""Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10.""",
7611
+
description="""Optional. The Python version. Supported values are 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10.""",
7612
7612
)
7613
7613
requirements_gcs_uri: Optional[str] = Field(
7614
7614
default=None,
@@ -7626,7 +7626,7 @@ class ReasoningEngineSpecPackageSpecDict(TypedDict, total=False):
7626
7626
"""Optional. The Cloud Storage URI of the pickled python object."""
7627
7627
7628
7628
python_version: Optional[str]
7629
-
"""Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10."""
7629
+
"""Optional. The Python version. Supported values are 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10."""
7630
7630
7631
7631
requirements_gcs_uri: Optional[str]
7632
7632
"""Optional. The Cloud Storage URI of the `requirements.txt` file"""
@@ -7820,7 +7820,7 @@ class ReasoningEngineSpecSourceCodeSpecPythonSpec(_common.BaseModel):
7820
7820
)
7821
7821
version: Optional[str] = Field(
7822
7822
default=None,
7823
-
description="""Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10.""",
7823
+
description="""Optional. The version of Python to use. Supported versions include 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10.""",
7824
7824
)
7825
7825
7826
7826
@@ -7837,7 +7837,7 @@ class ReasoningEngineSpecSourceCodeSpecPythonSpecDict(TypedDict, total=False):
7837
7837
"""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt"."""
7838
7838
7839
7839
version: Optional[str]
7840
-
"""Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10."""
7840
+
"""Optional. The version of Python to use. Supported versions include 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10."""
0 commit comments