Results 7 comments of Aditya

Use this code: ``` from crewai_tools.tools import SerperDevTool ```

> I've noticed that KeyError: 'tools' was popping out when I include run() method to the tool. > > Sample tool code : my_query = "Some query which needs to...

> tool = PDFSearchTool(pdf='path/to/your/document.pdf') I am trying the same way, still the issue persists. from crewai_tools.tools import PDFSearchTool pdf_search_tool = PDFSearchTool(pdf='../data/CBSE 8 Science.pdf') tools = values["tools"] ~~~~~~^^^^^^^^^ KeyError: 'tools'

> y removing that line I am not using tools in task but using in agents. Example for agent: Please correct the code: topic_extractor = Agent( role='Topic Extractor', goal='Extract the...

> Do your other agents have this configured: > > `tools = []` Changed all the agents like `x.tools.append(abcd)`

Faced the same issue: Banana-4_jpg.rf.e7ab025d4785f0ab4ff667d0fe2f3ded Traceback (most recent call last): File "/content/draw-YOLO-box/draw_box.py", line 106, in box_num = draw_box_on_image( File "/content/draw-YOLO-box/draw_box.py", line 66, in draw_box_on_image plot_one_box([x1, y1, x2, y2], image, color=colors[class_idx],...

Where is this 'with_progress' function called?