Skip to content

Commit 661d9bb

Browse files
yeesiancopybara-github
authored andcommitted
feat: Add typing alias for models and their parameters
Testing for #4701 PiperOrigin-RevId: 704506046
1 parent 1b2457f commit 661d9bb

File tree

6 files changed

+51
-18
lines changed

6 files changed

+51
-18
lines changed

.github/sync-repo-settings.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ branchProtectionRules:
2222
- 'Presubmit - Unit Tests Python 3.11'
2323
- 'Presubmit - Unit Tests Python 3.12'
2424
- 'Presubmit - Unit Tests Ray 2.9.3'
25-
- 'Presubmit - Unit Tests LangChain (Python 3.8)'
2625
- 'Presubmit - Unit Tests LangChain (Python 3.9)'
2726
- 'Presubmit - Unit Tests LangChain (Python 3.10)'
2827
- 'Presubmit - Unit Tests LangChain (Python 3.11)'

.kokoro/presubmit/unit_langchain_py38.cfg

-13
This file was deleted.

noxfile.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
)
5353

5454
UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
55+
UNIT_TEST_LANGCHAIN_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
5556
UNIT_TEST_STANDARD_DEPENDENCIES = [
5657
"mock",
5758
"asyncmock",
@@ -275,7 +276,7 @@ def unit_ray(session, ray):
275276
)
276277

277278

278-
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
279+
@nox.session(python=UNIT_TEST_LANGCHAIN_PYTHON_VERSIONS)
279280
def unit_langchain(session):
280281
# Install all test dependencies, then install this package in-place.
281282

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123

124124
genai_requires = (
125125
"pydantic < 3",
126+
"typing_extensions",
126127
"docstring_parser < 1",
127128
)
128129

@@ -143,7 +144,8 @@
143144
"google-cloud-trace < 2",
144145
"opentelemetry-sdk < 2",
145146
"opentelemetry-exporter-gcp-trace < 2",
146-
"pydantic >= 2.6.3, < 2.10",
147+
"pydantic >= 2.6.3, < 3",
148+
"typing_extensions",
147149
]
148150

149151
evaluation_extra_require = [

testing/constraints-langchain.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
langchain
22
langchain-core
3-
langchain-google-vertexai
4-
pydantic<2.10
3+
langchain-google-vertexai

vertexai/generative_models/_generative_models.py

+45
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,51 @@
117117
],
118118
]
119119

120+
try:
121+
# For Pydantic to resolve the forward references inside these aliases.
122+
from typing_extensions import TypeAliasType
123+
124+
PartsType = TypeAliasType(
125+
"PartsType",
126+
Union[
127+
str,
128+
"Image",
129+
"Part",
130+
List[Union[str, "Image", "Part"]],
131+
],
132+
)
133+
ContentsType = TypeAliasType(
134+
"ContentsType",
135+
Union[
136+
List["Content"],
137+
List[ContentDict],
138+
str,
139+
"Image",
140+
"Part",
141+
List[Union[str, "Image", "Part"]],
142+
],
143+
)
144+
GenerationConfigType = TypeAliasType(
145+
"GenerationConfigType",
146+
Union[
147+
"GenerationConfig",
148+
GenerationConfigDict,
149+
],
150+
)
151+
SafetySettingsType = TypeAliasType(
152+
"SafetySettingsType",
153+
Union[
154+
List["SafetySetting"],
155+
Dict[
156+
gapic_content_types.HarmCategory,
157+
gapic_content_types.SafetySetting.HarmBlockThreshold,
158+
],
159+
],
160+
)
161+
except ImportError:
162+
# Use existing definitions if typing_extensions is not available.
163+
pass
164+
120165

121166
def _reconcile_model_name(model_name: str, project: str, location: str) -> str:
122167
"""Returns a model name that's one of the following:

0 commit comments

Comments
 (0)