InnoLink commited on
Commit
9fd7f10
·
verified ·
1 Parent(s): 31787a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
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)