Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -619,11 +619,9 @@ class SuperSmartAgent:
|
|
| 619 |
for row in table[1:]:
|
| 620 |
row_text = ' '.join(row).lower()
|
| 621 |
if any(phrase.lower() in row_text for phrase in key_phrases):
|
| 622 |
-
relevant_rows.append(row
|
| 623 |
|
| 624 |
|
| 625 |
-
|
| 626 |
-
|
| 627 |
|
| 628 |
class AgentState(TypedDict, total=False):
|
| 629 |
question: str
|
|
|
|
| 619 |
for row in table[1:]:
|
| 620 |
row_text = ' '.join(row).lower()
|
| 621 |
if any(phrase.lower() in row_text for phrase in key_phrases):
|
| 622 |
+
relevant_rows.append(row)
|
| 623 |
|
| 624 |
|
|
|
|
|
|
|
| 625 |
|
| 626 |
class AgentState(TypedDict, total=False):
|
| 627 |
question: str
|