Katya Beresneva commited on
Commit ·
54d6364
1
Parent(s): 8467a75
fix
Browse files
tools.py
CHANGED
|
@@ -6,21 +6,28 @@ async def kate_search(
|
|
| 6 |
max_results: int = 3
|
| 7 |
) -> dict:
|
| 8 |
"""
|
| 9 |
-
Kate's enhanced search combining multiple sources
|
| 10 |
|
| 11 |
Args:
|
| 12 |
query: Search query
|
| 13 |
max_results: Max results to return
|
| 14 |
-
|
| 15 |
Returns:
|
| 16 |
-
Combined results from Tavily, Wikipedia and Arxiv
|
| 17 |
"""
|
| 18 |
pass
|
| 19 |
|
| 20 |
@tool("analyze-excel-enhanced", parse_docstring=True)
|
| 21 |
async def analyze_excel_enhanced(state: dict, file_path: str) -> str:
|
| 22 |
"""
|
| 23 |
-
Kate's enhanced Excel analyzer with better data processing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
Features:
|
| 26 |
- Improved data validation
|
|
|
|
| 6 |
max_results: int = 3
|
| 7 |
) -> dict:
|
| 8 |
"""
|
| 9 |
+
Kate's enhanced search combining multiple sources.
|
| 10 |
|
| 11 |
Args:
|
| 12 |
query: Search query
|
| 13 |
max_results: Max results to return
|
| 14 |
+
|
| 15 |
Returns:
|
| 16 |
+
dict: Combined results from Tavily, Wikipedia and Arxiv
|
| 17 |
"""
|
| 18 |
pass
|
| 19 |
|
| 20 |
@tool("analyze-excel-enhanced", parse_docstring=True)
|
| 21 |
async def analyze_excel_enhanced(state: dict, file_path: str) -> str:
|
| 22 |
"""
|
| 23 |
+
Kate's enhanced Excel analyzer with better data processing.
|
| 24 |
+
|
| 25 |
+
Args:
|
| 26 |
+
state: Current state dictionary
|
| 27 |
+
file_path: Path to the Excel file
|
| 28 |
+
|
| 29 |
+
Returns:
|
| 30 |
+
str: Analysis results or error message
|
| 31 |
|
| 32 |
Features:
|
| 33 |
- Improved data validation
|