From c7f28c44d3072dee968e894fa47ee744dca957e6 Mon Sep 17 00:00:00 2001 From: xa0627-sys Date: Thu, 29 Jan 2026 17:18:43 +0800 Subject: [PATCH] Create clawdbot.json for Google Gemini configuration Add configuration for Google Gemini model with API settings. --- .clawdbot/clawdbot.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .clawdbot/clawdbot.json diff --git a/.clawdbot/clawdbot.json b/.clawdbot/clawdbot.json new file mode 100644 index 000000000..113f35e61 --- /dev/null +++ b/.clawdbot/clawdbot.json @@ -0,0 +1,15 @@ +{ + "primaryModel": "google-gemini", + "googleApiKey": "${GOOGLE_API_KEY}", + "apiEndpoint": "https://generativelanguage.googleapis.com/v1beta/models", + "baseSettings": { + "temperature": 0.7, + "topP": 0.95, + "topK": 40, + "maxOutputTokens": 2048 + }, + "models": { + "default": "gemini-1.5-pro", + "fast": "gemini-1.5-flash" + } +}