Sonu313131 commited on
Commit
2dabbd5
·
verified ·
1 Parent(s): 38ebc65

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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
- "excel": {
73
- "type": "file",
74
- "description": "The Excel (.xlsx) file to summarize"
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: