supermemory 3.7.0__py3-none-any.whl → 3.19.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.
Files changed (53) hide show
  1. supermemory/_base_client.py +140 -11
  2. supermemory/_client.py +226 -52
  3. supermemory/_models.py +16 -1
  4. supermemory/_streaming.py +12 -10
  5. supermemory/_types.py +12 -2
  6. supermemory/_version.py +1 -1
  7. supermemory/resources/connections.py +219 -29
  8. supermemory/resources/documents.py +306 -2
  9. supermemory/resources/memories.py +270 -1
  10. supermemory/resources/search.py +14 -0
  11. supermemory/resources/settings.py +12 -0
  12. supermemory/types/__init__.py +15 -2
  13. supermemory/types/client_profile_params.py +6 -0
  14. supermemory/types/connection_configure_params.py +12 -0
  15. supermemory/types/connection_configure_response.py +17 -0
  16. supermemory/types/connection_get_by_id_response.py +3 -1
  17. supermemory/types/{connection_get_by_tags_params.py → connection_get_by_tag_params.py} +2 -2
  18. supermemory/types/{connection_get_by_tags_response.py → connection_get_by_tag_response.py} +5 -3
  19. supermemory/types/connection_list_response.py +2 -0
  20. supermemory/types/connection_resources_params.py +13 -0
  21. supermemory/types/connection_resources_response.py +13 -0
  22. supermemory/types/document_batch_add_params.py +84 -0
  23. supermemory/types/document_batch_add_response.py +19 -0
  24. supermemory/types/document_delete_bulk_params.py +18 -0
  25. supermemory/types/document_delete_bulk_response.py +37 -0
  26. supermemory/types/document_get_response.py +7 -0
  27. supermemory/types/document_list_params.py +3790 -3
  28. supermemory/types/document_list_processing_response.py +75 -0
  29. supermemory/types/document_list_response.py +5 -0
  30. supermemory/types/document_upload_file_params.py +8 -0
  31. supermemory/types/memory_forget_params.py +26 -0
  32. supermemory/types/memory_forget_response.py +15 -0
  33. supermemory/types/memory_get_response.py +7 -0
  34. supermemory/types/memory_list_params.py +3790 -3
  35. supermemory/types/memory_list_response.py +5 -0
  36. supermemory/types/memory_update_memory_params.py +31 -0
  37. supermemory/types/memory_update_memory_response.py +31 -0
  38. supermemory/types/memory_upload_file_params.py +8 -0
  39. supermemory/types/profile_response.py +2 -0
  40. supermemory/types/search_documents_params.py +3791 -4
  41. supermemory/types/search_documents_response.py +2 -0
  42. supermemory/types/search_execute_params.py +3791 -4
  43. supermemory/types/search_execute_response.py +2 -0
  44. supermemory/types/search_memories_params.py +3809 -8
  45. supermemory/types/search_memories_response.py +33 -5
  46. supermemory/types/setting_get_response.py +6 -0
  47. supermemory/types/setting_update_params.py +6 -0
  48. supermemory/types/setting_update_response.py +6 -0
  49. {supermemory-3.7.0.dist-info → supermemory-3.19.0.dist-info}/METADATA +12 -2
  50. supermemory-3.19.0.dist-info/RECORD +97 -0
  51. {supermemory-3.7.0.dist-info → supermemory-3.19.0.dist-info}/licenses/LICENSE +1 -1
  52. supermemory-3.7.0.dist-info/RECORD +0 -84
  53. {supermemory-3.7.0.dist-info → supermemory-3.19.0.dist-info}/WHEEL +0 -0
