Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -24,5 +24,10 @@ app.mount("/static", StaticFiles(directory="static"), name="static")
|
|
| 24 |
def index() -> FileResponse:
|
| 25 |
return FileResponse(path="/app/static/index.html", media_type="text/html")
|
| 26 |
|
|
|
|
| 27 |
#dataset = load_dataset('glue', 'mrpc')
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
def index() -> FileResponse:
|
| 25 |
return FileResponse(path="/app/static/index.html", media_type="text/html")
|
| 26 |
|
| 27 |
+
## line-6
|
| 28 |
#dataset = load_dataset('glue', 'mrpc')
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
#In app.py, define models/endpoints for /signup
|
| 32 |
+
#(hash passwords with bcrypt—add bcrypt==4.2.0),
|
| 33 |
+
#/login (JWT auth via fastapi-jwt-auth or built-in)
|