supermemory 0.1.0a1__py3-none-any.whl → 3.0.0a1__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 (35) hide show
  1. supermemory/__init__.py +5 -0
  2. supermemory/_client.py +29 -29
  3. supermemory/_files.py +1 -1
  4. supermemory/_utils/_proxy.py +4 -1
  5. supermemory/_utils/_resources_proxy.py +24 -0
  6. supermemory/_version.py +1 -1
  7. supermemory/resources/__init__.py +33 -33
  8. supermemory/resources/{connection.py → connections.py} +154 -61
  9. supermemory/resources/{memory.py → memories.py} +264 -88
  10. supermemory/resources/search.py +92 -50
  11. supermemory/resources/settings.py +58 -11
  12. supermemory/types/__init__.py +10 -2
  13. supermemory/types/connection_create_params.py +5 -2
  14. supermemory/types/connection_create_response.py +7 -1
  15. supermemory/types/connection_get_response.py +21 -0
  16. supermemory/types/connection_list_params.py +13 -0
  17. supermemory/types/connection_list_response.py +25 -0
  18. supermemory/types/memory_add_params.py +18 -0
  19. supermemory/types/{memory_create_response.py → memory_add_response.py} +2 -2
  20. supermemory/types/memory_get_response.py +3 -19
  21. supermemory/types/memory_list_response.py +48 -12
  22. supermemory/types/memory_update_params.py +18 -0
  23. supermemory/types/memory_update_response.py +11 -0
  24. supermemory/types/memory_upload_file_params.py +13 -0
  25. supermemory/types/memory_upload_file_response.py +11 -0
  26. supermemory/types/search_execute_params.py +36 -6
  27. supermemory/types/setting_get_response.py +11 -0
  28. supermemory/types/setting_update_params.py +4 -12
  29. supermemory/types/setting_update_response.py +3 -11
  30. {supermemory-0.1.0a1.dist-info → supermemory-3.0.0a1.dist-info}/METADATA +24 -7
  31. supermemory-3.0.0a1.dist-info/RECORD +56 -0
  32. supermemory/types/memory_create_params.py +0 -23
  33. supermemory-0.1.0a1.dist-info/RECORD +0 -47
  34. {supermemory-0.1.0a1.dist-info → supermemory-3.0.0a1.dist-info}/WHEEL +0 -0
  35. {supermemory-0.1.0a1.dist-info → supermemory-3.0.0a1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,11 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .._models import BaseModel
4
+
5
+ __all__ = ["MemoryUpdateResponse"]
6
+
7
+
8
+ class MemoryUpdateResponse(BaseModel):
9
+ id: str
10
+
11
+ status: str
@@ -0,0 +1,13 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Required, TypedDict
6
+
7
+ from .._types import FileTypes
8
+
9
+ __all__ = ["MemoryUploadFileParams"]
10
+
11
+
12
+ class MemoryUploadFileParams(TypedDict, total=False):
13
+ file: Required[FileTypes]
@@ -0,0 +1,11 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .._models import BaseModel
4
+
5
+ __all__ = ["MemoryUploadFileResponse"]
6
+
7
+
8
+ class MemoryUploadFileResponse(BaseModel):
9
+ id: str
10
+
11
+ status: str
@@ -20,13 +20,24 @@ class SearchExecuteParams(TypedDict, total=False):
20
20
  """Optional category filters"""
21
21
 
22
22
  chunk_threshold: Annotated[float, PropertyInfo(alias="chunkThreshold")]
23
- """Maximum number of chunks to return"""
23
+ """Threshold / sensitivity for chunk selection.
24
+
25
+ 0 is least sensitive (returns most chunks, more results), 1 is most sensitive
26
+ (returns lesser chunks, accurate results)
27
+ """
24
28
 
25
29
  doc_id: Annotated[str, PropertyInfo(alias="docId")]
26
- """Optional document ID to search within"""
30
+ """Optional document ID to search within.
31
+
32
+ You can use this to find chunks in a very large document.
33
+ """
27
34
 
28
35
  document_threshold: Annotated[float, PropertyInfo(alias="documentThreshold")]
29
- """Maximum number of documents to return"""
36
+ """Threshold / sensitivity for document selection.
37
+
38
+ 0 is least sensitive (returns most documents, more results), 1 is most sensitive
39
+ (returns lesser documents, accurate results)
40
+ """
30
41
 
31
42
  filters: Filters
32
43
  """Optional filters to apply to the search"""
@@ -34,17 +45,36 @@ class SearchExecuteParams(TypedDict, total=False):
34
45
  include_summary: Annotated[bool, PropertyInfo(alias="includeSummary")]
35
46
  """If true, include document summary in the response.
36
47
 
37
- This is helpful if you want a chatbot to know the context of the document.
48
+ This is helpful if you want a chatbot to know the full context of the document.
38
49
  """
39
50
 
40
51
  limit: int
41
52
  """Maximum number of results to return"""
42
53
 
43
54
  only_matching_chunks: Annotated[bool, PropertyInfo(alias="onlyMatchingChunks")]
44
- """If true, only return matching chunks without context"""
55
+ """If true, only return matching chunks without context.
56
+
57
+ Normally, we send the previous and next chunk to provide more context for LLMs.
58
+ If you only want the matching chunk, set this to true.
59
+ """
60
+
61
+ rerank: bool
62
+ """If true, rerank the results based on the query.
63
+
64
+ This is helpful if you want to ensure the most relevant results are returned.
65
+ """
66
+
67
+ rewrite_query: Annotated[bool, PropertyInfo(alias="rewriteQuery")]
68
+ """If true, rewrites the query to make it easier to find documents.
69
+
70
+ This increases the latency by about 400ms
71
+ """
45
72
 
46
73
  user_id: Annotated[str, PropertyInfo(alias="userId")]
47
- """End user ID this search is associated with"""
74
+ """End user ID this search is associated with.
75
+
76
+ NOTE: This also acts as a filter for the search.
77
+ """
48
78
 
49
79
 
50
80
  class FiltersUnionMember0(TypedDict, total=False):
@@ -0,0 +1,11 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict
4
+
5
+ from .._models import BaseModel
6
+
7
+ __all__ = ["SettingGetResponse"]
8
+
9
+
10
+ class SettingGetResponse(BaseModel):
11
+ settings: Dict[str, object]
@@ -2,29 +2,21 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Iterable
6
- from typing_extensions import Required, Annotated, TypedDict
5
+ from typing import Dict, List
6
+ from typing_extensions import Annotated, TypedDict
7
7
 
8
8
  from .._utils import PropertyInfo
9
9
 
10
- __all__ = ["SettingUpdateParams", "FilterTag"]
10
+ __all__ = ["SettingUpdateParams"]
11
11
 
12
12
 
13
13
  class SettingUpdateParams(TypedDict, total=False):
14
- categories: List[str]
15
-
16
14
  exclude_items: Annotated[List[str], PropertyInfo(alias="excludeItems")]
17
15
 
18
16
  filter_prompt: Annotated[str, PropertyInfo(alias="filterPrompt")]
19
17
 
20
- filter_tags: Annotated[Iterable[FilterTag], PropertyInfo(alias="filterTags")]
18
+ filter_tags: Annotated[Dict[str, List[str]], PropertyInfo(alias="filterTags")]
21
19
 
22
20
  include_items: Annotated[List[str], PropertyInfo(alias="includeItems")]
23
21
 
24
22
  should_llm_filter: Annotated[bool, PropertyInfo(alias="shouldLLMFilter")]
25
-
26
-
27
- class FilterTag(TypedDict, total=False):
28
- score: Required[float]
29
-
30
- tag: Required[str]
@@ -1,28 +1,20 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- from typing import List, Optional
3
+ from typing import Dict, List, Optional
4
4
 
5
5
  from pydantic import Field as FieldInfo
6
6
 
7
7
  from .._models import BaseModel
8
8
 
9
- __all__ = ["SettingUpdateResponse", "Settings", "SettingsFilterTag"]
10
-
11
-
12
- class SettingsFilterTag(BaseModel):
13
- score: float
14
-
15
- tag: str
9
+ __all__ = ["SettingUpdateResponse", "Settings"]
16
10
 
17
11
 
18
12
  class Settings(BaseModel):
19
- categories: Optional[List[str]] = None
20
-
21
13
  exclude_items: Optional[List[str]] = FieldInfo(alias="excludeItems", default=None)
22
14
 
23
15
  filter_prompt: Optional[str] = FieldInfo(alias="filterPrompt", default=None)
24
16
 
25
- filter_tags: Optional[List[SettingsFilterTag]] = FieldInfo(alias="filterTags", default=None)
17
+ filter_tags: Optional[Dict[str, List[str]]] = FieldInfo(alias="filterTags", default=None)
26
18
 
27
19
  include_items: Optional[List[str]] = FieldInfo(alias="includeItems", default=None)
28
20
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: supermemory
3
- Version: 0.1.0a1
3
+ Version: 3.0.0a1
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
@@ -108,6 +108,23 @@ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typ
108
108
 
109
109
  Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
110
110
 
111
+ ## File uploads
112
+
113
+ Request parameters that correspond to file uploads can be passed as `bytes`, or a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
114
+
115
+ ```python
116
+ from pathlib import Path
117
+ from supermemory import Supermemory
118
+
119
+ client = Supermemory()
120
+
121
+ client.memories.upload_file(
122
+ file=Path("/path/to/file"),
123
+ )
124
+ ```
125
+
126
+ The async client uses the exact same interface. If you pass a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance, the file contents will be read asynchronously automatically.
127
+
111
128
  ## Handling errors
112
129
 
113
130
  When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `supermemory.APIConnectionError` is raised.
@@ -124,7 +141,7 @@ from supermemory import Supermemory
124
141
  client = Supermemory()
125
142
 
126
143
  try:
127
- client.memory.create(
144
+ client.memories.add(
128
145
  content="This is a detailed article about machine learning concepts...",
129
146
  )
130
147
  except supermemory.APIConnectionError as e:
@@ -169,7 +186,7 @@ client = Supermemory(
169
186
  )
170
187
 
171
188
  # Or, configure per-request:
172
- client.with_options(max_retries=5).memory.create(
189
+ client.with_options(max_retries=5).memories.add(
173
190
  content="This is a detailed article about machine learning concepts...",
174
191
  )
175
192
  ```
@@ -194,7 +211,7 @@ client = Supermemory(
194
211
  )
195
212
 
196
213
  # Override per-request:
197
- client.with_options(timeout=5.0).memory.create(
214
+ client.with_options(timeout=5.0).memories.add(
198
215
  content="This is a detailed article about machine learning concepts...",
199
216
  )
200
217
  ```
@@ -237,12 +254,12 @@ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to
237
254
  from supermemory import Supermemory
238
255
 
239
256
  client = Supermemory()
240
- response = client.memory.with_raw_response.create(
257
+ response = client.memories.with_raw_response.add(
241
258
  content="This is a detailed article about machine learning concepts...",
242
259
  )
243
260
  print(response.headers.get('X-My-Header'))
244
261
 
245
- memory = response.parse() # get the object that `memory.create()` would have returned
262
+ memory = response.parse() # get the object that `memories.add()` would have returned
246
263
  print(memory.id)
247
264
  ```
248
265
 
@@ -257,7 +274,7 @@ The above interface eagerly reads the full response body when you make the reque
257
274
  To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
258
275
 
259
276
  ```python
260
- with client.memory.with_streaming_response.create(
277
+ with client.memories.with_streaming_response.add(
261
278
  content="This is a detailed article about machine learning concepts...",
262
279
  ) as response:
263
280
  print(response.headers.get("X-My-Header"))
@@ -0,0 +1,56 @@
1
+ supermemory/__init__.py,sha256=xPoVpgMP4GGoRGbpZt7DhB-Jho6kEXZPUO3Lv1ioi60,2614
2
+ supermemory/_base_client.py,sha256=9HYnqL_kzsVgh2Ju7mJ3ODnE6lr-ITvlAsN1orWPyrE,64849
3
+ supermemory/_client.py,sha256=VwXe_ngJpXvGo9nsFxScYWnui7k57-OyLXbnqqBTVJE,16892
4
+ supermemory/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
+ supermemory/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ supermemory/_exceptions.py,sha256=5nnX7W8L_eA6LkX3SBl7csJy5d9QEcDqRVuwDq8wVh8,3230
7
+ supermemory/_files.py,sha256=GME47rR56vqhHb7qh5NZtaLIWsA6ZrCHHGdBKjB0Q3s,3620
8
+ supermemory/_models.py,sha256=mB2r2VWQq49jG-F0RIXDrBxPp3v-Eg12wMOtVTNxtv4,29057
9
+ supermemory/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
+ supermemory/_resource.py,sha256=_wuaB1exMy-l-qqdJJdTv15hH5qBSN2Rj9CFwjXTZJU,1130
11
+ supermemory/_response.py,sha256=Yh869-U8INkojKZHFsNw69z5Y2BrK2isgRJ8mifEURM,28848
12
+ supermemory/_streaming.py,sha256=MGbosxSTqq0_JG52hvH2Z-Mr_Y95ws5UdFw77_iYukc,10120
13
+ supermemory/_types.py,sha256=l9FVOIsfa8FG9tbvxFBA1mj_yLc5ibf1niQ8xecMYdY,6148
14
+ supermemory/_version.py,sha256=wCCfeACsaZpE42IshtEsMGjs3AWMKQDR9A2bcr6LG_M,171
15
+ supermemory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ supermemory/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
+ supermemory/_utils/_logs.py,sha256=iceljYaEUb4Q4q1SgbSzwSrlJA64ISbaccczzZ8Z9Vg,789
18
+ supermemory/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
19
+ supermemory/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
+ supermemory/_utils/_resources_proxy.py,sha256=9MqlmhIEoyeVraNz90vnq1pS6EOxSqvYVlVK-CvLMmQ,614
21
+ supermemory/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
22
+ supermemory/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
23
+ supermemory/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
24
+ supermemory/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
25
+ supermemory/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
26
+ supermemory/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
+ supermemory/resources/__init__.py,sha256=c1dal-ngMY7gwIf9PDPapYx6rHi670pREX5t3_d6298,2019
28
+ supermemory/resources/connections.py,sha256=JdKae0Ak_AF6l3OfvzgZue1OwaO1btayzaIyhHJkOzI,13890
29
+ supermemory/resources/memories.py,sha256=qhimvdhQwIR67Pr-n1cL49AJ7fafkYwHgnkNJ8a-l5o,25076
30
+ supermemory/resources/search.py,sha256=XlVxt8dDoeHo2l8646XtPwk1KISTVOX3FYSpod2ubrQ,11982
31
+ supermemory/resources/settings.py,sha256=2OmoxRFkcYyaQX_Y73YAIASX3-jeo7TXONsNCeqXmuY,9214
32
+ supermemory/types/__init__.py,sha256=SDcNl1lPk2B9Un5i60j9ImG3A3YkPuI7eSiAW8am9hM,1727
33
+ supermemory/types/connection_create_params.py,sha256=x5N6Hi6Mj61aHuKbPWEnUTTWoZaO6jMK21X4Je7Hcgk,538
34
+ supermemory/types/connection_create_response.py,sha256=i4sb0DSRs7wVVd8xDBOtr7vw-YbaeZ7MydlQLYvlvJs,468
35
+ supermemory/types/connection_get_response.py,sha256=gKiadjQFWTDMg89ZA0BBdmkHqTzHiFCwSjxddltFI7U,487
36
+ supermemory/types/connection_list_params.py,sha256=2GbRIvOjkwekG47ntt3swO5eIarjVOSYT2_VRoUTRbA,364
37
+ supermemory/types/connection_list_response.py,sha256=XtalXHGpV-XD1gLmAYva_FBSWqLOnr6UBG85At7jK6U,640
38
+ supermemory/types/memory_add_params.py,sha256=pm-augsAX70yHWgKod4cD2akVrmlNRamYtBNxp61FfQ,492
39
+ supermemory/types/memory_add_response.py,sha256=5lim8sVXM7WzG8tUuKORHEe2lJc6yVWvyjylzNsLGjw,219
40
+ supermemory/types/memory_delete_response.py,sha256=1kb_ExXPaaZLyuv4-fQuumBamTPklFrpvMv0ZHhZf2U,214
41
+ supermemory/types/memory_get_response.py,sha256=-rvwVXgw6Zwom1D9dBvRJEMHCiYaOrSs7gjwukESwFk,219
42
+ supermemory/types/memory_list_params.py,sha256=kjyYz3NcnjgKzE-g442lQ1kyIsAtMMXQG-baLHvJ4KU,546
43
+ supermemory/types/memory_list_response.py,sha256=S-aEqIt9QOmcdU893St-ayy8t9mDDasjkLknM-8SpdA,2822
44
+ supermemory/types/memory_update_params.py,sha256=WItgIxXxcFp2Uf0A9B00lC1hLO14bjrnnFS1VmK1Gko,498
45
+ supermemory/types/memory_update_response.py,sha256=fvfO9lGM8xv2EUOQfOSxqig6fx6-ykq7syW69er_2ng,225
46
+ supermemory/types/memory_upload_file_params.py,sha256=vZUYsfyzEMxESmfSOPBcDINXN_Ts4rdFvdaDiIMkme0,329
47
+ supermemory/types/memory_upload_file_response.py,sha256=KTq6AExBMz7eMt8az1TgMSSNMTktKk0d0xItCwHRNl0,233
48
+ supermemory/types/search_execute_params.py,sha256=bTm7eovMNh_9XoWqc7AxwHotvoXgFAOGqAaqoIWUiNY,2811
49
+ supermemory/types/search_execute_response.py,sha256=Z0T76z1xKA7bdKZ96kyXTOkiMRk7TzUHYKEdR6VNcHw,1216
50
+ supermemory/types/setting_get_response.py,sha256=9sU2FG6MleeZreCie1Lysd2-ALrrYH8qRXcpiu21wn4,249
51
+ supermemory/types/setting_update_params.py,sha256=O6kA68iaGKcHieJzYKSY9_zOZAyl37hCBBkSL7EjzJQ,714
52
+ supermemory/types/setting_update_response.py,sha256=B4C6XmSeOxaPJM6_QN2vIN7Gzz2sSXWy3a2GYT-hzmw,804
53
+ supermemory-3.0.0a1.dist-info/METADATA,sha256=4_uCqBXURJ6Pc_avkbUJ_G_6n1F_rp_Yk67DViefXmA,13761
54
+ supermemory-3.0.0a1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
55
+ supermemory-3.0.0a1.dist-info/licenses/LICENSE,sha256=M2NcpYEBpakciOULpWzo-xO2Lincf74gGwfaU00Sct0,11341
56
+ supermemory-3.0.0a1.dist-info/RECORD,,
@@ -1,23 +0,0 @@
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 Dict, Union
6
- from typing_extensions import Required, Annotated, TypedDict
7
-
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["MemoryCreateParams"]
11
-
12
-
13
- class MemoryCreateParams(TypedDict, total=False):
14
- content: Required[str]
15
- """Content of the memory"""
16
-
17
- id: str
18
-
19
- metadata: Dict[str, Union[str, float, bool]]
20
- """Optional metadata for the memory"""
21
-
22
- user_id: Annotated[str, PropertyInfo(alias="userId")]
23
- """Optional end user ID this memory belongs to"""
@@ -1,47 +0,0 @@
1
- supermemory/__init__.py,sha256=zmdpovY5xGPUklfTkFT_KJkaLs5W9DZ3fVG2EDMWIXA,2503
2
- supermemory/_base_client.py,sha256=9HYnqL_kzsVgh2Ju7mJ3ODnE6lr-ITvlAsN1orWPyrE,64849
3
- supermemory/_client.py,sha256=CZKei9ZiIUQm_D9cfvdRL3TBmywARU8U8lN97UpfZaI,16777
4
- supermemory/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
- supermemory/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
- supermemory/_exceptions.py,sha256=5nnX7W8L_eA6LkX3SBl7csJy5d9QEcDqRVuwDq8wVh8,3230
7
- supermemory/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
8
- supermemory/_models.py,sha256=mB2r2VWQq49jG-F0RIXDrBxPp3v-Eg12wMOtVTNxtv4,29057
9
- supermemory/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
- supermemory/_resource.py,sha256=_wuaB1exMy-l-qqdJJdTv15hH5qBSN2Rj9CFwjXTZJU,1130
11
- supermemory/_response.py,sha256=Yh869-U8INkojKZHFsNw69z5Y2BrK2isgRJ8mifEURM,28848
12
- supermemory/_streaming.py,sha256=MGbosxSTqq0_JG52hvH2Z-Mr_Y95ws5UdFw77_iYukc,10120
13
- supermemory/_types.py,sha256=l9FVOIsfa8FG9tbvxFBA1mj_yLc5ibf1niQ8xecMYdY,6148
14
- supermemory/_version.py,sha256=yL5hpU0Q4na57UkkEOGFiZI4tWBdExc1T2LnhLSkaQA,171
15
- supermemory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- supermemory/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
- supermemory/_utils/_logs.py,sha256=iceljYaEUb4Q4q1SgbSzwSrlJA64ISbaccczzZ8Z9Vg,789
18
- supermemory/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwGE,1902
19
- supermemory/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
- supermemory/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
21
- supermemory/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
22
- supermemory/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
23
- supermemory/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
24
- supermemory/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
25
- supermemory/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
26
- supermemory/resources/__init__.py,sha256=dx0g3SAuMRAeRsNdMWR4Wtna-6UKmhSbh-iOFEAcJI4,1980
27
- supermemory/resources/connection.py,sha256=uzsEXN02BVJgbzN289qCmPYqDW-4BanY6eb8CYWOTXU,10017
28
- supermemory/resources/memory.py,sha256=DU5i4Ftgh2o2anu6exptosd58d5g2PZGvvFzg3MxJqc,17362
29
- supermemory/resources/search.py,sha256=Qe0GMFVTsDMg7CCtffK4NL-7I_AYccuL25u0nzbfMUI,9536
30
- supermemory/resources/settings.py,sha256=VKqzCi7e4z6hJuNfwr0zW1kFzhWKGkCZdlDwQKfiyg4,7392
31
- supermemory/types/__init__.py,sha256=CMR0HNDklN-fOm6r0-WQQfRTrwc1yqdpDCLHdm-xkvo,1080
32
- supermemory/types/connection_create_params.py,sha256=NVHZ152C3ioga5on597HRYAM7HBsK0T4AGua2V5R0qE,404
33
- supermemory/types/connection_create_response.py,sha256=jSshnS9cEjZSzucWNIgEe3Xna_NSb71oHCUSDpihJYU,348
34
- supermemory/types/memory_create_params.py,sha256=sgK_rNTI1NyHN9Kkb7-OTe0XoAeGSDJCnyDEsLh69dg,614
35
- supermemory/types/memory_create_response.py,sha256=zPcyrKM1aYK62tjGLWGn9g-K_svhgHBobKQoS99dNxc,225
36
- supermemory/types/memory_delete_response.py,sha256=1kb_ExXPaaZLyuv4-fQuumBamTPklFrpvMv0ZHhZf2U,214
37
- supermemory/types/memory_get_response.py,sha256=qb_D77eNJJ1v07I0Dpu-vh3YKAndcEWeNg3oQvlCI60,565
38
- supermemory/types/memory_list_params.py,sha256=kjyYz3NcnjgKzE-g442lQ1kyIsAtMMXQG-baLHvJ4KU,546
39
- supermemory/types/memory_list_response.py,sha256=W9NyBc1hWew9fgyslHKuIy2SCQxi7cXRKa4qd3f0V8Q,1544
40
- supermemory/types/search_execute_params.py,sha256=WOw_Ijj1IxCmEU3O0zQzbmj1ud-DVgVop7UoKBALvew,1870
41
- supermemory/types/search_execute_response.py,sha256=Z0T76z1xKA7bdKZ96kyXTOkiMRk7TzUHYKEdR6VNcHw,1216
42
- supermemory/types/setting_update_params.py,sha256=P7P0mZsGRtM-zEhAQNaYxssJZsToK1YGPHUvqWgrqWo,861
43
- supermemory/types/setting_update_response.py,sha256=R3PR04k_DoYkcM54UqHjI_vP7G6AvThoSd4lcyZjDoE,935
44
- supermemory-0.1.0a1.dist-info/METADATA,sha256=t4wQ5u7EdrjoyzV8vJysE_SneJKiJrRTkkXPM3GhP0Q,13174
45
- supermemory-0.1.0a1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
46
- supermemory-0.1.0a1.dist-info/licenses/LICENSE,sha256=M2NcpYEBpakciOULpWzo-xO2Lincf74gGwfaU00Sct0,11341
47
- supermemory-0.1.0a1.dist-info/RECORD,,