@@ -10,6 +10,7 @@ from .._models import BaseModel
10
10
  __all__ = [
11
11
  "SearchMemoriesResponse",
12
12
  "Result",
13
+ "ResultChunk",
13
14
  "ResultContext",
14
15
  "ResultContextChild",
15
16
  "ResultContextParent",
@@ -17,6 +18,20 @@ __all__ = [
17
18
  ]
18
19
 
19
20
 
21
+ class ResultChunk(BaseModel):
22
+ content: str
23
+ """Content of the chunk"""
24
+
25
+ document_id: str = FieldInfo(alias="documentId")
26
+ """ID of the document this chunk belongs to"""
27
+
28
+ position: float
29
+ """Position of chunk in the document (0-indexed)"""
30
+
31
+ score: float
32
+ """Similarity score between the query and chunk"""
33
+
34
+
20
35
  class ResultContextChild(BaseModel):
21
36
  memory: str
22
37
  """The contextual memory content"""
@@ -58,6 +73,8 @@ class ResultContextParent(BaseModel):
58
73
 
59
74
 
60
75
  class ResultContext(BaseModel):
76
+ """Object containing arrays of parent and child contextual memories"""
77
+
61
78
  children: Optional[List[ResultContextChild]] = None
62
79
 
63
80
  parents: Optional[List[ResultContextParent]] = None
@@ -88,10 +105,7 @@ class ResultDocument(BaseModel):
88
105
 
89
106
  class Result(BaseModel):
90
107
  id: str
91
- """Memory entry ID"""
92
-
93
- memory: str
94
- """The memory content"""
108
+ """Memory entry ID or chunk ID"""
95
109
 
96
110
  metadata: Optional[Dict[str, object]] = None
97
111
  """Memory metadata"""
@@ -102,19 +116,33 @@ class Result(BaseModel):
102
116
  updated_at: str = FieldInfo(alias="updatedAt")
103
117
  """Memory last update date"""
104
118
 
119
+ chunk: Optional[str] = None
120
+ """The chunk content (only present for chunk results from hybrid search)"""
121
+
122
+ chunks: Optional[List[ResultChunk]] = None
123
+ """Relevant chunks from associated documents (only included when chunks=true)"""
124
+
105
125
  context: Optional[ResultContext] = None
106
126
  """Object containing arrays of parent and child contextual memories"""
107
127
 
108
128
  documents: Optional[List[ResultDocument]] = None
109
129
  """Associated documents for this memory entry"""
110
130
 
131
+ memory: Optional[str] = None
132
+ """The memory content (only present for memory results)"""
133
+
111
134
  version: Optional[float] = None
112
135
  """Version number of this memory entry"""
113
136
 
114
137
 
115
138
  class SearchMemoriesResponse(BaseModel):
116
139
  results: List[Result]
117
- """Array of matching memory entries with similarity scores"""
140
+ """Array of matching memory entries and chunks with similarity scores.
141
+
142
+ Contains memory results when searchMode='memories', or both memory and chunk
143
+ results when searchMode='hybrid'. Memory results have 'memory' field, chunk
144
+ results have 'chunk' field.
145
+ """
118
146
 
119
147
  timing: float
120
148
  """Search execution time in milliseconds"""
@@ -18,6 +18,12 @@ class SettingGetResponse(BaseModel):
18
18
 
19
19
  filter_prompt: Optional[str] = FieldInfo(alias="filterPrompt", default=None)
20
20
 
21
+ github_client_id: Optional[str] = FieldInfo(alias="githubClientId", default=None)
22
+
23
+ github_client_secret: Optional[str] = FieldInfo(alias="githubClientSecret", default=None)
24
+
25
+ github_custom_key_enabled: Optional[bool] = FieldInfo(alias="githubCustomKeyEnabled", default=None)
26
+
21
27
  google_drive_client_id: Optional[str] = FieldInfo(alias="googleDriveClientId", default=None)
22
28
 
23
29
  google_drive_client_secret: Optional[str] = FieldInfo(alias="googleDriveClientSecret", default=None)
@@ -19,6 +19,12 @@ class SettingUpdateParams(TypedDict, total=False):
19
19
 
20
20
  filter_prompt: Annotated[Optional[str], PropertyInfo(alias="filterPrompt")]
21
21
 
22
+ github_client_id: Annotated[Optional[str], PropertyInfo(alias="githubClientId")]
23
+
24
+ github_client_secret: Annotated[Optional[str], PropertyInfo(alias="githubClientSecret")]
25
+
26
+ github_custom_key_enabled: Annotated[Optional[bool], PropertyInfo(alias="githubCustomKeyEnabled")]
27
+
22
28
  google_drive_client_id: Annotated[Optional[str], PropertyInfo(alias="googleDriveClientId")]
23
29
 
24
30
  google_drive_client_secret: Annotated[Optional[str], PropertyInfo(alias="googleDriveClientSecret")]
@@ -18,6 +18,12 @@ class Updated(BaseModel):
18
18
 
19
19
  filter_prompt: Optional[str] = FieldInfo(alias="filterPrompt", default=None)
20
20
 
21
+ github_client_id: Optional[str] = FieldInfo(alias="githubClientId", default=None)
22
+
23
+ github_client_secret: Optional[str] = FieldInfo(alias="githubClientSecret", default=None)
24
+
25
+ github_custom_key_enabled: Optional[bool] = FieldInfo(alias="githubCustomKeyEnabled", default=None)
26
+
21
27
  google_drive_client_id: Optional[str] = FieldInfo(alias="googleDriveClientId", default=None)
22
28
 
23
29
  google_drive_client_secret: Optional[str] = FieldInfo(alias="googleDriveClientSecret", default=None)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: supermemory
3
- Version: 3.7.0
3
+ Version: 3.19.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
@@ -44,6 +44,15 @@ and offers both synchronous and asynchronous clients powered by [httpx](https://
44
44
 
45
45
  It is generated with [Stainless](https://www.stainless.com/).
46
46
 
47
+ ## MCP Server
48
+
49
+ Use the Supermemory MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
50
+
51
+ [![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=supermemory-mcp&config=eyJuYW1lIjoic3VwZXJtZW1vcnktbWNwIiwidHJhbnNwb3J0Ijoic3NlIiwidXJsIjoiaHR0cHM6Ly9zdXBlcm1lbW9yeS1uZXcuc3RsbWNwLmNvbS9zc2UifQ)
52
+ [![Install in VS Code](https://img.shields.io/badge/_-Add_to_VS_Code-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0MCA0MCI+PHBhdGggZmlsbD0iI0VFRSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzAuMjM1IDM5Ljg4NGEyLjQ5MSAyLjQ5MSAwIDAgMS0xLjc4MS0uNzNMMTIuNyAyNC43OGwtMy40NiAyLjYyNC0zLjQwNiAyLjU4MmExLjY2NSAxLjY2NSAwIDAgMS0xLjA4Mi4zMzggMS42NjQgMS42NjQgMCAwIDEtMS4wNDYtLjQzMWwtMi4yLTJhMS42NjYgMS42NjYgMCAwIDEgMC0yLjQ2M0w3LjQ1OCAyMCA0LjY3IDE3LjQ1MyAxLjUwNyAxNC41N2ExLjY2NSAxLjY2NSAwIDAgMSAwLTIuNDYzbDIuMi0yYTEuNjY1IDEuNjY1IDAgMCAxIDIuMTMtLjA5N2w2Ljg2MyA1LjIwOUwyOC40NTIuODQ0YTIuNDg4IDIuNDg4IDAgMCAxIDEuODQxLS43MjljLjM1MS4wMDkuNjk5LjA5MSAxLjAxOS4yNDVsOC4yMzYgMy45NjFhMi41IDIuNSAwIDAgMSAxLjQxNSAyLjI1M3YuMDk5LS4wNDVWMzMuMzd2LS4wNDUuMDk1YTIuNTAxIDIuNTAxIDAgMCAxLTEuNDE2IDIuMjU3bC04LjIzNSAzLjk2MWEyLjQ5MiAyLjQ5MiAwIDAgMS0xLjA3Ny4yNDZabS43MTYtMjguOTQ3LTExLjk0OCA5LjA2MiAxMS45NTIgOS4wNjUtLjAwNC0xOC4xMjdaIi8+PC9zdmc+)](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22supermemory-mcp%22%2C%22type%22%3A%22sse%22%2C%22url%22%3A%22https%3A%2F%2Fsupermemory-new.stlmcp.com%2Fsse%22%7D)
53
+
54
+ > Note: You may need to set environment variables in your MCP client.
55
+
47
56
  ## Documentation
48
57
 
49
58
  The REST API documentation can be found on [docs.supermemory.ai](https://docs.supermemory.ai). The full API of this library can be found in [api.md](https://github.com/supermemoryai/python-sdk/tree/main/api.md).
@@ -118,6 +127,7 @@ pip install supermemory[aiohttp]
118
127
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
119
128
 
120
129
  ```python
130
+ import os
121
131
  import asyncio
122
132
  from supermemory import DefaultAioHttpClient
123
133
  from supermemory import AsyncSupermemory
@@ -125,7 +135,7 @@ from supermemory import AsyncSupermemory
125
135
 
126
136
  async def main() -> None:
127
137
  async with AsyncSupermemory(
128
- api_key="My API Key",
138
+ api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted
129
139
  http_client=DefaultAioHttpClient(),
130
140
  ) as client:
131
141
  response = await client.search.documents(
@@ -0,0 +1,97 @@
1
+ supermemory/__init__.py,sha256=QronGAy8njt_jX9fFbHOAUb2g0kAY5dKIupNvIaQL7k,2710
2
+ supermemory/_base_client.py,sha256=A7Xf9CKQU8vNY7VmHLqNzUjkwgT2bkGH7klQjE5HyXI,73414
3
+ supermemory/_client.py,sha256=qThXn-UXoJXQn_CF1WkdzqqCth7_zi63DO2Tx0dSFIs,31749
4
+ supermemory/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
+ supermemory/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ supermemory/_exceptions.py,sha256=5nnX7W8L_eA6LkX3SBl7csJy5d9QEcDqRVuwDq8wVh8,3230
7
+ supermemory/_files.py,sha256=9QITJCyATjxJqhMXckfLrrOKltxCpKhbrlZX_NcL9WQ,3616
8
+ supermemory/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
+ supermemory/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
+ supermemory/_resource.py,sha256=_wuaB1exMy-l-qqdJJdTv15hH5qBSN2Rj9CFwjXTZJU,1130
11
+ supermemory/_response.py,sha256=Yh869-U8INkojKZHFsNw69z5Y2BrK2isgRJ8mifEURM,28848
12
+ supermemory/_streaming.py,sha256=QSEZ-AR0iqa1An3GyEa0jCYRrdxmDHSMMjtMgHbppLY,10241
13
+ supermemory/_types.py,sha256=p623Mn421xcrL_L7JPm1CCfn89pOZJqaDEvkvvqvVfI,7599
14
+ supermemory/_version.py,sha256=Y3LJ7DTHSG0srerGRw1xY0Dq1UvSMDwNE7ajl4Y29co,164
15
+ supermemory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ supermemory/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
+ supermemory/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
18
+ supermemory/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
19
+ supermemory/_utils/_logs.py,sha256=iceljYaEUb4Q4q1SgbSzwSrlJA64ISbaccczzZ8Z9Vg,789
20
+ supermemory/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
21
+ supermemory/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
22
+ supermemory/_utils/_resources_proxy.py,sha256=9MqlmhIEoyeVraNz90vnq1pS6EOxSqvYVlVK-CvLMmQ,614
23
+ supermemory/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
+ supermemory/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
25
+ supermemory/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
+ supermemory/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
+ supermemory/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
28
+ supermemory/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
+ supermemory/resources/__init__.py,sha256=qLgw280drj5DMESoNQyiaS6fO-NMC4hq3jcdFvLu3Hs,2508
30
+ supermemory/resources/connections.py,sha256=vQdLnRMMMcRQAO7Ea6apGL-vNAKv4EDlEzv_7vI1bTo,41370
31
+ supermemory/resources/documents.py,sha256=d4l68sre2GLci9Jo3RHWMazb6QrIlXM1Fb9WkwUpRfU,46950
32
+ supermemory/resources/memories.py,sha256=Xfbs9rDPH21zukkjUFHoPosk8bdoslN_-UGFME0apkk,43809
33
+ supermemory/resources/search.py,sha256=yVp_wMLsQHrvVL56I6o6L7CXlfWmUpeMOaJAqxhABaI,28515
34
+ supermemory/resources/settings.py,sha256=lcMlKeqCE7OM3JgwB8M7y7NgleYkHTwJQhkQzbV6dno,12581
35
+ supermemory/types/__init__.py,sha256=HIZ-rTcbFtGnbsKrRNlBUSFqpgc239VqXFXyYhA6TYs,5204
36
+ supermemory/types/add_response.py,sha256=Yilb3Y1Hs5E-S3GT0UeQw-l_G0lvAZ0_59aa09PnZ7M,284
37
+ supermemory/types/client_add_params.py,sha256=fnOBAPuMKu8-b-p0AJpOrqfiZRfCqVYaaEgt8d57mR8,1133
38
+ supermemory/types/client_profile_params.py,sha256=qx2ghppX0R7q3bLT98mLGC0iLsW5V7MY7VUtvIYOHqQ,771
39
+ supermemory/types/connection_configure_params.py,sha256=mEIM0Qtnssn77fQdplmYN-6M2tGLo-lb01Xih8grdcY,360
40
+ supermemory/types/connection_configure_response.py,sha256=wvlEbb9xE4F8HYvo2rPcXc99k0Lwn7ZiPunBwwbW2lk,412
41
+ supermemory/types/connection_create_params.py,sha256=nhbXyd7hLyh7AuH4JrdfeWmiCj1H3YV22ycZzu4ggmk,670
42
+ supermemory/types/connection_create_response.py,sha256=i4sb0DSRs7wVVd8xDBOtr7vw-YbaeZ7MydlQLYvlvJs,468
43
+ supermemory/types/connection_delete_by_id_response.py,sha256=guD1vxqV2wiQnwnWCZSQH0z2HYXQOtvicRzouPVkHXA,243
44
+ supermemory/types/connection_delete_by_provider_params.py,sha256=inmWn18C-FCevq-mcsIRzcHwT5BEcH9LqOrlifBtnSQ,550
45
+ supermemory/types/connection_delete_by_provider_response.py,sha256=PgMQuSIhVFSF2LVa0FBei2bj3gyVRB7FyOi_-M-Rugc,255
46
+ supermemory/types/connection_get_by_id_response.py,sha256=mjzlQH7Y8eGUKu33nAKPmw_eokFBzgpRKvxeBMkfDWs,706
47
+ supermemory/types/connection_get_by_tag_params.py,sha256=eanHPyxo7AoNPUrkY42tCwZd-D2OB5g-QNCojlopIeA,524
48
+ supermemory/types/connection_get_by_tag_response.py,sha256=AE5ZU3M9_jYPuMEz38kbKDeddx7W-3MJK_HvQAxKZC4,708
49
+ supermemory/types/connection_import_params.py,sha256=mUIuaeXLJe14_6vuFizs9sG_csibvQmn6eAdPll3pjA,510
50
+ supermemory/types/connection_import_response.py,sha256=W3Jn98_wmYGSAr4H553uoiutdWL49-myc6MDa0mFEog,210
51
+ supermemory/types/connection_list_documents_params.py,sha256=MBKSgfdV-Gx02DpV4ENk2ME8F1bz2JcXd7j6sYbooIk,522
52
+ supermemory/types/connection_list_documents_response.py,sha256=0IdHufx0yErjfmoXYeY0KJ2QID9C-_58joyGEuu8gd4,682
53
+ supermemory/types/connection_list_params.py,sha256=hg7wKFASpFqDnJ3Kycyziajimvx1p2q2fKJqfexxTF8,504
54
+ supermemory/types/connection_list_response.py,sha256=CEHXeQ0IaApmwTAkeL1ATCAMNY87KZztylFQGBhz0ek,845
55
+ supermemory/types/connection_resources_params.py,sha256=GwPgcOt7JNimFZK8_VT0wqRPV0637ABfSNltf8xSMCM,300
56
+ supermemory/types/connection_resources_response.py,sha256=ptE44R9HgJl9jZOqzWWW1QJKG-yqwrkOwX-WFwEz9eM,331
57
+ supermemory/types/document_add_params.py,sha256=ZQoltQ6VrZUWC17Fq8ov2W7UF03p5EJ5vy6bVqW6kbM,1137
58
+ supermemory/types/document_add_response.py,sha256=gcs5UIckbJqST-58Ue-6mJuHqZj--bv9m6-wOCe74GU,300
59
+ supermemory/types/document_batch_add_params.py,sha256=kqejtO8Y43NV0BIw67DvIH7HR7K2st4PnzeSCUCnoD0,3127
60
+ supermemory/types/document_batch_add_response.py,sha256=YtYzjmktlAXy_UZW_tU9DU2achDkWXbkigkjY9zWOmU,486
61
+ supermemory/types/document_delete_bulk_params.py,sha256=9G6YPWcH6PBP1rY4XCD8kgOsjAjbc9NRY8sGMb8Qm34,607
62
+ supermemory/types/document_delete_bulk_response.py,sha256=Fc7lopCYMQHLB7mWkLhg3RtR7cFVUOaVSbPJcoNhJbU,933
63
+ supermemory/types/document_get_response.py,sha256=dUrd6LhaUNSjfvXo-aLbrjJvR8stdBJTJBPMmrO5PDI,3425
64
+ supermemory/types/document_list_params.py,sha256=HweSzwdQeurw58_twhgLQY5Np7WvSecKJdg_TkyU1Os,131791
65
+ supermemory/types/document_list_processing_response.py,sha256=IeJeHHuaT9fin_aTV_cdd3HvDE7I4-RRB68z-JgsWV8,2242
66
+ supermemory/types/document_list_response.py,sha256=n-_0750UFos29yt1ZnzaxbjBNwek90cGB-vsjRX8PvY,2829
67
+ supermemory/types/document_update_params.py,sha256=5C6k4AGybnLF3nM9jFD7w_vjOSjhpY04bAG3H_8kEoA,1898
68
+ supermemory/types/document_update_response.py,sha256=ujnGXGhPO-ktSJ963-_OebgJvdCs_dSyeaslhbHfRtI,306
69
+ supermemory/types/document_upload_file_params.py,sha256=wK_l3CrKPpuHi9N0Dl3ic_bxKtDHjQfSBg-Eif4Er5o,1771
70
+ supermemory/types/document_upload_file_response.py,sha256=RpLhI7ab7x3_cXtywcvCKyicuSU7wug5DTqX8XVW0vU,314
71
+ supermemory/types/memory_add_params.py,sha256=i3qqBukQHdZxN6E6Ncvh6rPqHAxA-Lx9-B0jP9o1UjI,1133
72
+ supermemory/types/memory_add_response.py,sha256=F1KJGzoLx0S-2eJ7T8VxusvT3eAb1I6OGsY1RxBm0oQ,296
73
+ supermemory/types/memory_forget_params.py,sha256=CMIMzBikvRXCfG9-rEDSpTRERvX5U52YH8Z2UonI614,722
74
+ supermemory/types/memory_forget_response.py,sha256=Uisg1bdTBzTM9b1XMze6QDEIwEdgXc9xXE8Y8tZqldA,379
75
+ supermemory/types/memory_get_response.py,sha256=Fzp9usaIogbtNlr9jJW8Uveicw66aAQ_Y_WB0DUxhfw,3421
76
+ supermemory/types/memory_list_params.py,sha256=LGrvX_re1cdY5cm7n_Bji1jzYr1RrBSMB8-99pYb2rI,131787
77
+ supermemory/types/memory_list_response.py,sha256=atjnWA5akwoWK7Mb9MEAGB7yw-ZIX6Dp2yfyoYSC9EI,2825
78
+ supermemory/types/memory_update_memory_params.py,sha256=N1x7TnNWtu-wb9DGlE__Ioz5rgEzvphNuMfgXUSyjZc,1025
79
+ supermemory/types/memory_update_memory_response.py,sha256=uR3WEJBtUHLrD3wlJJTQioEr901HWpfGxpriYL9Tvrk,886
80
+ supermemory/types/memory_update_params.py,sha256=qHC1iCX7-lUdgsUzIoysltyHtRquMmg2Z5GfKr4uu3I,1894
81
+ supermemory/types/memory_update_response.py,sha256=TyVned9XDrd4g1nPHAQ839m9co2obYoSZ5ProwhxSOY,302
82
+ supermemory/types/memory_upload_file_params.py,sha256=zNYlLBGpnCc69VAWxMpATeKPurzOQKXYZbP0dRxPEmg,1767
83
+ supermemory/types/memory_upload_file_response.py,sha256=j1SSmuif6qXT_Q79AVmHiOdSsJV5ze4dab5cylK9O4o,310
84
+ supermemory/types/profile_response.py,sha256=p_ts8-pFPbCVgwsGxP31JCT-_Q9pySW_qhEadCaff38,943
85
+ supermemory/types/search_documents_params.py,sha256=f-PfldQwkNoY-BAEs_8NU07eR1BIpO8GqnSobLvkz4o,133381
86
+ supermemory/types/search_documents_response.py,sha256=Vxt6ZTFhHYZ98Kb4b-rLBP4OFsd4XopyGePzYITi68w,1458
87
+ supermemory/types/search_execute_params.py,sha256=V4I5cKh6BMHxpSqDEz3diQKnGNQUoWjXi4wTyNrsCgY,133377
88
+ supermemory/types/search_execute_response.py,sha256=VNhUQRi-Nt_tPmsjn-OEXv5nebgpF6AbSPC8G7zruUw,1454
89
+ supermemory/types/search_memories_params.py,sha256=zqC8gQ4Ri9aviCBRjPmmmEzmHnrMMN-1thIbxDNSyJ4,132898
90
+ supermemory/types/search_memories_response.py,sha256=kKQnALIddbsrWQJfz0U-mYU8kmkyVfmJW7Yls6Elj1c,4183
91
+ supermemory/types/setting_get_response.py,sha256=ApXvvgIV4DBcHK1rITNE_ddhZSQvFt81ahl--Fwlyos,2011
92
+ supermemory/types/setting_update_params.py,sha256=FCHuZSdPifbz-geB6VU_xHtDVp_ErOWzvQrEvLjfEkY,2069
93
+ supermemory/types/setting_update_response.py,sha256=QIZ5zePNUzCOdKNyWTwb440vMwgAt8pBcT3pieQ3o5g,2169
94
+ supermemory-3.19.0.dist-info/METADATA,sha256=OXJfnu-TvFiGYVAwVU2iDYxyMsB347C-tmwK1L_QVp8,16544
95
+ supermemory-3.19.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
96
+ supermemory-3.19.0.dist-info/licenses/LICENSE,sha256=zogq0aguoYTiuioGeI-j2nFP35ij3qq7BioO74hIQHQ,11341
97
+ supermemory-3.19.0.dist-info/RECORD,,
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2025 Supermemory
189
+ Copyright 2026 Supermemory
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,84 +0,0 @@
1
- supermemory/__init__.py,sha256=QronGAy8njt_jX9fFbHOAUb2g0kAY5dKIupNvIaQL7k,2710
2
- supermemory/_base_client.py,sha256=K7v8m6bR0RLXbp33WXnKcnr6ArJlMwX18Wh7uP7rZjg,67052
3
- supermemory/_client.py,sha256=LDOvOqGKJj5YhMNKFmgSvFWoJOB1bPYh5XbUAkfwJuk,26627
4
- supermemory/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
- supermemory/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
- supermemory/_exceptions.py,sha256=5nnX7W8L_eA6LkX3SBl7csJy5d9QEcDqRVuwDq8wVh8,3230
7
- supermemory/_files.py,sha256=9QITJCyATjxJqhMXckfLrrOKltxCpKhbrlZX_NcL9WQ,3616
8
- supermemory/_models.py,sha256=3D65psj_C02Mw0K2zpBWrn1khmrvtEXgTTQ6P4r3tUY,31837
9
- supermemory/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
- supermemory/_resource.py,sha256=_wuaB1exMy-l-qqdJJdTv15hH5qBSN2Rj9CFwjXTZJU,1130
11
- supermemory/_response.py,sha256=Yh869-U8INkojKZHFsNw69z5Y2BrK2isgRJ8mifEURM,28848
12
- supermemory/_streaming.py,sha256=DPkh5qaMwNFDbqA_13aKn5aZ0GnQx9aD5JxmdJPhOeY,10169
13
- supermemory/_types.py,sha256=KHnNDTZJ8YzCPCGZTNkEXcpiWp7FdH9skhEaOQb9uMM,7241
14
- supermemory/_version.py,sha256=Keyu0stpciXT08FYYHNSjGXc3_C-Z9jrSYsEJE6Hcqw,163
15
- supermemory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- supermemory/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
- supermemory/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
18
- supermemory/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
19
- supermemory/_utils/_logs.py,sha256=iceljYaEUb4Q4q1SgbSzwSrlJA64ISbaccczzZ8Z9Vg,789
20
- supermemory/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
21
- supermemory/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
22
- supermemory/_utils/_resources_proxy.py,sha256=9MqlmhIEoyeVraNz90vnq1pS6EOxSqvYVlVK-CvLMmQ,614
23
- supermemory/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
- supermemory/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
25
- supermemory/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
- supermemory/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
- supermemory/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
28
- supermemory/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
- supermemory/resources/__init__.py,sha256=qLgw280drj5DMESoNQyiaS6fO-NMC4hq3jcdFvLu3Hs,2508
30
- supermemory/resources/connections.py,sha256=xGcsWE6n40k1lfYHXKHHERSMi_lCIOjg2P8_VFs6VaI,33357
31
- supermemory/resources/documents.py,sha256=Y5lYPeuiYGnDg0pPUJUqPlEYN8ZtB9CBtascX7wLR18,33676
32
- supermemory/resources/memories.py,sha256=e04KaSIJyvuM6Y9591zecuGL0Yt2dNmmrgVdcuDlUms,33516
33
- supermemory/resources/search.py,sha256=a2J4LaqPNpW0cP1semwr4Ds35vfTSiIlOeduhf0Y8kE,27826
34
- supermemory/resources/settings.py,sha256=WLDupwUkhBb8IH2G7P0tOwr3wqFHKotQ99cDkOJ8Nq4,11823
35
- supermemory/types/__init__.py,sha256=RkvpwPWlCtpVncNECNVBTqwSwZhU1w5hxpeiqza9g6k,3976
36
- supermemory/types/add_response.py,sha256=Yilb3Y1Hs5E-S3GT0UeQw-l_G0lvAZ0_59aa09PnZ7M,284
37
- supermemory/types/client_add_params.py,sha256=fnOBAPuMKu8-b-p0AJpOrqfiZRfCqVYaaEgt8d57mR8,1133
38
- supermemory/types/client_profile_params.py,sha256=AFCMORlkPIT8UcJfJb2-HlYDQ-pm_t1Q00d3znN1lwE,634
39
- supermemory/types/connection_create_params.py,sha256=nhbXyd7hLyh7AuH4JrdfeWmiCj1H3YV22ycZzu4ggmk,670
40
- supermemory/types/connection_create_response.py,sha256=i4sb0DSRs7wVVd8xDBOtr7vw-YbaeZ7MydlQLYvlvJs,468
41
- supermemory/types/connection_delete_by_id_response.py,sha256=guD1vxqV2wiQnwnWCZSQH0z2HYXQOtvicRzouPVkHXA,243
42
- supermemory/types/connection_delete_by_provider_params.py,sha256=inmWn18C-FCevq-mcsIRzcHwT5BEcH9LqOrlifBtnSQ,550
43
- supermemory/types/connection_delete_by_provider_response.py,sha256=PgMQuSIhVFSF2LVa0FBei2bj3gyVRB7FyOi_-M-Rugc,255
44
- supermemory/types/connection_get_by_id_response.py,sha256=Pk-eN3Kdj80OVcfBquDaHEUK2sCDaXHrmn_Z0OUvYpI,610
45
- supermemory/types/connection_get_by_tags_params.py,sha256=c8u58EaxhEZrCERMix5H3lkVJqud0DIHd2Vsc8-mhok,526
46
- supermemory/types/connection_get_by_tags_response.py,sha256=ri7XYyl8b71fJocgEfBgkf2JetbpLX7KSGpNbL8GH6M,614
47
- supermemory/types/connection_import_params.py,sha256=mUIuaeXLJe14_6vuFizs9sG_csibvQmn6eAdPll3pjA,510
48
- supermemory/types/connection_import_response.py,sha256=W3Jn98_wmYGSAr4H553uoiutdWL49-myc6MDa0mFEog,210
49
- supermemory/types/connection_list_documents_params.py,sha256=MBKSgfdV-Gx02DpV4ENk2ME8F1bz2JcXd7j6sYbooIk,522
50
- supermemory/types/connection_list_documents_response.py,sha256=0IdHufx0yErjfmoXYeY0KJ2QID9C-_58joyGEuu8gd4,682
51
- supermemory/types/connection_list_params.py,sha256=hg7wKFASpFqDnJ3Kycyziajimvx1p2q2fKJqfexxTF8,504
52
- supermemory/types/connection_list_response.py,sha256=04XgComodVr8WK-PQ_E23zl08E4MCnQqf_c2x3ruEEM,755
53
- supermemory/types/document_add_params.py,sha256=ZQoltQ6VrZUWC17Fq8ov2W7UF03p5EJ5vy6bVqW6kbM,1137
54
- supermemory/types/document_add_response.py,sha256=gcs5UIckbJqST-58Ue-6mJuHqZj--bv9m6-wOCe74GU,300
55
- supermemory/types/document_get_response.py,sha256=_tLT0JT6CPn66yeaW7HrTU8acKvyvZhJwpj0Y9qZwS0,3162
56
- supermemory/types/document_list_params.py,sha256=mIwpWSXw3HtWswOVtPji3T14dQD5cvNwOGbVyVg_H0Q,1565
57
- supermemory/types/document_list_response.py,sha256=woYPTp69NG_9wke7wGCMvL7W6b7biP09_sLiXbl3-8U,2742
58
- supermemory/types/document_update_params.py,sha256=5C6k4AGybnLF3nM9jFD7w_vjOSjhpY04bAG3H_8kEoA,1898
59
- supermemory/types/document_update_response.py,sha256=ujnGXGhPO-ktSJ963-_OebgJvdCs_dSyeaslhbHfRtI,306
60
- supermemory/types/document_upload_file_params.py,sha256=ACCzgluc5K5VMIr4-3ojhYEO-WmxElLsZ1PPvJSn1-E,1450
61
- supermemory/types/document_upload_file_response.py,sha256=RpLhI7ab7x3_cXtywcvCKyicuSU7wug5DTqX8XVW0vU,314
62
- supermemory/types/memory_add_params.py,sha256=i3qqBukQHdZxN6E6Ncvh6rPqHAxA-Lx9-B0jP9o1UjI,1133
63
- supermemory/types/memory_add_response.py,sha256=F1KJGzoLx0S-2eJ7T8VxusvT3eAb1I6OGsY1RxBm0oQ,296
64
- supermemory/types/memory_get_response.py,sha256=L6SghhNGIVVMPw9Dge0y6PFyWDG4qY-lsccYthgpQCo,3158
65
- supermemory/types/memory_list_params.py,sha256=Wfvl9P10Yp8Wdi-13Yl7A48ggtnN7OfRbAgufcPwLvI,1561
66
- supermemory/types/memory_list_response.py,sha256=JfLKS2fkjQ8sTRGvutYkBoj9TFavXviTrC6Pf2W3kRU,2738
67
- supermemory/types/memory_update_params.py,sha256=qHC1iCX7-lUdgsUzIoysltyHtRquMmg2Z5GfKr4uu3I,1894
68
- supermemory/types/memory_update_response.py,sha256=TyVned9XDrd4g1nPHAQ839m9co2obYoSZ5ProwhxSOY,302
69
- supermemory/types/memory_upload_file_params.py,sha256=5iS-wKc0DUmNEpU1QqKi93u-AFRpXRuUBO6oALIeZto,1446
70
- supermemory/types/memory_upload_file_response.py,sha256=j1SSmuif6qXT_Q79AVmHiOdSsJV5ze4dab5cylK9O4o,310
71
- supermemory/types/profile_response.py,sha256=79f6OPQtzZBHpwGS2L88wd56h0rfrfF0nh6qqGzgzqY,886
72
- supermemory/types/search_documents_params.py,sha256=w0pgYBxzWELyE4X54AYszQMS4zLOESN8PW8z3dnqWKw,3146
73
- supermemory/types/search_documents_response.py,sha256=UTqPu0qLynNA5Me-IAUK-cSZkLey2tjrJ94vc35IwzQ,1424
74
- supermemory/types/search_execute_params.py,sha256=nrlTOvx-g2BqBI5kan6g6IYrbL4IQZcL5OlXgEC0uYI,3142
75
- supermemory/types/search_execute_response.py,sha256=gVDFlfvI6qRr2hFqb1BnjMfLMoA7NnrmMHDCokW268U,1420
76
- supermemory/types/search_memories_params.py,sha256=HbURp2jE9rSh_SRz2GpsfAameEnAYlaGebrn-PUdAjY,2200
77
- supermemory/types/search_memories_response.py,sha256=7BX6qYfmASMWrZONoLEikeQFf1P14jR41rK7LlkiZt0,3233
78
- supermemory/types/setting_get_response.py,sha256=S-I64GR4hnmA8MLzI9Px7Al9Ele9pCkDiGiXiKhKhkg,1724
79
- supermemory/types/setting_update_params.py,sha256=3-NcmbhcYesDDw0DC80DuEv_TVF54O45tk0RXjyKAog,1785
80
- supermemory/types/setting_update_response.py,sha256=4xXuerIZl6KJjHsvk0l-02Sz3LoYqJfa3IbLiuvuaHE,1882
81
- supermemory-3.7.0.dist-info/METADATA,sha256=3Bjw7Jv782oIm13Pd6J2NPbKyOOshs0O39H-IRz2I2Y,14749
82
- supermemory-3.7.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
83
- supermemory-3.7.0.dist-info/licenses/LICENSE,sha256=M2NcpYEBpakciOULpWzo-xO2Lincf74gGwfaU00Sct0,11341
84
- supermemory-3.7.0.dist-info/RECORD,,