Update f1.pyw

This commit is contained in:
dengrb1
2023-04-29 10:55:39 +08:00
committed by GitHub
parent 55eb0e074f
commit 5549b14c25

4
f1.pyw
View File

@@ -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