Update app.py
Browse files
app.py
CHANGED
@@ -69,11 +69,12 @@ class ExcelReaderTool(Tool):
|
|
69 |
name = "excel_reader"
|
70 |
description = "Reads uploaded Excel file and summarizes sheet data."
|
71 |
inputs = {
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
}
|
76 |
}
|
|
|
77 |
output_type = "string"
|
78 |
|
79 |
def forward(self, excel) -> str:
|
|
|
69 |
name = "excel_reader"
|
70 |
description = "Reads uploaded Excel file and summarizes sheet data."
|
71 |
inputs = {
|
72 |
+
"excel": {
|
73 |
+
"type": "any", # was "file"
|
74 |
+
"description": "The Excel (.xlsx) file to summarize"
|
75 |
}
|
76 |
}
|
77 |
+
|
78 |
output_type = "string"
|
79 |
|
80 |
def forward(self, excel) -> str:
|