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
@@ -7596,40 +7596,40 @@ class ReasoningEngineSpecDeploymentSpecDict(TypedDict, total=False):
7596
7596
7597
7597
7598
7598
class ReasoningEngineSpecPackageSpec(_common.BaseModel):
7599
-
"""User-provided package specification, containing pickled object and package requirements."""
7599
+
"""User-provided package specification, containing pickled object and package requirements."""
7600
7600
7601
-
dependency_files_gcs_uri: Optional[str] = Field(
7601
+
dependency_files_gcs_uri: Optional[str] = Field(
7602
7602
default=None,
7603
7603
description="""Optional. The Cloud Storage URI of the dependency files in tar.gz format.""",
7604
7604
)
7605
-
pickle_object_gcs_uri: Optional[str] = Field(
7605
+
pickle_object_gcs_uri: Optional[str] = Field(
7606
7606
default=None,
7607
7607
description="""Optional. The Cloud Storage URI of the pickled python object.""",
7608
7608
)
7609
-
python_version: Optional[str] = Field(
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.""",
7612
-
)
7613
-
requirements_gcs_uri: Optional[str] = Field(
7614
-
default=None,
7615
-
description="""Optional. The Cloud Storage URI of the `requirements.txt` file""",
7616
-
)
7609
+
python_version: Optional[str] = Field(
7610
+
default=None,
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
+
)
7613
+
requirements_gcs_uri: Optional[str] = Field(
7614
+
default=None,
7615
+
description="""Optional. The Cloud Storage URI of the `requirements.txt` file""",
7616
+
)
7617
7617
7618
7618
7619
7619
class ReasoningEngineSpecPackageSpecDict(TypedDict, total=False):
7620
-
"""User-provided package specification, containing pickled object and package requirements."""
7620
+
"""User-provided package specification, containing pickled object and package requirements."""
7621
7621
7622
-
dependency_files_gcs_uri: Optional[str]
7623
-
"""Optional. The Cloud Storage URI of the dependency files in tar.gz format."""
7622
+
dependency_files_gcs_uri: Optional[str]
7623
+
"""Optional. The Cloud Storage URI of the dependency files in tar.gz format."""
7624
7624
7625
-
pickle_object_gcs_uri: Optional[str]
7626
-
"""Optional. The Cloud Storage URI of the pickled python object."""
7625
+
pickle_object_gcs_uri: Optional[str]
7626
+
"""Optional. The Cloud Storage URI of the pickled python object."""
7627
7627
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."""
7628
+
python_version: Optional[str]
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
-
requirements_gcs_uri: Optional[str]
7632
-
"""Optional. The Cloud Storage URI of the `requirements.txt` file"""
7631
+
requirements_gcs_uri: Optional[str]
7632
+
"""Optional. The Cloud Storage URI of the `requirements.txt` file"""
7633
7633
7634
7634
7635
7635
ReasoningEngineSpecPackageSpecOrDict = Union[
@@ -7804,40 +7804,40 @@ class ReasoningEngineSpecSourceCodeSpecImageSpecDict(TypedDict, total=False):
7804
7804
7805
7805
7806
7806
class ReasoningEngineSpecSourceCodeSpecPythonSpec(_common.BaseModel):
7807
-
"""Specification for running a Python application from source."""
7807
+
"""Specification for running a Python application from source."""
7808
7808
7809
-
entrypoint_module: Optional[str] = Field(
7809
+
entrypoint_module: Optional[str] = Field(
7810
7810
default=None,
7811
7811
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`.""",
7812
7812
)
7813
-
entrypoint_object: Optional[str] = Field(
7813
+
entrypoint_object: Optional[str] = Field(
7814
7814
default=None,
7815
7815
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`.""",
7816
7816
)
7817
-
requirements_file: Optional[str] = Field(
7817
+
requirements_file: Optional[str] = Field(
7818
7818
default=None,
7819
7819
description="""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt".""",
7820
7820
)
7821
-
version: Optional[str] = Field(
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.""",
7824
-
)
7821
+
version: Optional[str] = Field(
7822
+
default=None,
7823
+
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.""",
7824
+
)
7825
7825
7826
7826
7827
7827
class ReasoningEngineSpecSourceCodeSpecPythonSpecDict(TypedDict, total=False):
7828
-
"""Specification for running a Python application from source."""
7828
+
"""Specification for running a Python application from source."""
7829
7829
7830
-
entrypoint_module: Optional[str]
7831
-
"""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`."""
7830
+
entrypoint_module: Optional[str]
7831
+
"""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`."""
7832
7832
7833
-
entrypoint_object: Optional[str]
7834
-
"""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`."""
7833
+
entrypoint_object: Optional[str]
7834
+
"""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`."""
7835
7835
7836
-
requirements_file: Optional[str]
7837
-
"""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt"."""
7836
+
requirements_file: Optional[str]
7837
+
"""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt"."""
7838
7838
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."""
7839
+
version: Optional[str]
7840
+
"""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