memorysync 1.1.0__tar.gz → 1.2.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.1.0 → memorysync-1.2.0}/.gitignore +2 -2
- {memorysync-1.1.0 → memorysync-1.2.0}/PKG-INFO +1 -1
- {memorysync-1.1.0 → memorysync-1.2.0}/pyproject.toml +44 -44
- {memorysync-1.1.0 → memorysync-1.2.0}/src/memorysync/__init__.py +25 -0
- memorysync-1.2.0/src/memorysync/_version.py +1 -0
- memorysync-1.2.0/src/memorysync/client.py +1536 -0
- {memorysync-1.1.0 → memorysync-1.2.0}/src/memorysync/control_plane.py +61 -42
- memorysync-1.2.0/src/memorysync/types.py +446 -0
- memorysync-1.1.0/src/memorysync/_version.py +0 -1
- memorysync-1.1.0/src/memorysync/client.py +0 -752
- memorysync-1.1.0/src/memorysync/types.py +0 -152
- {memorysync-1.1.0 → memorysync-1.2.0}/LICENSE +0 -0
- {memorysync-1.1.0 → memorysync-1.2.0}/README.md +0 -0
- {memorysync-1.1.0 → memorysync-1.2.0}/src/memorysync/control_plane_types.py +0 -0
- {memorysync-1.1.0 → memorysync-1.2.0}/src/memorysync/errors.py +0 -0
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["hatchling"]
|
|
3
|
-
build-backend = "hatchling.build"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "memorysync"
|
|
7
|
-
version = "1.
|
|
8
|
-
description = "Official Python client for the MemorySync API."
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
license = { text = "MIT" }
|
|
11
|
-
requires-python = ">=3.9"
|
|
12
|
-
authors = [{ name = "MemorySync" }]
|
|
13
|
-
keywords = ["memorysync", "memory", "sdk", "client"]
|
|
14
|
-
classifiers = [
|
|
15
|
-
"Development Status :: 5 - Production/Stable",
|
|
16
|
-
"Intended Audience :: Developers",
|
|
17
|
-
"License :: OSI Approved :: MIT License",
|
|
18
|
-
"Programming Language :: Python :: 3",
|
|
19
|
-
"Programming Language :: Python :: 3.9",
|
|
20
|
-
"Programming Language :: Python :: 3.10",
|
|
21
|
-
"Programming Language :: Python :: 3.11",
|
|
22
|
-
"Programming Language :: Python :: 3.12",
|
|
23
|
-
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
24
|
-
"Typing :: Typed",
|
|
25
|
-
]
|
|
26
|
-
dependencies = [
|
|
27
|
-
"httpx>=0.25,<1.0",
|
|
28
|
-
"typing-extensions>=4.5; python_version < '3.11'",
|
|
29
|
-
]
|
|
30
|
-
|
|
31
|
-
[project.urls]
|
|
32
|
-
Homepage = "https://memorysync.io"
|
|
33
|
-
Documentation = "https://docs.memorysync.io"
|
|
34
|
-
|
|
35
|
-
[tool.hatch.build.targets.wheel]
|
|
36
|
-
packages = ["src/memorysync"]
|
|
37
|
-
|
|
38
|
-
[tool.hatch.build.targets.sdist]
|
|
39
|
-
include = [
|
|
40
|
-
"src/memorysync",
|
|
41
|
-
"README.md",
|
|
42
|
-
"LICENSE",
|
|
43
|
-
"pyproject.toml",
|
|
44
|
-
]
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "memorysync"
|
|
7
|
+
version = "1.2.0"
|
|
8
|
+
description = "Official Python client for the MemorySync API."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [{ name = "MemorySync" }]
|
|
13
|
+
keywords = ["memorysync", "memory", "sdk", "client"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 5 - Production/Stable",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.9",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
24
|
+
"Typing :: Typed",
|
|
25
|
+
]
|
|
26
|
+
dependencies = [
|
|
27
|
+
"httpx>=0.25,<1.0",
|
|
28
|
+
"typing-extensions>=4.5; python_version < '3.11'",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://memorysync.io"
|
|
33
|
+
Documentation = "https://docs.memorysync.io"
|
|
34
|
+
|
|
35
|
+
[tool.hatch.build.targets.wheel]
|
|
36
|
+
packages = ["src/memorysync"]
|
|
37
|
+
|
|
38
|
+
[tool.hatch.build.targets.sdist]
|
|
39
|
+
include = [
|
|
40
|
+
"src/memorysync",
|
|
41
|
+
"README.md",
|
|
42
|
+
"LICENSE",
|
|
43
|
+
"pyproject.toml",
|
|
44
|
+
]
|
|
@@ -11,15 +11,27 @@ from .errors import (
|
|
|
11
11
|
)
|
|
12
12
|
from .types import (
|
|
13
13
|
AddSkippedResponse,
|
|
14
|
+
BatchUpdateItem,
|
|
15
|
+
BatchUpdateItemResult,
|
|
16
|
+
BatchUpdateResponse,
|
|
14
17
|
BulkAddItem,
|
|
15
18
|
BulkAddItemResult,
|
|
16
19
|
BulkAddResponse,
|
|
17
20
|
ComposeResponse,
|
|
18
21
|
ExportResponse,
|
|
22
|
+
FeedbackResponse,
|
|
23
|
+
FeedbackSignal,
|
|
24
|
+
FeedbackSummary,
|
|
25
|
+
FeedbackTrend,
|
|
26
|
+
ForgetFilters,
|
|
27
|
+
HistoryResponse,
|
|
19
28
|
Memory,
|
|
29
|
+
Ontology,
|
|
20
30
|
QueryResponse,
|
|
21
31
|
Relation,
|
|
22
32
|
RelationshipType,
|
|
33
|
+
RevisionEntry,
|
|
34
|
+
RevisionEvent,
|
|
23
35
|
)
|
|
24
36
|
from .client import AsyncMemorySyncClient, MemorySyncClient
|
|
25
37
|
from .control_plane import AsyncControlPlaneClient, ControlPlaneClient
|
|
@@ -76,6 +88,19 @@ __all__ = [
|
|
|
76
88
|
"NotFoundError",
|
|
77
89
|
"RateLimitError",
|
|
78
90
|
"ServerError",
|
|
91
|
+
# Phase 1 feature types
|
|
92
|
+
"BatchUpdateItem",
|
|
93
|
+
"BatchUpdateItemResult",
|
|
94
|
+
"BatchUpdateResponse",
|
|
95
|
+
"ForgetFilters",
|
|
96
|
+
"HistoryResponse",
|
|
97
|
+
"RevisionEntry",
|
|
98
|
+
"RevisionEvent",
|
|
99
|
+
"FeedbackResponse",
|
|
100
|
+
"FeedbackSignal",
|
|
101
|
+
"FeedbackSummary",
|
|
102
|
+
"FeedbackTrend",
|
|
103
|
+
"Ontology",
|
|
79
104
|
]
|
|
80
105
|
|
|
81
106
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.2.0"
|