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);