Spaces:
Runtime error
Runtime error
Commit ·
9aff6be
1
Parent(s): 92c7ec3
Bug fix
Browse files- queryHelperManager.py +1 -1
queryHelperManager.py
CHANGED
|
@@ -45,7 +45,7 @@ class QueryHelper:
|
|
| 45 |
for table in prospectTablesAndCols.keys():
|
| 46 |
# filteredData[table] = sampleData[table][prospectTablesAndCols[table]]
|
| 47 |
#take all columns of prospects
|
| 48 |
-
filteredData[table] = sampleData[table]
|
| 49 |
return filteredData
|
| 50 |
|
| 51 |
def getQueryForUserInput(self, userInput, chatHistory=[]):
|
|
|
|
| 45 |
for table in prospectTablesAndCols.keys():
|
| 46 |
# filteredData[table] = sampleData[table][prospectTablesAndCols[table]]
|
| 47 |
#take all columns of prospects
|
| 48 |
+
filteredData[table] = sampleData[table][prospectTablesAndCols[table]]
|
| 49 |
return filteredData
|
| 50 |
|
| 51 |
def getQueryForUserInput(self, userInput, chatHistory=[]):
|