Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test case that called gcp_corp_access. #350

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions langfun/core/llms/vertexai_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ def test_model_hub(self):
model,
)

@mock.patch.object(vertexai.VertexAIRest, 'credentials', new=True)
def test_project_and_location_check(self):
with self.assertRaisesRegex(ValueError, 'Please specify `project`'):
_ = vertexai.VertexAIGeminiPro1()._api_initialized
Expand Down Expand Up @@ -496,6 +497,7 @@ def test_generation_config(self):
lf.LMSamplingOptions(),
)

@mock.patch.object(vertexai.VertexAIRest, 'credentials', new=True)
def test_call_model(self):
with mock.patch('requests.Session.post') as mock_generate:
mock_generate.side_effect = mock_requests_post
Expand Down
Loading