memorysync 1.6.0__tar.gz → 1.7.0__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.
- {memorysync-1.6.0 → memorysync-1.7.0}/PKG-INFO +7 -2
- {memorysync-1.6.0 → memorysync-1.7.0}/pyproject.toml +20 -2
- memorysync-1.7.0/src/memorysync/_version.py +1 -0
- memorysync-1.6.0/src/memorysync/_version.py +0 -1
- {memorysync-1.6.0 → memorysync-1.7.0}/.gitignore +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/LICENSE +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/README.md +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/src/memorysync/__init__.py +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/src/memorysync/client.py +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/src/memorysync/connections.py +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/src/memorysync/control_plane.py +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/src/memorysync/control_plane_types.py +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/src/memorysync/errors.py +0 -0
- {memorysync-1.6.0 → memorysync-1.7.0}/src/memorysync/types.py +0 -0
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: memorysync
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7.0
|
|
4
4
|
Summary: Official Python client for the MemorySync API.
|
|
5
5
|
Project-URL: Homepage, https://memorysync.io
|
|
6
6
|
Project-URL: Documentation, https://docs.memorysync.io
|
|
7
|
+
Project-URL: API Reference, https://docs.memorysync.io/api/overview
|
|
8
|
+
Project-URL: Quickstart, https://docs.memorysync.io/sdks/python/overview
|
|
9
|
+
Project-URL: Changelog, https://docs.memorysync.io/release-notes
|
|
10
|
+
Project-URL: Support, https://docs.memorysync.io/debugging/support
|
|
11
|
+
Project-URL: Status, https://status.memorysync.io
|
|
7
12
|
Author: MemorySync
|
|
8
13
|
License: MIT
|
|
9
14
|
License-File: LICENSE
|
|
10
|
-
Keywords: client,memory,memorysync,sdk
|
|
15
|
+
Keywords: agent-memory,ai,ai-agents,client,context,llm,long-term-memory,memory,memorysync,rag,retrieval,sdk
|
|
11
16
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
17
|
Classifier: Intended Audience :: Developers
|
|
13
18
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -4,13 +4,26 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "memorysync"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.7.0"
|
|
8
8
|
description = "Official Python client for the MemorySync API."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
11
11
|
requires-python = ">=3.9"
|
|
12
12
|
authors = [{ name = "MemorySync" }]
|
|
13
|
-
keywords = [
|
|
13
|
+
keywords = [
|
|
14
|
+
"memorysync",
|
|
15
|
+
"memory",
|
|
16
|
+
"sdk",
|
|
17
|
+
"client",
|
|
18
|
+
"ai",
|
|
19
|
+
"llm",
|
|
20
|
+
"agent-memory",
|
|
21
|
+
"long-term-memory",
|
|
22
|
+
"context",
|
|
23
|
+
"retrieval",
|
|
24
|
+
"rag",
|
|
25
|
+
"ai-agents",
|
|
26
|
+
]
|
|
14
27
|
classifiers = [
|
|
15
28
|
"Development Status :: 5 - Production/Stable",
|
|
16
29
|
"Intended Audience :: Developers",
|
|
@@ -31,6 +44,11 @@ dependencies = [
|
|
|
31
44
|
[project.urls]
|
|
32
45
|
Homepage = "https://memorysync.io"
|
|
33
46
|
Documentation = "https://docs.memorysync.io"
|
|
47
|
+
"API Reference" = "https://docs.memorysync.io/api/overview"
|
|
48
|
+
Quickstart = "https://docs.memorysync.io/sdks/python/overview"
|
|
49
|
+
Changelog = "https://docs.memorysync.io/release-notes"
|
|
50
|
+
Support = "https://docs.memorysync.io/debugging/support"
|
|
51
|
+
Status = "https://status.memorysync.io"
|
|
34
52
|
|
|
35
53
|
[tool.hatch.build.targets.wheel]
|
|
36
54
|
packages = ["src/memorysync"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.7.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.6.0"
|
|
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
|