gemini retries

This commit is contained in:
Shawn Morreau
2025-11-26 15:14:18 -05:00
parent 4ff547f673
commit eaa35168ea
3 changed files with 49 additions and 20 deletions
+2 -2
View File
@@ -144,12 +144,12 @@ const messageHandlers = {
export const gemini = agent({
name: "gemini",
install: async () => {
install: async (githubInstallationToken?: string) => {
return await installFromGithub({
owner: "google-gemini",
repo: "gemini-cli",
tag: "v0.16.0",
assetName: "gemini.js",
...(githubInstallationToken && { githubInstallationToken }),
});
},
run: async ({ payload, apiKey, mcpServers, githubInstallationToken, cliPath }) => {