Skip to content

Commit

Permalink
Merge branch 'COG-595-optional-dependencies' of github.com:topoterete…
Browse files Browse the repository at this point in the history
…s/cognee into COG-595-optional-dependencies
  • Loading branch information
dexters1 committed Dec 2, 2024
2 parents dcb320d + 19c83a5 commit ec65354
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cognee/shared/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import pathlib

# Analytics Proxy Url, currently hosted by Vercel
vercel_url = "https://proxyanalytics.vercel.app"
proxy_url = "https://test.prometh.ai"

def get_anonymous_id():
"""Creates or reads a anonymous user id"""
Expand Down Expand Up @@ -57,7 +57,7 @@ def send_telemetry(event_name: str, user_id, additional_properties: dict = {}):
},
}

response = requests.post(vercel_url, json=payload)
response = requests.post(proxy_url, json=payload)

if response.status_code != 200:
print(f"Error sending telemetry through proxy: {response.status_code}")
Expand Down

0 comments on commit ec65354

Please sign in to comment.