From cd37ecb564bd17719ce2639bb453afd5a76280c6 Mon Sep 17 00:00:00 2001 From: Shah Hussain Date: Mon, 8 Jun 2026 12:24:30 +0500 Subject: [PATCH] =?UTF-8?q?fix(domain):=20getmnemo.xyz=20=E2=86=92=20mnemo?= =?UTF-8?q?hq.com=20(post-cutover=20dead-domain=20repoint)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 6 +++--- src/mnemo/client.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 12baca9..48d3ace 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "Python SDK for Mnemo Memory — long-term memory infrastructure f readme = "README.md" license = { text = "MIT" } requires-python = ">=3.9" -authors = [{ name = "Mnemo", email = "founders@getmnemo.xyz" }] +authors = [{ name = "Mnemo", email = "founders@mnemohq.com" }] keywords = ["memory", "llm", "agents", "rag", "vector", "longmemeval"] classifiers = [ "Development Status :: 3 - Alpha", @@ -43,8 +43,8 @@ dev = [ ] [project.urls] -Homepage = "https://getmnemo.xyz" -Documentation = "https://getmnemo.xyz/docs" +Homepage = "https://mnemohq.com" +Documentation = "https://mnemohq.com/docs" Repository = "https://github.com/getmnemo/getmnemo-python" Issues = "https://github.com/getmnemo/getmnemo-python/issues" diff --git a/src/mnemo/client.py b/src/mnemo/client.py index 41e79b9..b1b9a48 100644 --- a/src/mnemo/client.py +++ b/src/mnemo/client.py @@ -19,7 +19,7 @@ from .errors import MnemoHTTPError from .models import Memory, PaginatedMemories, SearchResponse -_DEFAULT_BASE_URL = "https://api.getmnemo.xyz" +_DEFAULT_BASE_URL = "https://api.mnemohq.com" _DEFAULT_TIMEOUT = 30.0 _USER_AGENT = "getmnemo-python/0.1.0" _DEFAULT_MAX_RETRIES = 3