VinogradovAI commited on
Commit
754ea08
·
verified ·
1 Parent(s): 1c5d844

Update tools/excel_tool.py

Browse files
Files changed (1) hide show
  1. tools/excel_tool.py +1 -1
tools/excel_tool.py CHANGED
@@ -9,7 +9,7 @@ class ExcelTool(BaseTool):
9
  Если задан только file_url, возвращает сумму всех числовых значений.
10
  """
11
  name: str = "excel_tool"
12
- description: str = (Load and analyze Excel (.xls/.xlsx) files. Use for computing totals, filtering rows, summarizing sales data, or any spreadsheet-based calculation.)
13
 
14
  def _run(self, input: str) -> str:
15
  parts = [p.strip() for p in input.split(',') if p.strip()]
 
9
  Если задан только file_url, возвращает сумму всех числовых значений.
10
  """
11
  name: str = "excel_tool"
12
+ description: str = ("Load and analyze Excel (.xls/.xlsx) files. Use for computing totals, filtering rows, summarizing sales data, or any spreadsheet-based calculation.")
13
 
14
  def _run(self, input: str) -> str:
15
  parts = [p.strip() for p in input.split(',') if p.strip()]