mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-23 00:41:40 +00:00
11 lines
258 B
Python
11 lines
258 B
Python
from base_google_test import BaseGoogleGenAITest
|
|
|
|
|
|
class TestVertexAIGenerateContent(BaseGoogleGenAITest):
|
|
"""Test Vertex AI"""
|
|
|
|
@property
|
|
def model_config(self):
|
|
return {
|
|
"model": "vertex_ai/gemini-2.5-flash-lite",
|
|
}
|