Lasdw commited on
Commit
411c122
·
1 Parent(s): 12b5985

updated rate limiter display 3

Browse files
Files changed (1) hide show
  1. agent.py +3 -3
agent.py CHANGED
@@ -65,9 +65,9 @@ Specifically, this json should have an `action` key (with the name of the tool t
65
 
66
  The only values that should be in the "action" field are:
67
  python_code: Execute Python code. Use this tool to calculate math problems. make sure to use prints to be able to view the final result. args: {"code": {"type": "string"}}
68
- wikipedia_search: Search Wikipedia for information about a specific topic. Optionally specify the number of results to return, args: {"query": {"type": "string"}, "num_results": {"type": "integer", "optional": true}}
69
- tavily_search: Search the web using Tavily. Optionally specify search_depth as 'basic' or 'comprehensive', args: {"query": {"type": "string"}, "search_depth": {"type": "string", "optional": true}}
70
- arxiv_search: Search ArXiv for publications,news and other resources. Optionally specify max_results to control the number of papers returned, args: {"query": {"type": "string"}, "max_results": {"type": "integer", "optional": true}}
71
  webpage_scrape: Scrape a specific webpage, args: {"url": {"type": "string"}}
72
  supabase_operation: Perform database operations, args: {"operation_type": {"type": "string"}, "table": {"type": "string"}, "data": {"type": "object", "optional": true}, "filters": {"type": "object", "optional": true}}
73
  excel_to_text: Convert Excel to Markdown table with attachment, args: {"excel_path": {"type": "string"}, "file_content": {"type": "string"}, "sheet_name": {"type": "string", "optional": true}}
 
65
 
66
  The only values that should be in the "action" field are:
67
  python_code: Execute Python code. Use this tool to calculate math problems. make sure to use prints to be able to view the final result. args: {"code": {"type": "string"}}
68
+ wikipedia_search: Search Wikipedia for information about a specific topic. DO NOT use Wikipedia Search for basic questions that you can answer using your internal knowledge. Optionally specify the number of results to return, args: {"query": {"type": "string"}, "num_results": {"type": "integer", "optional": true}}
69
+ tavily_search: Search the web using Tavily. Optionally specify search_depth as 'basic' or 'comprehensive'. DO NOT use Tavily Search for basic questions that you can answer using your internal knowledge. args: {"query": {"type": "string"}, "search_depth": {"type": "string", "optional": true}}
70
+ arxiv_search: Search ArXiv for publications,news and other resources. DO NOT use Arxiv Search for basic questions that you can answer using your internal knowledge. Optionally specify max_results to control the number of papers returned, args: {"query": {"type": "string"}, "max_results": {"type": "integer", "optional": true}}
71
  webpage_scrape: Scrape a specific webpage, args: {"url": {"type": "string"}}
72
  supabase_operation: Perform database operations, args: {"operation_type": {"type": "string"}, "table": {"type": "string"}, "data": {"type": "object", "optional": true}, "filters": {"type": "object", "optional": true}}
73
  excel_to_text: Convert Excel to Markdown table with attachment, args: {"excel_path": {"type": "string"}, "file_content": {"type": "string"}, "sheet_name": {"type": "string", "optional": true}}