Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AkshayaKeerthi
/
OnlineRAG
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f8b30fa
OnlineRAG
/
app.py
AkshayaKeerthi
Update app.py
a62d1a3
verified
10 months ago
raw
Copy download link
history
blame
Safe
159 Bytes
import
sys
from
PySide2.QtWidgets
import
QApplication, QLabel
app = QApplication(sys.argv)
label = QLabel(
"Hello, PySide!"
)
label.show()
sys.exit(app.exec_())