yourmemory 1.4.44__tar.gz → 1.4.45__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {yourmemory-1.4.44 → yourmemory-1.4.45}/PKG-INFO +1 -1
- {yourmemory-1.4.44 → yourmemory-1.4.45}/memory_mcp.py +3 -3
- {yourmemory-1.4.44 → yourmemory-1.4.45}/pyproject.toml +1 -1
- {yourmemory-1.4.44 → yourmemory-1.4.45}/yourmemory.egg-info/PKG-INFO +1 -1
- {yourmemory-1.4.44 → yourmemory-1.4.45}/LICENSE +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/README.md +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/setup.cfg +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/__init__.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/app.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/db/connection.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/db/duckdb_schema.sql +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/db/migrate.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/db/schema.sql +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/db/sqlite_schema.sql +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/graph/__init__.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/graph/backend.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/graph/graph_store.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/graph/neo4j_backend.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/graph/networkx_backend.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/graph/svo_extract.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/jobs/decay_job.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/routes/__init__.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/routes/agents.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/routes/graph_viz.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/routes/memories.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/routes/retrieve.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/routes/ui.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/__init__.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/agent_registry.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/api_keys.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/decay.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/embed.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/extract.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/extract_fallback.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/resolve.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/resolve_fallback.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/retrieve.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/session.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/temporal.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/src/services/utils.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/tests/test_features.py +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/yourmemory.egg-info/SOURCES.txt +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/yourmemory.egg-info/dependency_links.txt +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/yourmemory.egg-info/entry_points.txt +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/yourmemory.egg-info/requires.txt +0 -0
- {yourmemory-1.4.44 → yourmemory-1.4.45}/yourmemory.egg-info/top_level.txt +0 -0
|
@@ -990,14 +990,14 @@ def _write_mcp_config(path: str, mcp_entry: dict, client_name: str) -> bool:
|
|
|
990
990
|
return False
|
|
991
991
|
|
|
992
992
|
|
|
993
|
-
_TELEMETRY_ENDPOINT = "https://
|
|
993
|
+
_TELEMETRY_ENDPOINT = "https://yourmemory-backend.yourmemoryai.workers.dev"
|
|
994
994
|
|
|
995
995
|
|
|
996
996
|
_EMAIL_PATH = os.path.join(os.path.expanduser("~"), ".yourmemory", "user_email")
|
|
997
997
|
_VERIFIED_PATH = os.path.join(os.path.expanduser("~"), ".yourmemory", "verified")
|
|
998
998
|
_TOKEN_PATH = os.path.join(os.path.expanduser("~"), ".yourmemory", "token")
|
|
999
|
-
_REGISTER_ENDPOINT = "https://
|
|
1000
|
-
_VERIFY_ENDPOINT = "https://
|
|
999
|
+
_REGISTER_ENDPOINT = "https://yourmemory-backend.yourmemoryai.workers.dev/register"
|
|
1000
|
+
_VERIFY_ENDPOINT = "https://yourmemory-backend.yourmemoryai.workers.dev/verify-token"
|
|
1001
1001
|
|
|
1002
1002
|
|
|
1003
1003
|
def register():
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "yourmemory"
|
|
7
|
-
version = "1.4.
|
|
7
|
+
version = "1.4.45"
|
|
8
8
|
description = "Persistent memory for Claude — Ebbinghaus forgetting curve, semantic deduplication, MCP-native"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|