From 5549b14c25e9e02f560c17d93f363add46ad8c77 Mon Sep 17 00:00:00 2001 From: dengrb1 <125752069+dengrb1@users.noreply.github.com> Date: Sat, 29 Apr 2023 10:55:39 +0800 Subject: [PATCH] Update f1.pyw --- f1.pyw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/f1.pyw b/f1.pyw index bbc7eee..b7720aa 100644 --- a/f1.pyw +++ b/f1.pyw @@ -8,9 +8,9 @@ class BrowserWindow(QMainWindow): self.setWindowTitle("AI Browser") self.setGeometry(100, 100, 800, 600) - # Create the QWebEngineView widget and set the URL to "https://f1.nbai.live" + # Create the QWebEngineView widget and set the URL to "https://chat.aiyunos.top" self.web_view = QWebEngineView(self) - self.web_view.load(QUrl("https://f1.nbai.live")) + self.web_view.load(QUrl("https://chat.aiyunos.top")) self.setCentralWidget(self.web_view) # Create the QToolBar widget and add a QAction for the refresh button