vishalbakshi commited on
Commit
e0f7486
·
1 Parent(s): 4d88116

add some html to / get route

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ app = FastAPI()
4
 
5
  @app.get("/")
6
  def read_root():
7
- return {"message": "Hello World"}
8
 
9
  if __name__ == "__main__":
10
  import uvicorn
 
4
 
5
  @app.get("/")
6
  def read_root():
7
+ return "<p>This is a model inference point for the <a href='https://huggingface.co/spaces/vishalbakshi/isitadigit'>isitadigit</a> space</p>"
8
 
9
  if __name__ == "__main__":
10
  import uvicorn