supermemory 3.2.0__py3-none-any.whl → 3.4.0__py3-none-any.whl
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.
Potentially problematic release.
This version of supermemory might be problematic. Click here for more details.
- supermemory/_version.py +1 -1
- supermemory/resources/documents.py +18 -52
- supermemory/resources/memories.py +18 -52
- supermemory/types/__init__.py +1 -0
- supermemory/types/connection_get_by_id_response.py +2 -3
- supermemory/types/connection_get_by_tags_response.py +2 -3
- supermemory/types/connection_list_response.py +2 -3
- supermemory/types/document_add_params.py +0 -14
- supermemory/types/document_get_response.py +5 -6
- supermemory/types/document_list_params.py +6 -71
- supermemory/types/document_list_response.py +4 -5
- supermemory/types/document_update_params.py +0 -14
- supermemory/types/document_upload_file_params.py +11 -3
- supermemory/types/memory_add_params.py +0 -14
- supermemory/types/memory_get_response.py +5 -6
- supermemory/types/memory_list_params.py +6 -71
- supermemory/types/memory_list_response.py +4 -5
- supermemory/types/memory_update_params.py +0 -14
- supermemory/types/memory_upload_file_params.py +11 -3
- supermemory/types/search_documents_params.py +5 -70
- supermemory/types/search_documents_response.py +2 -3
- supermemory/types/search_execute_params.py +5 -70
- supermemory/types/search_execute_response.py +2 -3
- supermemory/types/search_memories_params.py +6 -72
- supermemory/types/search_memories_response.py +5 -6
- supermemory/types/shared/__init__.py +4 -0
- supermemory/types/shared/and_.py +13 -0
- supermemory/types/shared/or_.py +13 -0
- supermemory/types/shared_params/__init__.py +4 -0
- supermemory/types/shared_params/and_.py +14 -0
- supermemory/types/shared_params/or_.py +14 -0
- {supermemory-3.2.0.dist-info → supermemory-3.4.0.dist-info}/METADATA +1 -1
- {supermemory-3.2.0.dist-info → supermemory-3.4.0.dist-info}/RECORD +35 -29
- {supermemory-3.2.0.dist-info → supermemory-3.4.0.dist-info}/WHEEL +0 -0
- {supermemory-3.2.0.dist-info → supermemory-3.4.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,26 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Union
|
|
6
|
-
from typing_extensions import
|
|
5
|
+
from typing import Union
|
|
6
|
+
from typing_extensions import Required, Annotated, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
8
|
from .._utils import PropertyInfo
|
|
9
|
+
from .shared_params.or_ import Or
|
|
10
|
+
from .shared_params.and_ import And
|
|
9
11
|
|
|
10
|
-
__all__ = [
|
|
11
|
-
"SearchMemoriesParams",
|
|
12
|
-
"Filters",
|
|
13
|
-
"FiltersOr",
|
|
14
|
-
"FiltersOrOr",
|
|
15
|
-
"FiltersOrOrUnionMember0",
|
|
16
|
-
"FiltersOrOrOr",
|
|
17
|
-
"FiltersOrOrAnd",
|
|
18
|
-
"FiltersAnd",
|
|
19
|
-
"FiltersAndAnd",
|
|
20
|
-
"FiltersAndAndUnionMember0",
|
|
21
|
-
"FiltersAndAndOr",
|
|
22
|
-
"FiltersAndAndAnd",
|
|
23
|
-
"Include",
|
|
24
|
-
]
|
|
12
|
+
__all__ = ["SearchMemoriesParams", "Filters", "Include"]
|
|
25
13
|
|
|
26
14
|
|
|
27
15
|
class SearchMemoriesParams(TypedDict, total=False):
|
|
@@ -63,61 +51,7 @@ class SearchMemoriesParams(TypedDict, total=False):
|
|
|
63
51
|
"""
|
|
64
52
|
|
|
65
53
|
|
|
66
|
-
|
|
67
|
-
key: Required[str]
|
|
68
|
-
|
|
69
|
-
value: Required[str]
|
|
70
|
-
|
|
71
|
-
filter_type: Annotated[Literal["metadata", "numeric", "array_contains"], PropertyInfo(alias="filterType")]
|
|
72
|
-
|
|
73
|
-
negate: Union[bool, Literal["true", "false"]]
|
|
74
|
-
|
|
75
|
-
numeric_operator: Annotated[Literal[">", "<", ">=", "<=", "="], PropertyInfo(alias="numericOperator")]
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
class FiltersOrOrOr(TypedDict, total=False):
|
|
79
|
-
or_: Required[Annotated[Iterable[object], PropertyInfo(alias="OR")]]
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
class FiltersOrOrAnd(TypedDict, total=False):
|
|
83
|
-
and_: Required[Annotated[Iterable[object], PropertyInfo(alias="AND")]]
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
FiltersOrOr: TypeAlias = Union[FiltersOrOrUnionMember0, FiltersOrOrOr, FiltersOrOrAnd]
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
class FiltersOr(TypedDict, total=False):
|
|
90
|
-
or_: Required[Annotated[Iterable[FiltersOrOr], PropertyInfo(alias="OR")]]
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
class FiltersAndAndUnionMember0(TypedDict, total=False):
|
|
94
|
-
key: Required[str]
|
|
95
|
-
|
|
96
|
-
value: Required[str]
|
|
97
|
-
|
|
98
|
-
filter_type: Annotated[Literal["metadata", "numeric", "array_contains"], PropertyInfo(alias="filterType")]
|
|
99
|
-
|
|
100
|
-
negate: Union[bool, Literal["true", "false"]]
|
|
101
|
-
|
|
102
|
-
numeric_operator: Annotated[Literal[">", "<", ">=", "<=", "="], PropertyInfo(alias="numericOperator")]
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
class FiltersAndAndOr(TypedDict, total=False):
|
|
106
|
-
or_: Required[Annotated[Iterable[object], PropertyInfo(alias="OR")]]
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
class FiltersAndAndAnd(TypedDict, total=False):
|
|
110
|
-
and_: Required[Annotated[Iterable[object], PropertyInfo(alias="AND")]]
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
FiltersAndAnd: TypeAlias = Union[FiltersAndAndUnionMember0, FiltersAndAndOr, FiltersAndAndAnd]
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
class FiltersAnd(TypedDict, total=False):
|
|
117
|
-
and_: Required[Annotated[Iterable[FiltersAndAnd], PropertyInfo(alias="AND")]]
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
Filters: TypeAlias = Union[FiltersOr, FiltersAnd]
|
|
54
|
+
Filters: TypeAlias = Union[Or, And]
|
|
121
55
|
|
|
122
56
|
|
|
123
57
|
class Include(TypedDict, total=False):
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
from typing import Dict, List, Optional
|
|
4
|
-
from datetime import datetime
|
|
5
4
|
from typing_extensions import Literal
|
|
6
5
|
|
|
7
6
|
from pydantic import Field as FieldInfo
|
|
@@ -25,7 +24,7 @@ class ResultContextChild(BaseModel):
|
|
|
25
24
|
relation: Literal["updates", "extends", "derives"]
|
|
26
25
|
"""Relation type between this memory and its parent/child"""
|
|
27
26
|
|
|
28
|
-
updated_at:
|
|
27
|
+
updated_at: str = FieldInfo(alias="updatedAt")
|
|
29
28
|
"""Contextual memory last update date"""
|
|
30
29
|
|
|
31
30
|
metadata: Optional[Dict[str, object]] = None
|
|
@@ -45,7 +44,7 @@ class ResultContextParent(BaseModel):
|
|
|
45
44
|
relation: Literal["updates", "extends", "derives"]
|
|
46
45
|
"""Relation type between this memory and its parent/child"""
|
|
47
46
|
|
|
48
|
-
updated_at:
|
|
47
|
+
updated_at: str = FieldInfo(alias="updatedAt")
|
|
49
48
|
"""Contextual memory last update date"""
|
|
50
49
|
|
|
51
50
|
metadata: Optional[Dict[str, object]] = None
|
|
@@ -68,10 +67,10 @@ class ResultDocument(BaseModel):
|
|
|
68
67
|
id: str
|
|
69
68
|
"""Document ID"""
|
|
70
69
|
|
|
71
|
-
created_at:
|
|
70
|
+
created_at: str = FieldInfo(alias="createdAt")
|
|
72
71
|
"""Document creation date"""
|
|
73
72
|
|
|
74
|
-
updated_at:
|
|
73
|
+
updated_at: str = FieldInfo(alias="updatedAt")
|
|
75
74
|
"""Document last update date"""
|
|
76
75
|
|
|
77
76
|
metadata: Optional[Dict[str, object]] = None
|
|
@@ -100,7 +99,7 @@ class Result(BaseModel):
|
|
|
100
99
|
similarity: float
|
|
101
100
|
"""Similarity score between the query and memory entry"""
|
|
102
101
|
|
|
103
|
-
updated_at:
|
|
102
|
+
updated_at: str = FieldInfo(alias="updatedAt")
|
|
104
103
|
"""Memory last update date"""
|
|
105
104
|
|
|
106
105
|
context: Optional[ResultContext] = None
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
from pydantic import Field as FieldInfo
|
|
6
|
+
|
|
7
|
+
from ..._models import BaseModel
|
|
8
|
+
|
|
9
|
+
__all__ = ["And"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class And(BaseModel):
|
|
13
|
+
and_: List[object] = FieldInfo(alias="AND")
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
from pydantic import Field as FieldInfo
|
|
6
|
+
|
|
7
|
+
from ..._models import BaseModel
|
|
8
|
+
|
|
9
|
+
__all__ = ["Or"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Or(BaseModel):
|
|
13
|
+
or_: List[object] = FieldInfo(alias="OR")
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Iterable
|
|
6
|
+
from typing_extensions import Required, Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
from ..._utils import PropertyInfo
|
|
9
|
+
|
|
10
|
+
__all__ = ["And"]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class And(TypedDict, total=False):
|
|
14
|
+
and_: Required[Annotated[Iterable[object], PropertyInfo(alias="AND")]]
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Iterable
|
|
6
|
+
from typing_extensions import Required, Annotated, TypedDict
|
|
7
|
+
|
|
8
|
+
from ..._utils import PropertyInfo
|
|
9
|
+
|
|
10
|
+
__all__ = ["Or"]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Or(TypedDict, total=False):
|
|
14
|
+
or_: Required[Annotated[Iterable[object], PropertyInfo(alias="OR")]]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: supermemory
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.4.0
|
|
4
4
|
Summary: The official Python library for the supermemory API
|
|
5
5
|
Project-URL: Homepage, https://github.com/supermemoryai/python-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/supermemoryai/python-sdk
|
|
@@ -11,7 +11,7 @@ supermemory/_resource.py,sha256=_wuaB1exMy-l-qqdJJdTv15hH5qBSN2Rj9CFwjXTZJU,1130
|
|
|
11
11
|
supermemory/_response.py,sha256=Yh869-U8INkojKZHFsNw69z5Y2BrK2isgRJ8mifEURM,28848
|
|
12
12
|
supermemory/_streaming.py,sha256=MGbosxSTqq0_JG52hvH2Z-Mr_Y95ws5UdFw77_iYukc,10120
|
|
13
13
|
supermemory/_types.py,sha256=KHnNDTZJ8YzCPCGZTNkEXcpiWp7FdH9skhEaOQb9uMM,7241
|
|
14
|
-
supermemory/_version.py,sha256=
|
|
14
|
+
supermemory/_version.py,sha256=4dZrADU0S3L1BbIjzoR-LZNvjW1OI27C-_fSHToplws,163
|
|
15
15
|
supermemory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
supermemory/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
supermemory/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -28,53 +28,59 @@ supermemory/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,
|
|
|
28
28
|
supermemory/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
29
29
|
supermemory/resources/__init__.py,sha256=qLgw280drj5DMESoNQyiaS6fO-NMC4hq3jcdFvLu3Hs,2508
|
|
30
30
|
supermemory/resources/connections.py,sha256=U5FHDjkSJsMN4gAeA40MULns0L-rYMFwkBF7pv5WOJg,33207
|
|
31
|
-
supermemory/resources/documents.py,sha256=
|
|
32
|
-
supermemory/resources/memories.py,sha256=
|
|
31
|
+
supermemory/resources/documents.py,sha256=jLEjkvntmNvi4eKp6kfgd7oSnw3MErKdlbK2lSjQ1fE,35420
|
|
32
|
+
supermemory/resources/memories.py,sha256=hEz1UoZ4kzsY31OtJUI--wzZQq4J1VQKNTemUDyLJDA,35260
|
|
33
33
|
supermemory/resources/search.py,sha256=SJ2b3JKOmm6kDVUCvF4htQr7Uq33bX0ro98l9zILXys,28245
|
|
34
34
|
supermemory/resources/settings.py,sha256=WLDupwUkhBb8IH2G7P0tOwr3wqFHKotQ99cDkOJ8Nq4,11823
|
|
35
|
-
supermemory/types/__init__.py,sha256=
|
|
35
|
+
supermemory/types/__init__.py,sha256=vCr2q6U_6SOpwQ5RUsLc_97tL7tCKjl-DaNOnKr2WJk,3755
|
|
36
36
|
supermemory/types/connection_create_params.py,sha256=nhbXyd7hLyh7AuH4JrdfeWmiCj1H3YV22ycZzu4ggmk,670
|
|
37
37
|
supermemory/types/connection_create_response.py,sha256=i4sb0DSRs7wVVd8xDBOtr7vw-YbaeZ7MydlQLYvlvJs,468
|
|
38
38
|
supermemory/types/connection_delete_by_id_response.py,sha256=guD1vxqV2wiQnwnWCZSQH0z2HYXQOtvicRzouPVkHXA,243
|
|
39
39
|
supermemory/types/connection_delete_by_provider_params.py,sha256=inmWn18C-FCevq-mcsIRzcHwT5BEcH9LqOrlifBtnSQ,550
|
|
40
40
|
supermemory/types/connection_delete_by_provider_response.py,sha256=PgMQuSIhVFSF2LVa0FBei2bj3gyVRB7FyOi_-M-Rugc,255
|
|
41
|
-
supermemory/types/connection_get_by_id_response.py,sha256=
|
|
41
|
+
supermemory/types/connection_get_by_id_response.py,sha256=Pk-eN3Kdj80OVcfBquDaHEUK2sCDaXHrmn_Z0OUvYpI,610
|
|
42
42
|
supermemory/types/connection_get_by_tags_params.py,sha256=c8u58EaxhEZrCERMix5H3lkVJqud0DIHd2Vsc8-mhok,526
|
|
43
|
-
supermemory/types/connection_get_by_tags_response.py,sha256=
|
|
43
|
+
supermemory/types/connection_get_by_tags_response.py,sha256=ri7XYyl8b71fJocgEfBgkf2JetbpLX7KSGpNbL8GH6M,614
|
|
44
44
|
supermemory/types/connection_import_params.py,sha256=mUIuaeXLJe14_6vuFizs9sG_csibvQmn6eAdPll3pjA,510
|
|
45
45
|
supermemory/types/connection_import_response.py,sha256=W3Jn98_wmYGSAr4H553uoiutdWL49-myc6MDa0mFEog,210
|
|
46
46
|
supermemory/types/connection_list_documents_params.py,sha256=MBKSgfdV-Gx02DpV4ENk2ME8F1bz2JcXd7j6sYbooIk,522
|
|
47
47
|
supermemory/types/connection_list_documents_response.py,sha256=0IdHufx0yErjfmoXYeY0KJ2QID9C-_58joyGEuu8gd4,682
|
|
48
48
|
supermemory/types/connection_list_params.py,sha256=hg7wKFASpFqDnJ3Kycyziajimvx1p2q2fKJqfexxTF8,504
|
|
49
|
-
supermemory/types/connection_list_response.py,sha256=
|
|
50
|
-
supermemory/types/document_add_params.py,sha256=
|
|
49
|
+
supermemory/types/connection_list_response.py,sha256=04XgComodVr8WK-PQ_E23zl08E4MCnQqf_c2x3ruEEM,755
|
|
50
|
+
supermemory/types/document_add_params.py,sha256=w-8c96s-EU2TGhsnd6Hu7TCOttoTUJuZJ7hYHlrYgxQ,1912
|
|
51
51
|
supermemory/types/document_add_response.py,sha256=kqz2X221UJseeuCB-9GIcNHLLJ60UB-5E0_CDnbPr3g,223
|
|
52
|
-
supermemory/types/document_get_response.py,sha256=
|
|
53
|
-
supermemory/types/document_list_params.py,sha256=
|
|
54
|
-
supermemory/types/document_list_response.py,sha256=
|
|
55
|
-
supermemory/types/document_update_params.py,sha256=
|
|
52
|
+
supermemory/types/document_get_response.py,sha256=_tLT0JT6CPn66yeaW7HrTU8acKvyvZhJwpj0Y9qZwS0,3162
|
|
53
|
+
supermemory/types/document_list_params.py,sha256=MxBpY5OYPT8GEYFFDTummA2LyM3LLP1yDsaK9zX8uRo,1339
|
|
54
|
+
supermemory/types/document_list_response.py,sha256=woYPTp69NG_9wke7wGCMvL7W6b7biP09_sLiXbl3-8U,2742
|
|
55
|
+
supermemory/types/document_update_params.py,sha256=5C6k4AGybnLF3nM9jFD7w_vjOSjhpY04bAG3H_8kEoA,1898
|
|
56
56
|
supermemory/types/document_update_response.py,sha256=JHZEFINrQogslaqr0lYs1QJIFNY7Gb660SIJ54c6DBE,229
|
|
57
|
-
supermemory/types/document_upload_file_params.py,sha256=
|
|
57
|
+
supermemory/types/document_upload_file_params.py,sha256=ACCzgluc5K5VMIr4-3ojhYEO-WmxElLsZ1PPvJSn1-E,1450
|
|
58
58
|
supermemory/types/document_upload_file_response.py,sha256=vIhqRvnbqO6WGKTcAbPEkYF4Ai25gGQtzPd534yH8I8,237
|
|
59
|
-
supermemory/types/memory_add_params.py,sha256=
|
|
59
|
+
supermemory/types/memory_add_params.py,sha256=f7gA0HFnFN1LUW4nFJNAp2WkGf9QeQVfVSZ1JL5iThE,1908
|
|
60
60
|
supermemory/types/memory_add_response.py,sha256=5lim8sVXM7WzG8tUuKORHEe2lJc6yVWvyjylzNsLGjw,219
|
|
61
|
-
supermemory/types/memory_get_response.py,sha256=
|
|
62
|
-
supermemory/types/memory_list_params.py,sha256=
|
|
63
|
-
supermemory/types/memory_list_response.py,sha256=
|
|
64
|
-
supermemory/types/memory_update_params.py,sha256=
|
|
61
|
+
supermemory/types/memory_get_response.py,sha256=L6SghhNGIVVMPw9Dge0y6PFyWDG4qY-lsccYthgpQCo,3158
|
|
62
|
+
supermemory/types/memory_list_params.py,sha256=6QrTtl1-8BbtdAedd8Y2YclVpBjmA8hNm4VswM18HhI,1335
|
|
63
|
+
supermemory/types/memory_list_response.py,sha256=JfLKS2fkjQ8sTRGvutYkBoj9TFavXviTrC6Pf2W3kRU,2738
|
|
64
|
+
supermemory/types/memory_update_params.py,sha256=qHC1iCX7-lUdgsUzIoysltyHtRquMmg2Z5GfKr4uu3I,1894
|
|
65
65
|
supermemory/types/memory_update_response.py,sha256=fvfO9lGM8xv2EUOQfOSxqig6fx6-ykq7syW69er_2ng,225
|
|
66
|
-
supermemory/types/memory_upload_file_params.py,sha256=
|
|
66
|
+
supermemory/types/memory_upload_file_params.py,sha256=5iS-wKc0DUmNEpU1QqKi93u-AFRpXRuUBO6oALIeZto,1446
|
|
67
67
|
supermemory/types/memory_upload_file_response.py,sha256=KTq6AExBMz7eMt8az1TgMSSNMTktKk0d0xItCwHRNl0,233
|
|
68
|
-
supermemory/types/search_documents_params.py,sha256=
|
|
69
|
-
supermemory/types/search_documents_response.py,sha256=
|
|
70
|
-
supermemory/types/search_execute_params.py,sha256=
|
|
71
|
-
supermemory/types/search_execute_response.py,sha256=
|
|
72
|
-
supermemory/types/search_memories_params.py,sha256=
|
|
73
|
-
supermemory/types/search_memories_response.py,sha256=
|
|
68
|
+
supermemory/types/search_documents_params.py,sha256=cwnVrYQ_qmaep2AwbWfqKTvxSnrrd2ATaKKO1p7LRxk,3038
|
|
69
|
+
supermemory/types/search_documents_response.py,sha256=UTqPu0qLynNA5Me-IAUK-cSZkLey2tjrJ94vc35IwzQ,1424
|
|
70
|
+
supermemory/types/search_execute_params.py,sha256=io-6Vi6UWneeiXNc2gPVcSavQXbYoVNY0VdLsHJpthc,3034
|
|
71
|
+
supermemory/types/search_execute_response.py,sha256=gVDFlfvI6qRr2hFqb1BnjMfLMoA7NnrmMHDCokW268U,1420
|
|
72
|
+
supermemory/types/search_memories_params.py,sha256=I6_HDnyYgP4nftl1vUWs9RdqSKePFojPUS-j8LqW_50,1984
|
|
73
|
+
supermemory/types/search_memories_response.py,sha256=7BX6qYfmASMWrZONoLEikeQFf1P14jR41rK7LlkiZt0,3233
|
|
74
74
|
supermemory/types/setting_get_response.py,sha256=S-I64GR4hnmA8MLzI9Px7Al9Ele9pCkDiGiXiKhKhkg,1724
|
|
75
75
|
supermemory/types/setting_update_params.py,sha256=3-NcmbhcYesDDw0DC80DuEv_TVF54O45tk0RXjyKAog,1785
|
|
76
76
|
supermemory/types/setting_update_response.py,sha256=4xXuerIZl6KJjHsvk0l-02Sz3LoYqJfa3IbLiuvuaHE,1882
|
|
77
|
-
supermemory
|
|
78
|
-
supermemory
|
|
79
|
-
supermemory
|
|
80
|
-
supermemory
|
|
77
|
+
supermemory/types/shared/__init__.py,sha256=Fxi3Gsi4dk9GwmwSAewf39y3mJ9MoUnJbDD0jz24eNY,142
|
|
78
|
+
supermemory/types/shared/and_.py,sha256=j0PxvpJdP1f4WzWHcYo1zebqSIRb_QmlLFj_h_8dngY,277
|
|
79
|
+
supermemory/types/shared/or_.py,sha256=NjSH13yBpLkma2aP2EANh--jIFvafXi5paQqCt6iEKA,273
|
|
80
|
+
supermemory/types/shared_params/__init__.py,sha256=Fxi3Gsi4dk9GwmwSAewf39y3mJ9MoUnJbDD0jz24eNY,142
|
|
81
|
+
supermemory/types/shared_params/and_.py,sha256=g33olByWJTD6I1wNQ1BNA8hLYUYwzpNHj_Zp6NMIQiA,379
|
|
82
|
+
supermemory/types/shared_params/or_.py,sha256=FsjD8Tz7ppn_9V7FqdiZ4yMiLQmXEoTeUqAqnuFdLaA,375
|
|
83
|
+
supermemory-3.4.0.dist-info/METADATA,sha256=kIoT5yry6sGd5CcLeF7ncp3GEv73hydrVq7XRDVnL4Q,15072
|
|
84
|
+
supermemory-3.4.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
85
|
+
supermemory-3.4.0.dist-info/licenses/LICENSE,sha256=M2NcpYEBpakciOULpWzo-xO2Lincf74gGwfaU00Sct0,11341
|
|
86
|
+
supermemory-3.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|