Skip to content

Commit

Permalink
Added missing apiKey, and model params
Browse files Browse the repository at this point in the history
  • Loading branch information
shermanhuman committed Jan 14, 2025
1 parent 83996a4 commit feee07e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions gui/src/pages/AddNewModel/configs/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -806,36 +806,39 @@ export const models: { [key: string]: ModelPackage } = {
title: "Gemini 2.0 Flash Experimental",
description: "Experimental version of Gemini 2.0 Flash with improved performance",
params: {
title: "Gemini 2.0 Flash Experimental",
model: "gemini-2.0-flash-exp",
contextLength: 1_048_576,
title: "Gemini 2.0 Flash Experimental",
apiKey: "<API_KEY>",
},
providerOptions: ["gemini"],
icon: "gemini.png",
providerOptions: ["gemini"],
isOpenSource: false,
},
gemini20FlashThinkingExp: {
title: "Gemini 2.0 Flash Thinking Experimental",
description: "Experimental version of Gemini 2.0 Flash optimized for reasoning tasks",
params: {
title: "Gemini 2.0 Flash Thinking Experimental",
model: "gemini-2.0-flash-thinking-exp",
contextLength: 32_767,
title: "Gemini 2.0 Flash Thinking Experimental",
apiKey: "<API_KEY>",
},
providerOptions: ["gemini"],
icon: "gemini.png",
providerOptions: ["gemini"],
isOpenSource: false,
},
geminiExp1206: {
title: "Gemini Experimental 1206",
description: "Experimental release (December 6th, 2024) of Gemini with extended context",
params: {
title: "Gemini Experimental 1206",
model: "gemini-exp-1206",
contextLength: 2_097_152,
title: "Gemini Experimental 1206",
apiKey: "<API_KEY>",
},
providerOptions: ["gemini"],
icon: "gemini.png",
providerOptions: ["gemini"],
isOpenSource: false,
},
commandR: {
Expand Down

0 comments on commit feee07e

Please sign in to comment.