Sergidev commited on
Commit
718e836
1 Parent(s): a30aa8d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import os
8
  app = FastAPI()
9
  pmbl = PMBL("./PMB-7b.Q6_K.gguf") # Replace with the path to your model
10
 
11
- app.mount("/", StaticFiles(directory="."), name="static")
12
 
13
  templates = Jinja2Templates(directory=".")
14
 
 
8
  app = FastAPI()
9
  pmbl = PMBL("./PMB-7b.Q6_K.gguf") # Replace with the path to your model
10
 
11
+ app.mount("/", StaticFiles(directory="static"), name="static")
12
 
13
  templates = Jinja2Templates(directory=".")
14