Skip to content

Commit c24eaea

Browse files
committed
bug #973 Fix model name for Gemini 3 preview (Guite)
This PR was squashed before being merged into the main branch. Discussion ---------- Fix model name for Gemini 3 preview | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | Fix 404 error | License | MIT Source of change: https://ai.google.dev/gemini-api/docs/gemini-3?hl=en Commits ------- e5fa64c Fix model name for Gemini 3 preview
2 parents f2c4b0c + e5fa64c commit c24eaea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/platform/src/Bridge/Gemini/ModelCatalog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ final class ModelCatalog extends AbstractModelCatalog
2525
public function __construct(array $additionalModels = [])
2626
{
2727
$defaultModels = [
28-
'gemini-3.0-pro-preview' => [
28+
'gemini-3-pro-preview' => [
2929
'class' => Gemini::class,
3030
'capabilities' => [
3131
Capability::INPUT_MESSAGES,

src/platform/src/Bridge/VertexAi/ModelCatalog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct(array $additionalModels = [])
3232
{
3333
$defaultModels = [
3434
// Gemini models
35-
'gemini-3.0-pro-preview' => [
35+
'gemini-3-pro-preview' => [
3636
'class' => Gemini::class,
3737
'capabilities' => [
3838
Capability::INPUT_MESSAGES,

0 commit comments

Comments
 (0)