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
+37-37Lines changed: 37 additions & 37 deletions
Original file line number
Diff line number
Diff line change
@@ -7576,40 +7576,40 @@ class ReasoningEngineSpecDeploymentSpecDict(TypedDict, total=False):
7576
7576
7577
7577
7578
7578
class ReasoningEngineSpecPackageSpec(_common.BaseModel):
7579
-
"""User-provided package specification, containing pickled object and package requirements."""
7579
+
"""User-provided package specification, containing pickled object and package requirements."""
7580
7580
7581
-
dependency_files_gcs_uri: Optional[str] = Field(
7581
+
dependency_files_gcs_uri: Optional[str] = Field(
7582
7582
default=None,
7583
7583
description="""Optional. The Cloud Storage URI of the dependency files in tar.gz format.""",
7584
7584
)
7585
-
pickle_object_gcs_uri: Optional[str] = Field(
7585
+
pickle_object_gcs_uri: Optional[str] = Field(
7586
7586
default=None,
7587
7587
description="""Optional. The Cloud Storage URI of the pickled python object.""",
7588
7588
)
7589
-
python_version: Optional[str] = Field(
7590
-
default=None,
7591
-
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.""",
7592
-
)
7593
-
requirements_gcs_uri: Optional[str] = Field(
7594
-
default=None,
7595
-
description="""Optional. The Cloud Storage URI of the `requirements.txt` file""",
7596
-
)
7589
+
python_version: Optional[str] = Field(
7590
+
default=None,
7591
+
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.""",
7592
+
)
7593
+
requirements_gcs_uri: Optional[str] = Field(
7594
+
default=None,
7595
+
description="""Optional. The Cloud Storage URI of the `requirements.txt` file""",
7596
+
)
7597
7597
7598
7598
7599
7599
class ReasoningEngineSpecPackageSpecDict(TypedDict, total=False):
7600
-
"""User-provided package specification, containing pickled object and package requirements."""
7600
+
"""User-provided package specification, containing pickled object and package requirements."""
7601
7601
7602
-
dependency_files_gcs_uri: Optional[str]
7603
-
"""Optional. The Cloud Storage URI of the dependency files in tar.gz format."""
7602
+
dependency_files_gcs_uri: Optional[str]
7603
+
"""Optional. The Cloud Storage URI of the dependency files in tar.gz format."""
7604
7604
7605
-
pickle_object_gcs_uri: Optional[str]
7606
-
"""Optional. The Cloud Storage URI of the pickled python object."""
7605
+
pickle_object_gcs_uri: Optional[str]
7606
+
"""Optional. The Cloud Storage URI of the pickled python object."""
7607
7607
7608
-
python_version: Optional[str]
7609
-
"""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."""
7608
+
python_version: Optional[str]
7609
+
"""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."""
7610
7610
7611
-
requirements_gcs_uri: Optional[str]
7612
-
"""Optional. The Cloud Storage URI of the `requirements.txt` file"""
7611
+
requirements_gcs_uri: Optional[str]
7612
+
"""Optional. The Cloud Storage URI of the `requirements.txt` file"""
7613
7613
7614
7614
7615
7615
ReasoningEngineSpecPackageSpecOrDict = Union[
@@ -7784,40 +7784,40 @@ class ReasoningEngineSpecSourceCodeSpecImageSpecDict(TypedDict, total=False):
7784
7784
7785
7785
7786
7786
class ReasoningEngineSpecSourceCodeSpecPythonSpec(_common.BaseModel):
7787
-
"""Specification for running a Python application from source."""
7787
+
"""Specification for running a Python application from source."""
7788
7788
7789
-
entrypoint_module: Optional[str] = Field(
7789
+
entrypoint_module: Optional[str] = Field(
7790
7790
default=None,
7791
7791
description="""Optional. The Python module to load as the entrypoint, specified as a fully qualified module name. For example: path.to.agent. If not specified, defaults to "agent". The project root will be added to Python sys.path, allowing imports to be specified relative to the root. This field should not be set if the source is `agent_config_source`.""",
7792
7792
)
7793
-
entrypoint_object: Optional[str] = Field(
7793
+
entrypoint_object: Optional[str] = Field(
7794
7794
default=None,
7795
7795
description="""Optional. The name of the callable object within the `entrypoint_module` to use as the application If not specified, defaults to "root_agent". This field should not be set if the source is `agent_config_source`.""",
7796
7796
)
7797
-
requirements_file: Optional[str] = Field(
7797
+
requirements_file: Optional[str] = Field(
7798
7798
default=None,
7799
7799
description="""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt".""",
7800
7800
)
7801
-
version: Optional[str] = Field(
7802
-
default=None,
7803
-
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.""",
7804
-
)
7801
+
version: Optional[str] = Field(
7802
+
default=None,
7803
+
description="""Optional. The version of Python to use. Support version includes 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10.""",
7804
+
)
7805
7805
7806
7806
7807
7807
class ReasoningEngineSpecSourceCodeSpecPythonSpecDict(TypedDict, total=False):
7808
-
"""Specification for running a Python application from source."""
7808
+
"""Specification for running a Python application from source."""
7809
7809
7810
-
entrypoint_module: Optional[str]
7811
-
"""Optional. The Python module to load as the entrypoint, specified as a fully qualified module name. For example: path.to.agent. If not specified, defaults to "agent". The project root will be added to Python sys.path, allowing imports to be specified relative to the root. This field should not be set if the source is `agent_config_source`."""
7810
+
entrypoint_module: Optional[str]
7811
+
"""Optional. The Python module to load as the entrypoint, specified as a fully qualified module name. For example: path.to.agent. If not specified, defaults to "agent". The project root will be added to Python sys.path, allowing imports to be specified relative to the root. This field should not be set if the source is `agent_config_source`."""
7812
7812
7813
-
entrypoint_object: Optional[str]
7814
-
"""Optional. The name of the callable object within the `entrypoint_module` to use as the application If not specified, defaults to "root_agent". This field should not be set if the source is `agent_config_source`."""
7813
+
entrypoint_object: Optional[str]
7814
+
"""Optional. The name of the callable object within the `entrypoint_module` to use as the application If not specified, defaults to "root_agent". This field should not be set if the source is `agent_config_source`."""
7815
7815
7816
-
requirements_file: Optional[str]
7817
-
"""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt"."""
7816
+
requirements_file: Optional[str]
7817
+
"""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt"."""
7818
7818
7819
-
version: Optional[str]
7820
-
"""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."""
7819
+
version: Optional[str]
7820
+
"""Optional. The version of Python to use. Support version includes 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10."""
0 commit comments