Update app.py
Browse files
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="
|
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 |
|