supermemory 3.0.0a28__py3-none-any.whl → 3.0.0a30__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.

Files changed (42) hide show
  1. supermemory/_base_client.py +3 -3
  2. supermemory/_client.py +1 -9
  3. supermemory/_compat.py +48 -48
  4. supermemory/_files.py +1 -1
  5. supermemory/_models.py +41 -41
  6. supermemory/_types.py +35 -1
  7. supermemory/_utils/__init__.py +9 -2
  8. supermemory/_utils/_compat.py +45 -0
  9. supermemory/_utils/_datetime_parse.py +136 -0
  10. supermemory/_utils/_transform.py +11 -1
  11. supermemory/_utils/_typing.py +6 -1
  12. supermemory/_utils/_utils.py +0 -1
  13. supermemory/_version.py +1 -1
  14. supermemory/resources/__init__.py +0 -14
  15. supermemory/resources/connections.py +20 -20
  16. supermemory/resources/search.py +9 -9
  17. supermemory/types/__init__.py +1 -9
  18. supermemory/types/connection_create_params.py +3 -2
  19. supermemory/types/connection_delete_by_provider_params.py +2 -2
  20. supermemory/types/connection_get_by_tags_params.py +2 -2
  21. supermemory/types/connection_import_params.py +2 -2
  22. supermemory/types/connection_import_response.py +7 -0
  23. supermemory/types/connection_list_documents_params.py +2 -2
  24. supermemory/types/connection_list_params.py +2 -2
  25. supermemory/types/search_documents_params.py +3 -2
  26. supermemory/types/search_execute_params.py +3 -2
  27. supermemory/types/search_memories_response.py +10 -7
  28. {supermemory-3.0.0a28.dist-info → supermemory-3.0.0a30.dist-info}/METADATA +18 -25
  29. supermemory-3.0.0a30.dist-info/RECORD +60 -0
  30. supermemory/resources/memories.py +0 -796
  31. supermemory/types/memory_add_params.py +0 -53
  32. supermemory/types/memory_add_response.py +0 -11
  33. supermemory/types/memory_get_response.py +0 -103
  34. supermemory/types/memory_list_params.py +0 -34
  35. supermemory/types/memory_list_response.py +0 -91
  36. supermemory/types/memory_update_params.py +0 -53
  37. supermemory/types/memory_update_response.py +0 -11
  38. supermemory/types/memory_upload_file_params.py +0 -16
  39. supermemory/types/memory_upload_file_response.py +0 -11
  40. supermemory-3.0.0a28.dist-info/RECORD +0 -67
  41. {supermemory-3.0.0a28.dist-info → supermemory-3.0.0a30.dist-info}/WHEEL +0 -0
  42. {supermemory-3.0.0a28.dist-info → supermemory-3.0.0a30.dist-info}/licenses/LICENSE +0 -0
