OnlineRAG / app.py
AkshayaKeerthi's picture
Update app.py
a62d1a3 verified
raw
history blame
159 Bytes
import sys
from PySide2.QtWidgets import QApplication, QLabel
app = QApplication(sys.argv)
label = QLabel("Hello, PySide!")
label.show()
sys.exit(app.exec_())