Skip to content

Commit

Permalink
Added Gemini
Browse files Browse the repository at this point in the history
  • Loading branch information
valnoxy committed Aug 20, 2024
1 parent 6a4b98e commit f52e893
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions GoAwayEdge/Common/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public enum AiProvider
{
Copilot,
ChatGPT,
Gemini,
Custom
}

Expand Down
3 changes: 3 additions & 0 deletions GoAwayEdge/UserInterface/CopilotDock/CopilotDock.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f52e893

Please sign in to comment.