Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
tloen/alpaca-lora
sagu7
/
alpaca-lora
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sagu7
commited on
Apr 9, 2023
Commit
40e75ca
·
1 Parent(s):
a01cdff
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
CHANGED
Viewed
@@ -64,3 +64,8 @@ def generate_prompt(instruction, input=None):
64
65
### Response:"""
66
64
65
### Response:"""
66
67
+
68
+
if __name__ == "__main__":
69
+
import uvicorn
70
+
uvicorn.run(app, host="0.0.0.0", port=7860)
71
+