Shalani08 commited on
Commit
ab5fe15
·
verified ·
1 Parent(s): 351880b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -8,8 +8,12 @@ import os
8
  from io import BytesIO
9
  import tempfile
10
 
 
 
 
 
 
11
 
12
- app = FastAPI()
13
 
14
  MODEL_REPO = "Shalani08/cellpose_3.1.1_finetuned"
15
 
 
8
  from io import BytesIO
9
  import tempfile
10
 
11
+ app = FastAPI(
12
+ title="Cellpose API",
13
+ docs_url="/docs",
14
+ redoc_url=None
15
+ )
16
 
 
17
 
18
  MODEL_REPO = "Shalani08/cellpose_3.1.1_finetuned"
19