Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from pmbl import PMBL
|
|
7 |
app = FastAPI()
|
8 |
pmbl = PMBL("./PMB-7b.Q6_K.gguf") # Replace with the path to your model
|
9 |
|
10 |
-
templates = Jinja2Templates(directory="
|
11 |
|
12 |
@app.post("/chat")
|
13 |
async def chat(request: Request):
|
|
|
7 |
app = FastAPI()
|
8 |
pmbl = PMBL("./PMB-7b.Q6_K.gguf") # Replace with the path to your model
|
9 |
|
10 |
+
templates = Jinja2Templates(directory=".")
|
11 |
|
12 |
@app.post("/chat")
|
13 |
async def chat(request: Request):
|