mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-25 08:48:13 +02:00
fix: remove gemini 2.0 flash from supported models
This commit is contained in:
parent
ca598933ef
commit
1e5e556a4d
6 changed files with 22 additions and 11 deletions
|
|
@ -132,7 +132,7 @@ async def test_byok_realtime_validator_does_not_require_stt_or_tts():
|
|||
"llm": {
|
||||
"provider": "google",
|
||||
"api_key": "google-llm-key",
|
||||
"model": "gemini-2.0-flash",
|
||||
"model": "gemini-2.5-flash",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
@ -154,7 +154,7 @@ async def test_pipeline_validator_requires_stt_and_tts_when_not_realtime():
|
|||
llm=GoogleLLMService(
|
||||
provider="google",
|
||||
api_key="google-llm-key",
|
||||
model="gemini-2.0-flash",
|
||||
model="gemini-2.5-flash",
|
||||
),
|
||||
realtime=GoogleRealtimeLLMConfiguration(
|
||||
provider="google_realtime",
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class TestMaskedKeyRejection:
|
|||
"llm": {
|
||||
"provider": "google",
|
||||
"api_key": MASKED_KEY,
|
||||
"model": "gemini-2.0-flash",
|
||||
"model": "gemini-2.5-flash",
|
||||
}
|
||||
},
|
||||
)
|
||||
|
|
@ -97,7 +97,7 @@ class TestMaskedKeyRejection:
|
|||
"llm": {
|
||||
"provider": "google",
|
||||
"api_key": ["AIzaSyRealKey123456", MASKED_KEY],
|
||||
"model": "gemini-2.0-flash",
|
||||
"model": "gemini-2.5-flash",
|
||||
}
|
||||
},
|
||||
)
|
||||
|
|
@ -115,7 +115,7 @@ class TestMaskedKeyRejection:
|
|||
llm=GoogleLLMService(
|
||||
provider="google",
|
||||
api_key=new_key,
|
||||
model="gemini-2.0-flash",
|
||||
model="gemini-2.5-flash",
|
||||
)
|
||||
)
|
||||
|
||||
|
|
@ -135,7 +135,7 @@ class TestMaskedKeyRejection:
|
|||
"llm": {
|
||||
"provider": "google",
|
||||
"api_key": new_key,
|
||||
"model": "gemini-2.0-flash",
|
||||
"model": "gemini-2.5-flash",
|
||||
}
|
||||
},
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue