I am getting this crewai limit issue!
ERROR:crewai.telemetry.telemetry:HTTPSConnectionPool(host='telemetry.crewai.com', port=4319): Max retries exceeded with url: /v1/traces (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden')))
Why, and how to solve?
Hi there CrewAI is trying to send telemetry (traces) to telemetry.crewai.com over HTTPS. Its likely your network is blocking access to that domain. You have two options allow the domain telemetry.crewai.com for your network or 2. Put this at the start of your code import os
os.environ[“CREWAI_TELEMETRY”] = “false”