Spaces:
Sleeping
Sleeping
Commit ·
09eebbe
1
Parent(s): df8c0e4
Fix Static Mount
Browse files
app.py
CHANGED
|
@@ -7,7 +7,7 @@ import uuid
|
|
| 7 |
from pathlib import Path
|
| 8 |
|
| 9 |
app = FastAPI()
|
| 10 |
-
app.mount("/static", StaticFiles(directory="
|
| 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)
|