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