Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function main() {
apiKey: process.env.GEMINI_API_KEY || GOOGLE_API_KEY
})
],
model: googleAI.model('gemini-2.0-flash'),
model: googleAI.model('gemini-2.5-flash'),
});

const toolboxTools = await toolboxClient.loadToolset("my-toolset");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const queries = [

export async function main() {
const model = new ChatGoogleGenerativeAI({
model: "gemini-2.0-flash",
model: "gemini-2.5-flash",
});

const client = new ToolboxClient("http://127.0.0.1:5000");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export async function main() {

// Initialize LLM
const llm = gemini({
model: GEMINI_MODEL.GEMINI_2_0_FLASH,
model: GEMINI_MODEL.GEMINI_2_5_FLASH_LATEST,
apiKey: GOOGLE_API_KEY,
});

Expand Down
Loading