Patch gemini dropdown to model id since names are wrong for the different versions

connect 
This commit is contained in:
timothycarambat 2024-12-28 17:27:32 -08:00
parent dca27e7235
commit 2149fb709a

View file

@ -122,7 +122,7 @@ function GeminiModelSelection({ apiKey, settings }) {
value={model.id}
selected={settings?.GeminiLLMModelPref === model.id}
>
{model.name}
{model.id}
</option>
))}
</optgroup>