supermemory 3.1.0__py3-none-any.whl → 3.2.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/settings.py +4 -0
- supermemory/types/setting_get_response.py +2 -0
- supermemory/types/setting_update_params.py +2 -0
- supermemory/types/setting_update_response.py +2 -0
- {supermemory-3.1.0.dist-info → supermemory-3.2.0.dist-info}/METADATA +1 -1
- {supermemory-3.1.0.dist-info → supermemory-3.2.0.dist-info}/RECORD +9 -9
- {supermemory-3.1.0.dist-info → supermemory-3.2.0.dist-info}/WHEEL +0 -0
- {supermemory-3.1.0.dist-info → supermemory-3.2.0.dist-info}/licenses/LICENSE +0 -0
supermemory/_version.py
CHANGED
|
@@ -47,6 +47,7 @@ class SettingsResource(SyncAPIResource):
|
|
|
47
47
|
def update(
|
|
48
48
|
self,
|
|
49
49
|
*,
|
|
50
|
+
chunk_size: Optional[int] | Omit = omit,
|
|
50
51
|
exclude_items: Union[str, float, bool, Dict[str, object], Iterable[object], None] | Omit = omit,
|
|
51
52
|
filter_prompt: Optional[str] | Omit = omit,
|
|
52
53
|
google_drive_client_id: Optional[str] | Omit = omit,
|
|
@@ -83,6 +84,7 @@ class SettingsResource(SyncAPIResource):
|
|
|
83
84
|
"/v3/settings",
|
|
84
85
|
body=maybe_transform(
|
|
85
86
|
{
|
|
87
|
+
"chunk_size": chunk_size,
|
|
86
88
|
"exclude_items": exclude_items,
|
|
87
89
|
"filter_prompt": filter_prompt,
|
|
88
90
|
"google_drive_client_id": google_drive_client_id,
|
|
@@ -148,6 +150,7 @@ class AsyncSettingsResource(AsyncAPIResource):
|
|
|
148
150
|
async def update(
|
|
149
151
|
self,
|
|
150
152
|
*,
|
|
153
|
+
chunk_size: Optional[int] | Omit = omit,
|
|
151
154
|
exclude_items: Union[str, float, bool, Dict[str, object], Iterable[object], None] | Omit = omit,
|
|
152
155
|
filter_prompt: Optional[str] | Omit = omit,
|
|
153
156
|
google_drive_client_id: Optional[str] | Omit = omit,
|
|
@@ -184,6 +187,7 @@ class AsyncSettingsResource(AsyncAPIResource):
|
|
|
184
187
|
"/v3/settings",
|
|
185
188
|
body=await async_maybe_transform(
|
|
186
189
|
{
|
|
190
|
+
"chunk_size": chunk_size,
|
|
187
191
|
"exclude_items": exclude_items,
|
|
188
192
|
"filter_prompt": filter_prompt,
|
|
189
193
|
"google_drive_client_id": google_drive_client_id,
|
|
@@ -10,6 +10,8 @@ __all__ = ["SettingGetResponse"]
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class SettingGetResponse(BaseModel):
|
|
13
|
+
chunk_size: Optional[int] = FieldInfo(alias="chunkSize", default=None)
|
|
14
|
+
|
|
13
15
|
exclude_items: Union[str, float, bool, Dict[str, object], List[object], None] = FieldInfo(
|
|
14
16
|
alias="excludeItems", default=None
|
|
15
17
|
)
|
|
@@ -11,6 +11,8 @@ __all__ = ["SettingUpdateParams"]
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class SettingUpdateParams(TypedDict, total=False):
|
|
14
|
+
chunk_size: Annotated[Optional[int], PropertyInfo(alias="chunkSize")]
|
|
15
|
+
|
|
14
16
|
exclude_items: Annotated[
|
|
15
17
|
Union[str, float, bool, Dict[str, object], Iterable[object], None], PropertyInfo(alias="excludeItems")
|
|
16
18
|
]
|
|
@@ -10,6 +10,8 @@ __all__ = ["SettingUpdateResponse", "Updated"]
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class Updated(BaseModel):
|
|
13
|
+
chunk_size: Optional[int] = FieldInfo(alias="chunkSize", default=None)
|
|
14
|
+
|
|
13
15
|
exclude_items: Union[str, float, bool, Dict[str, object], List[object], None] = FieldInfo(
|
|
14
16
|
alias="excludeItems", default=None
|
|
15
17
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: supermemory
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.2.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=ExzGNc9U5ekZsaPACRMVTrA-WeAlvLbck8TLnPzDyyM,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
|
|
@@ -31,7 +31,7 @@ supermemory/resources/connections.py,sha256=U5FHDjkSJsMN4gAeA40MULns0L-rYMFwkBF7
|
|
|
31
31
|
supermemory/resources/documents.py,sha256=gRIy7eeMISOmRx7SMZh9ioGG2xev_cx0c1bQl9h2T04,37034
|
|
32
32
|
supermemory/resources/memories.py,sha256=SnThxR6IRl7tyjLmrohEu-9lxG1Dc_dhWEz8BjKM5Og,36874
|
|
33
33
|
supermemory/resources/search.py,sha256=SJ2b3JKOmm6kDVUCvF4htQr7Uq33bX0ro98l9zILXys,28245
|
|
34
|
-
supermemory/resources/settings.py,sha256=
|
|
34
|
+
supermemory/resources/settings.py,sha256=WLDupwUkhBb8IH2G7P0tOwr3wqFHKotQ99cDkOJ8Nq4,11823
|
|
35
35
|
supermemory/types/__init__.py,sha256=6mc6zMo_elaztHDCS6gkpKPug3lmhLqDtYC4YdHoB-U,3714
|
|
36
36
|
supermemory/types/connection_create_params.py,sha256=nhbXyd7hLyh7AuH4JrdfeWmiCj1H3YV22ycZzu4ggmk,670
|
|
37
37
|
supermemory/types/connection_create_response.py,sha256=i4sb0DSRs7wVVd8xDBOtr7vw-YbaeZ7MydlQLYvlvJs,468
|
|
@@ -71,10 +71,10 @@ supermemory/types/search_execute_params.py,sha256=HysTQKhbStVjXkx_utRMRRguRw85Ts
|
|
|
71
71
|
supermemory/types/search_execute_response.py,sha256=U1Fh4JX433A442Di9nnaQq6ts1olDdz3-SSbKzIFBPc,1460
|
|
72
72
|
supermemory/types/search_memories_params.py,sha256=Ym-V5x9iuC-iATSpSJde9DzaihhxFkE5vnhPJa4r3RA,3870
|
|
73
73
|
supermemory/types/search_memories_response.py,sha256=FfYDXRccWjMSWi-2sqpM7WHrVk_v5AAypHTmCWC5LJY,3288
|
|
74
|
-
supermemory/types/setting_get_response.py,sha256=
|
|
75
|
-
supermemory/types/setting_update_params.py,sha256=
|
|
76
|
-
supermemory/types/setting_update_response.py,sha256=
|
|
77
|
-
supermemory-3.
|
|
78
|
-
supermemory-3.
|
|
79
|
-
supermemory-3.
|
|
80
|
-
supermemory-3.
|
|
74
|
+
supermemory/types/setting_get_response.py,sha256=S-I64GR4hnmA8MLzI9Px7Al9Ele9pCkDiGiXiKhKhkg,1724
|
|
75
|
+
supermemory/types/setting_update_params.py,sha256=3-NcmbhcYesDDw0DC80DuEv_TVF54O45tk0RXjyKAog,1785
|
|
76
|
+
supermemory/types/setting_update_response.py,sha256=4xXuerIZl6KJjHsvk0l-02Sz3LoYqJfa3IbLiuvuaHE,1882
|
|
77
|
+
supermemory-3.2.0.dist-info/METADATA,sha256=iDV52p-WnW_blv1CkIzaSburc1pr6_olUYwY1SU4_8Q,15072
|
|
78
|
+
supermemory-3.2.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
79
|
+
supermemory-3.2.0.dist-info/licenses/LICENSE,sha256=M2NcpYEBpakciOULpWzo-xO2Lincf74gGwfaU00Sct0,11341
|
|
80
|
+
supermemory-3.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|