Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion gpt_engineer/applications/cli/collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ def send_learning(learning: Learning):
improving gpt-engineer, and letting it handle more use cases.
Consent logic is in gpt_engineer/learning.py.
"""
import rudderstack.analytics as rudder_analytics
try:
import rudderstack.analytics as rudder_analytics
except ImportError:
return

rudder_analytics.write_key = "2Re4kqwL61GDp7S8ewe6K5dbogG"
rudder_analytics.dataPlaneUrl = "https://gptengineerezm.dataplane.rudderstack.com"
Expand Down
Loading