Update app.py
Browse files
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,
|
| 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}
|