From f52e8939fda50d1a1afd8ad56c46f0accf56da60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20G=C3=BCnner?= Date: Tue, 20 Aug 2024 12:27:41 +0200 Subject: [PATCH] Added Gemini --- GoAwayEdge/Common/Configuration.cs | 1 + GoAwayEdge/UserInterface/CopilotDock/CopilotDock.xaml.cs | 3 +++ 2 files changed, 4 insertions(+) diff --git a/GoAwayEdge/Common/Configuration.cs b/GoAwayEdge/Common/Configuration.cs index 7ed42b0..be60eec 100644 --- a/GoAwayEdge/Common/Configuration.cs +++ b/GoAwayEdge/Common/Configuration.cs @@ -23,6 +23,7 @@ public enum AiProvider { Copilot, ChatGPT, + Gemini, Custom } diff --git a/GoAwayEdge/UserInterface/CopilotDock/CopilotDock.xaml.cs b/GoAwayEdge/UserInterface/CopilotDock/CopilotDock.xaml.cs index bf1b258..40d3229 100644 --- a/GoAwayEdge/UserInterface/CopilotDock/CopilotDock.xaml.cs +++ b/GoAwayEdge/UserInterface/CopilotDock/CopilotDock.xaml.cs @@ -38,6 +38,9 @@ private async Task InitializeWebViewAsync() case ChatGPT: WebView.Source = new Uri("https://chatgpt.com/"); break; + case Gemini: + WebView.Source = new Uri("https://gemini.google.com/"); + break; case Custom: if (Configuration.CustomProviderUrl != null) WebView.Source = new Uri(Configuration.CustomProviderUrl);