Extra Requests #3869
amitavaghosh2
started this conversation in
General
Extra Requests
#3869
Replies: 1 comment
-
|
The request to app.crewai.com is likely telemetry/analytics being sent by CrewAI. To disable telemetry completely: import os
os.environ["CREWAI_TELEMETRY"] = "false"
# Or in Crew initialization
crew = Crew(
agents=[...],
tasks=[...],
share_crew=False,
telemetry=False, # Explicitly disable
)Environment variable approach: export CREWAI_TELEMETRY=false
export CREWAI_SHARE_CREW=falseWhat the request likely contains:
To verify what is being sent: import logging
logging.getLogger("urllib3").setLevel(logging.DEBUG)
# Run your crew and check the request bodyNetwork-level block (if needed): # /etc/hosts
127.0.0.1 app.crewai.comPrivacy note: We run air-gapped AI systems at Revolution AI — disabling telemetry via environment variable is the cleanest approach. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
2025-11-09 08:29:27,299 - openai._base_client - DEBUG - request_id: req_0eec0308a5e84db398a16ff8b4a416cd
2025-11-09 08:29:27,385 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): app.crewai.com:443
why is this request happening? (share crew is off), I only have 1 crew, with reasoning=True
Beta Was this translation helpful? Give feedback.
All reactions