Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
hiyouga/LLaMA-Board
Nymbo
/
LLaMA-Board
like
0
Runtime error
App
Files
Files
Community
hiyouga
commited on
Nov 15, 2023
Commit
c43ff02
•
1 Parent(s):
238917e
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-1
app.py
CHANGED
Viewed
@@ -1,3 +1,6 @@
1
from llmtuner import create_ui
2
3
-
create_ui().queue().launch()
1
from llmtuner import create_ui
2
3
+
4
+
if __name__ == "__main__":
5
+
demo = create_ui()
6
+
demo.launch()