missvector commited on
Commit
09eebbe
·
1 Parent(s): df8c0e4

Fix Static Mount

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import uuid
7
  from pathlib import Path
8
 
9
  app = FastAPI()
10
- app.mount("/static", StaticFiles(directory="./static"), name="static")
11
  model = whisper.load_model("base")
12
 
13
  @app.get("/", response_class=HTMLResponse)
 
7
  from pathlib import Path
8
 
9
  app = FastAPI()
10
+ app.mount("/static", StaticFiles(directory="static"), name="static")
11
  model = whisper.load_model("base")
12
 
13
  @app.get("/", response_class=HTMLResponse)