Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -59,6 +59,7 @@ def compute_word_overlap(query, questions):
|
|
| 59 |
return overlaps
|
| 60 |
|
| 61 |
def predict(text):
|
|
|
|
| 62 |
if not text or text.strip() == "":
|
| 63 |
return "No query provided"
|
| 64 |
|
|
|
|
| 59 |
return overlaps
|
| 60 |
|
| 61 |
def predict(text):
|
| 62 |
+
print(f"Received POST data: {text}")
|
| 63 |
if not text or text.strip() == "":
|
| 64 |
return "No query provided"
|
| 65 |
|