From 77ea821e31f22ae13fef3e245ef0c4a5786a57d8 Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Sun, 8 Dec 2024 15:29:07 +0100 Subject: [PATCH] plugins: Add googleai and gemini to gp --- plugins-full.vim.example | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/plugins-full.vim.example b/plugins-full.vim.example index 3fbb226..40e35a7 100644 --- a/plugins-full.vim.example +++ b/plugins-full.vim.example @@ -189,8 +189,36 @@ function PluginsConfigFull() "-c", "cat ~/.config/github-copilot/apps.json | sed -e 's/.*oauth_token...//;s/\".*//'", }, - } - } + }, + googleai = { + -- disable = true, + endpoint = "https://generativelanguage.googleapis.com/v1beta/models/{{model}}:streamGenerateContent?key={{secret}}", + secret = os.getenv("GOOGLEAI_API_KEY"), + }, + }, + agents = { + { + provider = "copilot", + name = "ChatCopilot", + chat = true, + command = false, + -- string with model name or table with model name and parameters + model = { model = "gpt-4o", temperature = 1.1, top_p = 1 }, + -- system prompt (use this to specify the persona/role of the AI) + system_prompt = require("gp.defaults").chat_system_prompt, + }, + { + provider = "googleai", + name = "ChatGemini", + chat = true, + command = false, + -- string with model name or table with model name and parameters + model = { model = "gemini-pro", temperature = 1.1, top_p = 1 }, + -- system prompt (use this to specify the persona/role of the AI) + system_prompt = require("gp.defaults").chat_system_prompt, + }, + + }, }) vim.api.nvim_create_user_command("Calculate", "lua require(\"calculator\").calculate()", -- 2.39.5