heymenn commited on
Commit
f08b9d8
·
verified ·
1 Parent(s): a245552

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,5 +16,5 @@ class OutputData(BaseModel):
16
 
17
  @app.post("/process", response_model=OutputData)
18
  async def process(data: InputData):
19
- result = process_input(data, global_tech, global_tech_embedding)
20
  return {"technologies": result}
 
16
 
17
  @app.post("/process", response_model=OutputData)
18
  async def process(data: InputData):
19
+ result = process_input(data, global_tech, global_tech_embeddings)
20
  return {"technologies": result}