@@ -1,53 +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, List, Union
6
- from typing_extensions import Annotated, TypedDict
7
-
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["MemoryAddParams"]
11
-
12
-
13
- class MemoryAddParams(TypedDict, total=False):
14
- container_tag: Annotated[str, PropertyInfo(alias="containerTag")]
15
- """Optional tag this memory should be containerized by.
16
-
17
- This can be an ID for your user, a project ID, or any other identifier you wish
18
- to use to group memories.
19
- """
20
-
21
- container_tags: Annotated[List[str], PropertyInfo(alias="containerTags")]
22
- """
23
- (DEPRECATED: Use containerTag instead) Optional tags this memory should be
24
- containerized by. This can be an ID for your user, a project ID, or any other
25
- identifier you wish to use to group memories.
26
- """
27
-
28
- content: str
29
- """The content to extract and process into a memory.
30
-
31
- This can be a URL to a website, a PDF, an image, or a video.
32
-
33
- Plaintext: Any plaintext format
34
-
35
- URL: A URL to a website, PDF, image, or video
36
-
37
- We automatically detect the content type from the url's response format.
38
- """
39
-
40
- custom_id: Annotated[str, PropertyInfo(alias="customId")]
41
- """Optional custom ID of the memory.
42
-
43
- This could be an ID from your database that will uniquely identify this memory.
44
- """
45
-
46
- metadata: Dict[str, Union[str, float, bool]]
47
- """Optional metadata for the memory.
48
-
49
- This is used to store additional information about the memory. You can use this
50
- to store any additional information you need about the memory. Metadata can be
51
- filtered through. Keys must be strings and are case sensitive. Values can be
52
- strings, numbers, or booleans. You cannot nest objects.
53
- """
@@ -1,11 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from .._models import BaseModel
4
-
5
- __all__ = ["MemoryAddResponse"]
6
-
7
-
8
- class MemoryAddResponse(BaseModel):
9
- id: str
10
-
11
- status: str
@@ -1,103 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Dict, List, Union, Optional
4
- from datetime import datetime
5
- from typing_extensions import Literal
6
-
7
- from pydantic import Field as FieldInfo
8
-
9
- from .._models import BaseModel
10
-
11
- __all__ = ["MemoryGetResponse"]
12
-
13
-
14
- class MemoryGetResponse(BaseModel):
15
- id: str
16
- """Unique identifier of the memory."""
17
-
18
- connection_id: Optional[str] = FieldInfo(alias="connectionId", default=None)
19
- """Optional ID of connection the memory was created from.
20
-
21
- This is useful for identifying the source of the memory.
22
- """
23
-
24
- content: Optional[str] = None
25
- """The content to extract and process into a memory.
26
-
27
- This can be a URL to a website, a PDF, an image, or a video.
28
-
29
- Plaintext: Any plaintext format
30
-
31
- URL: A URL to a website, PDF, image, or video
32
-
33
- We automatically detect the content type from the url's response format.
34
- """
35
-
36
- created_at: datetime = FieldInfo(alias="createdAt")
37
- """Creation timestamp"""
38
-
39
- custom_id: Optional[str] = FieldInfo(alias="customId", default=None)
40
- """Optional custom ID of the memory.
41
-
42
- This could be an ID from your database that will uniquely identify this memory.
43
- """
44
-
45
- metadata: Union[str, float, bool, Dict[str, object], List[object], None] = None
46
- """Optional metadata for the memory.
47
-
48
- This is used to store additional information about the memory. You can use this
49
- to store any additional information you need about the memory. Metadata can be
50
- filtered through. Keys must be strings and are case sensitive. Values can be
51
- strings, numbers, or booleans. You cannot nest objects.
52
- """
53
-
54
- og_image: Optional[str] = FieldInfo(alias="ogImage", default=None)
55
-
56
- source: Optional[str] = None
57
- """Source of the memory"""
58
-
59
- status: Literal["unknown", "queued", "extracting", "chunking", "embedding", "indexing", "done", "failed"]
60
- """Status of the memory"""
61
-
62
- summary: Optional[str] = None
63
- """Summary of the memory content"""
64
-
65
- summary_embedding_model: Optional[str] = FieldInfo(alias="summaryEmbeddingModel", default=None)
66
-
67
- summary_embedding_model_new: Optional[str] = FieldInfo(alias="summaryEmbeddingModelNew", default=None)
68
-
69
- summary_embedding_new: Optional[List[float]] = FieldInfo(alias="summaryEmbeddingNew", default=None)
70
-
71
- title: Optional[str] = None
72
- """Title of the memory"""
73
-
74
- type: Literal[
75
- "text",
76
- "pdf",
77
- "tweet",
78
- "google_doc",
79
- "google_slide",
80
- "google_sheet",
81
- "image",
82
- "video",
83
- "notion_doc",
84
- "webpage",
85
- "onedrive",
86
- ]
87
- """Type of the memory"""
88
-
89
- updated_at: datetime = FieldInfo(alias="updatedAt")
90
- """Last update timestamp"""
91
-
92
- container_tags: Optional[List[str]] = FieldInfo(alias="containerTags", default=None)
93
- """Optional tags this memory should be containerized by.
94
-
95
- This can be an ID for your user, a project ID, or any other identifier you wish
96
- to use to group memories.
97
- """
98
-
99
- raw: None = None
100
- """Raw content of the memory"""
101
-
102
- url: Optional[str] = None
103
- """URL of the memory"""
@@ -1,34 +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 List, Union
6
- from typing_extensions import Literal, Annotated, TypedDict
7
-
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["MemoryListParams"]
11
-
12
-
13
- class MemoryListParams(TypedDict, total=False):
14
- container_tags: Annotated[List[str], PropertyInfo(alias="containerTags")]
15
- """Optional tags this memory should be containerized by.
16
-
17
- This can be an ID for your user, a project ID, or any other identifier you wish
18
- to use to group memories.
19
- """
20
-
21
- filters: str
22
- """Optional filters to apply to the search"""
23
-
24
- limit: Union[str, float]
25
- """Number of items per page"""
26
-
27
- order: Literal["asc", "desc"]
28
- """Sort order"""
29
-
30
- page: Union[str, float]
31
- """Page number to fetch"""
32
-
33
- sort: Literal["createdAt", "updatedAt"]
34
- """Field to sort by"""
@@ -1,91 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Dict, List, Union, Optional
4
- from datetime import datetime
5
- from typing_extensions import Literal
6
-
7
- from pydantic import Field as FieldInfo
8
-
9
- from .._models import BaseModel
10
-
11
- __all__ = ["MemoryListResponse", "Memory", "Pagination"]
12
-
13
-
14
- class Memory(BaseModel):
15
- id: str
16
- """Unique identifier of the memory."""
17
-
18
- connection_id: Optional[str] = FieldInfo(alias="connectionId", default=None)
19
- """Optional ID of connection the memory was created from.
20
-
21
- This is useful for identifying the source of the memory.
22
- """
23
-
24
- created_at: datetime = FieldInfo(alias="createdAt")
25
- """Creation timestamp"""
26
-
27
- custom_id: Optional[str] = FieldInfo(alias="customId", default=None)
28
- """Optional custom ID of the memory.
29
-
30
- This could be an ID from your database that will uniquely identify this memory.
31
- """
32
-
33
- metadata: Union[str, float, bool, Dict[str, object], List[object], None] = None
34
- """Optional metadata for the memory.
35
-
36
- This is used to store additional information about the memory. You can use this
37
- to store any additional information you need about the memory. Metadata can be
38
- filtered through. Keys must be strings and are case sensitive. Values can be
39
- strings, numbers, or booleans. You cannot nest objects.
40
- """
41
-
42
- status: Literal["unknown", "queued", "extracting", "chunking", "embedding", "indexing", "done", "failed"]
43
- """Status of the memory"""
44
-
45
- summary: Optional[str] = None
46
- """Summary of the memory content"""
47
-
48
- title: Optional[str] = None
49
- """Title of the memory"""
50
-
51
- type: Literal[
52
- "text",
53
- "pdf",
54
- "tweet",
55
- "google_doc",
56
- "google_slide",
57
- "google_sheet",
58
- "image",
59
- "video",
60
- "notion_doc",
61
- "webpage",
62
- "onedrive",
63
- ]
64
- """Type of the memory"""
65
-
66
- updated_at: datetime = FieldInfo(alias="updatedAt")
67
- """Last update timestamp"""
68
-
69
- container_tags: Optional[List[str]] = FieldInfo(alias="containerTags", default=None)
70
- """Optional tags this memory should be containerized by.
71
-
72
- This can be an ID for your user, a project ID, or any other identifier you wish
73
- to use to group memories.
74
- """
75
-
76
-
77
- class Pagination(BaseModel):
78
- current_page: float = FieldInfo(alias="currentPage")
79
-
80
- limit: float
81
-
82
- total_items: float = FieldInfo(alias="totalItems")
83
-
84
- total_pages: float = FieldInfo(alias="totalPages")
85
-
86
-
87
- class MemoryListResponse(BaseModel):
88
- memories: List[Memory]
89
-
90
- pagination: Pagination
91
- """Pagination metadata"""
@@ -1,53 +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, List, Union
6
- from typing_extensions import Annotated, TypedDict
7
-
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["MemoryUpdateParams"]
11
-
12
-
13
- class MemoryUpdateParams(TypedDict, total=False):
14
- container_tag: Annotated[str, PropertyInfo(alias="containerTag")]
15
- """Optional tag this memory should be containerized by.
16
-
17
- This can be an ID for your user, a project ID, or any other identifier you wish
18
- to use to group memories.
19
- """
20
-
21
- container_tags: Annotated[List[str], PropertyInfo(alias="containerTags")]
22
- """
23
- (DEPRECATED: Use containerTag instead) Optional tags this memory should be
24
- containerized by. This can be an ID for your user, a project ID, or any other
25
- identifier you wish to use to group memories.
26
- """
27
-
28
- content: str
29
- """The content to extract and process into a memory.
30
-
31
- This can be a URL to a website, a PDF, an image, or a video.
32
-
33
- Plaintext: Any plaintext format
34
-
35
- URL: A URL to a website, PDF, image, or video
36
-
37
- We automatically detect the content type from the url's response format.
38
- """
39
-
40
- custom_id: Annotated[str, PropertyInfo(alias="customId")]
41
- """Optional custom ID of the memory.
42
-
43
- This could be an ID from your database that will uniquely identify this memory.
44
- """
45
-
46
- metadata: Dict[str, Union[str, float, bool]]
47
- """Optional metadata for the memory.
48
-
49
- This is used to store additional information about the memory. You can use this
50
- to store any additional information you need about the memory. Metadata can be
51
- filtered through. Keys must be strings and are case sensitive. Values can be
52
- strings, numbers, or booleans. You cannot nest objects.
53
- """
@@ -1,11 +0,0 @@
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
@@ -1,16 +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_extensions import Required, Annotated, TypedDict
6
-
7
- from .._types import FileTypes
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["MemoryUploadFileParams"]
11
-
12
-
13
- class MemoryUploadFileParams(TypedDict, total=False):
14
- file: Required[FileTypes]
15
-
16
- container_tags: Annotated[str, PropertyInfo(alias="containerTags")]
@@ -1,11 +0,0 @@
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
@@ -1,67 +0,0 @@
1
- supermemory/__init__.py,sha256=PDWpv0_OWO8lBFh21lQl5k0zrlBzcGf643CKXRoQgzM,2664
2
- supermemory/_base_client.py,sha256=dfr5i58hXYTTqDiuvoEKTVNDiQ8EN425dcB7o0VCL98,67040
3
- supermemory/_client.py,sha256=2KcNz77blgIaQddenKFBrWXUqBG7IlP4vGuVYTix5bk,16890
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=9QITJCyATjxJqhMXckfLrrOKltxCpKhbrlZX_NcL9WQ,3616
8
- supermemory/_models.py,sha256=KvjsMfb88XZlFUKVoOxr8OyDj47MhoH2OKqWNEbBhk4,30010
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=ohS8PFDHBFM-0ua6YsUlS55BPHft3xY6DhiIKaYrlN0,6202
14
- supermemory/_version.py,sha256=FIJe_U2fn7nBAFdg497bPC-mSA8zuOaDhHBAywn2FNM,172
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=-DabGIc4_3qFvFRmBOdHGtu4NkaUOaYz3y50CjpqMKQ,33199
29
- supermemory/resources/memories.py,sha256=IJ-78jD-3rlLOZCvJD3yirMRzZWkA15VBAx-Dx4OMD4,32192
30
- supermemory/resources/search.py,sha256=Lp1SchUinbM9AyvKghz4SCqFEohr5KZTegWMqF4po2I,28497
31
- supermemory/resources/settings.py,sha256=tLM7ya1CEYI_TO8DMP_KLxXHqsxOeq3R3Xs4CQnvPuU,11855
32
- supermemory/types/__init__.py,sha256=xCyl1ivjR-Viae5zOWa8jmzs24ueiSz3Fw_yIAUjFGk,2875
33
- supermemory/types/connection_create_params.py,sha256=bYYKu3ns60PX6Mt34UQUpYwThB3SBZsKn5tW0c46DUM,630
34
- supermemory/types/connection_create_response.py,sha256=i4sb0DSRs7wVVd8xDBOtr7vw-YbaeZ7MydlQLYvlvJs,468
35
- supermemory/types/connection_delete_by_id_response.py,sha256=guD1vxqV2wiQnwnWCZSQH0z2HYXQOtvicRzouPVkHXA,243
36
- supermemory/types/connection_delete_by_provider_params.py,sha256=VnVud6ADbvdYY37BqZ8T-s3wC4xuvbiztge96OuzigM,528
37
- supermemory/types/connection_delete_by_provider_response.py,sha256=PgMQuSIhVFSF2LVa0FBei2bj3gyVRB7FyOi_-M-Rugc,255
38
- supermemory/types/connection_get_by_id_response.py,sha256=H0xkm41aGnhzN29iPWit9xMjTvKfgoE8BY5xDlEYNtU,650
39
- supermemory/types/connection_get_by_tags_params.py,sha256=kPQfi7nrM3DbarVx8_Nlq20hVEqelPmfouizAZ6NHDY,504
40
- supermemory/types/connection_get_by_tags_response.py,sha256=EX5wP1PHFO5uurKiTacudDX3Syp65TUJLN2KVZrb9QE,654
41
- supermemory/types/connection_import_params.py,sha256=HbMAE6vjmhpJk4shqa9d78hxh_q3J6hdST8GUKGEopM,488
42
- supermemory/types/connection_list_documents_params.py,sha256=pXMe7sDpqSwBVjPsY2qyTep6rlnfnzE150WdY0-CnOU,500
43
- supermemory/types/connection_list_documents_response.py,sha256=0IdHufx0yErjfmoXYeY0KJ2QID9C-_58joyGEuu8gd4,682
44
- supermemory/types/connection_list_params.py,sha256=E0thiUUlyGHeLmb-iAbat1vl8BOqaqCOPDjtYolKkng,482
45
- supermemory/types/connection_list_response.py,sha256=D4mYePuR9NAGMDkbgDncN-KjulLXbCWDfRBvRDXSE58,795
46
- supermemory/types/memory_add_params.py,sha256=UFlCZ1BrXvmoNwYPUoZ_aTyAPD3vKxMwiL2_Cme1toY,1805
47
- supermemory/types/memory_add_response.py,sha256=5lim8sVXM7WzG8tUuKORHEe2lJc6yVWvyjylzNsLGjw,219
48
- supermemory/types/memory_get_response.py,sha256=qWe-mdEBA-d-zklNnsbULSlGax3KXBMHlyLTPpNglFg,3164
49
- supermemory/types/memory_list_params.py,sha256=nE4fnYdubdjbGy5-7BxmSms6owZZIbv8PegZxRRzwjA,914
50
- supermemory/types/memory_list_response.py,sha256=Lq2ChggQ1YCFQLi2M9u61hxRwGf2ib3p9_X8mywJF78,2620
51
- supermemory/types/memory_update_params.py,sha256=Ln-Z_oAF9XQN0aA_oxkRcHVJ7eBSMhZ1XvRR5kyUliM,1811
52
- supermemory/types/memory_update_response.py,sha256=fvfO9lGM8xv2EUOQfOSxqig6fx6-ykq7syW69er_2ng,225
53
- supermemory/types/memory_upload_file_params.py,sha256=jE3IxTOsFiuVQsi8b-ql5Q4ZT5HJG2X1ysL8mHCgdLQ,447
54
- supermemory/types/memory_upload_file_response.py,sha256=KTq6AExBMz7eMt8az1TgMSSNMTktKk0d0xItCwHRNl0,233
55
- supermemory/types/search_documents_params.py,sha256=ZugNc4gg8a8O_CqGL_zlHpMpEQRe91ACtTSHwGm0fsw,3134
56
- supermemory/types/search_documents_response.py,sha256=dCQ1UUOALmfPqnUpX_-_kFbV4eHPFcuT1b7AVtLq5y4,1464
57
- supermemory/types/search_execute_params.py,sha256=8JRtcQ7G1TmG9JW-f1XwNmvT1llM6FsPx0kkQN1Ellw,3130
58
- supermemory/types/search_execute_response.py,sha256=U1Fh4JX433A442Di9nnaQq6ts1olDdz3-SSbKzIFBPc,1460
59
- supermemory/types/search_memories_params.py,sha256=4SI8Z3ji_E_yqKmY5Nl-mL-7xODmRVV3TPsAeVefekU,1860
60
- supermemory/types/search_memories_response.py,sha256=oXy9qe9Ri-WAUcpU3RzwuHgH-_DAwppyu33Bzfm8BZY,3048
61
- supermemory/types/setting_get_response.py,sha256=WvgAb9zGMsMnAhLiYk6h5NBptnq0D06TnuoI4EJg5Ds,1648
62
- supermemory/types/setting_update_params.py,sha256=KsreaS35v25aRKBY5vHna3hZ31U3b1Q5ruQLoM0gcyE,1710
63
- supermemory/types/setting_update_response.py,sha256=F__RcFFWiiSw11IV8PsWn6POEb1crDwO8QwHEQToVuQ,1806
64
- supermemory-3.0.0a28.dist-info/METADATA,sha256=F0EhhJz2__jm-0_LheM_qwX_1rHY5A2qBziYoFcUXAo,14689
65
- supermemory-3.0.0a28.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
66
- supermemory-3.0.0a28.dist-info/licenses/LICENSE,sha256=M2NcpYEBpakciOULpWzo-xO2Lincf74gGwfaU00Sct0,11341
67
- supermemory-3.0.0a28.dist-info/RECORD,,