jsvs commited on
Commit
9b833b1
·
1 Parent(s): 8728130

update app file

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -13,6 +13,9 @@ model="visoc/Text2Question")
13
  # The generate() function is defined as a FastAPI route that takes a
14
  # string parameter called text. The function generates text based on the # input using the pipeline() object, and returns a JSON response
15
  # containing the generated text under the key "output"
 
 
 
16
  @app.get("/generate")
17
  def generate(text: str):
18
  """
 
13
  # The generate() function is defined as a FastAPI route that takes a
14
  # string parameter called text. The function generates text based on the # input using the pipeline() object, and returns a JSON response
15
  # containing the generated text under the key "output"
16
+ @app.get("/")
17
+ def read_root():
18
+ return {"Hello": "World!"}
19
  @app.get("/generate")
20
  def generate(text: str):
21
  """