anirudhmaddy
anirudhmaddy
@adnanraja I need the same thing. Which part of code should be modified to prevent cropper size change?
I was also looking for the same thing, did you find a solution jpshelley ?
I added these 2 lines in crew.py file to supress the error temporarily. ``` import ssl ssl._create_default_https_context = ssl._create_unverified_context ```
I'm facing the same issue as well. Here is my code ``` from crewai_tools import SerperDevTool, ScrapeWebsiteTool @agent def topic_researcher(self) -> Agent: return Agent( config=self.agents_config['topic_researcher'], tools=[SerperDevTool(), ScrapeWebsiteTool()], ) ``` Error...