We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56252e8 commit 24cc24eCopy full SHA for 24cc24e
tests/system/vertexai/test_prompts.py
@@ -189,5 +189,7 @@ def test_get_prompt_with_function_calling(self):
189
assert prompt.tools
190
191
# Generate content using the prompt
192
- response = prompt.generate_content(contents=prompt.assemble_contents())
+ response = prompt.generate_content(
193
+ model_name="gemini-1.5-pro-002", contents=prompt.assemble_contents()
194
+ )
195
assert response
tests/system/vertexai/test_tokenization.py
@@ -41,10 +41,6 @@
41
42
43
_MODELS = [
44
- "gemini-1.0-pro",
45
- "gemini-1.5-pro",
46
- "gemini-1.5-flash",
47
- "gemini-1.5-flash-002",
48
"gemini-1.5-pro-002",
49
]
50
_CORPUS = [
0 commit comments