kirbah commited on
Commit
489f584
·
1 Parent(s): 65dc764

Remove redundant code

Browse files
Files changed (1) hide show
  1. basic_agent.py +0 -9
basic_agent.py CHANGED
@@ -65,15 +65,6 @@ class BasicAgent:
65
  api_base="http://127.0.0.1:4000"
66
  )
67
 
68
- # Simplified and generic tool descriptions
69
- python_tool_description = (
70
- "Executes Python code. This is vital for calculations, data manipulation, "
71
- "or accessing content of local files. If 'File Information' (provided with the question) "
72
- f"gives a local path for a file (e.g., '{os.path.join(self.files_dir_for_prompt_context, "example_task_file.ext")}'), "
73
- "you MUST use this tool to open and process that file using its full, exact path. "
74
- "Output from `print()` in your code will be returned. Ensure code is self-contained."
75
- )
76
-
77
  agent_tools = [
78
  get_youtube_video_transcript,
79
  get_csv_data_summary,
 
65
  api_base="http://127.0.0.1:4000"
66
  )
67
 
 
 
 
 
 
 
 
 
 
68
  agent_tools = [
69
  get_youtube_video_transcript,
70
  get_csv_data_summary,