mateoluksenberg commited on
Commit
0911bc8
·
verified ·
1 Parent(s): 9ebe610

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -10,6 +10,11 @@ import pymupdf
10
  import docx
11
  from pptx import Presentation
12
 
 
 
 
 
 
13
 
14
  MODEL_LIST = ["nikravan/glm-4vq"]
15
 
 
10
  import docx
11
  from pptx import Presentation
12
 
13
+ from fastapi import FastAPI, File, UploadFile, HTTPException
14
+ from fastapi.responses import HTMLResponse
15
+
16
+ app = FastAPI()
17
+
18
 
19
  MODEL_LIST = ["nikravan/glm-4vq"]
20