supermemory 3.0.0a1__py3-none-any.whl → 3.0.0a19__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 (32) hide show
  1. supermemory/__init__.py +2 -1
  2. supermemory/_base_client.py +44 -2
  3. supermemory/_client.py +1 -9
  4. supermemory/_models.py +2 -0
  5. supermemory/_types.py +2 -0
  6. supermemory/_version.py +1 -1
  7. supermemory/resources/__init__.py +0 -14
  8. supermemory/resources/connections.py +30 -117
  9. supermemory/resources/memories.py +100 -137
  10. supermemory/resources/settings.py +47 -11
  11. supermemory/types/__init__.py +0 -7
  12. supermemory/types/connection_create_params.py +5 -3
  13. supermemory/types/connection_get_response.py +4 -0
  14. supermemory/types/memory_add_params.py +28 -0
  15. supermemory/types/memory_get_response.py +87 -1
  16. supermemory/types/memory_update_params.py +28 -0
  17. supermemory/types/setting_get_response.py +36 -2
  18. supermemory/types/setting_update_params.py +30 -6
  19. supermemory/types/setting_update_response.py +34 -8
  20. {supermemory-3.0.0a1.dist-info → supermemory-3.0.0a19.dist-info}/METADATA +46 -9
  21. supermemory-3.0.0a19.dist-info/RECORD +48 -0
  22. supermemory/resources/search.py +0 -296
  23. supermemory/types/connection_list_params.py +0 -13
  24. supermemory/types/connection_list_response.py +0 -25
  25. supermemory/types/memory_delete_response.py +0 -9
  26. supermemory/types/memory_list_params.py +0 -24
  27. supermemory/types/memory_list_response.py +0 -95
  28. supermemory/types/search_execute_params.py +0 -86
  29. supermemory/types/search_execute_response.py +0 -52
  30. supermemory-3.0.0a1.dist-info/RECORD +0 -56
  31. {supermemory-3.0.0a1.dist-info → supermemory-3.0.0a19.dist-info}/WHEEL +0 -0
  32. {supermemory-3.0.0a1.dist-info → supermemory-3.0.0a19.dist-info}/licenses/LICENSE +0 -0
@@ -1,296 +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
6
- from typing_extensions import Literal
7
-
8
- import httpx
9
-
10
- from ..types import search_execute_params
11
- from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
12
- from .._utils import maybe_transform, async_maybe_transform
13
- from .._compat import cached_property
14
- from .._resource import SyncAPIResource, AsyncAPIResource
15
- from .._response import (
16
- to_raw_response_wrapper,
17
- to_streamed_response_wrapper,
18
- async_to_raw_response_wrapper,
19
- async_to_streamed_response_wrapper,
20
- )
21
- from .._base_client import make_request_options
22
- from ..types.search_execute_response import SearchExecuteResponse
23
-
24
- __all__ = ["SearchResource", "AsyncSearchResource"]
25
-
26
-
27
- class SearchResource(SyncAPIResource):
28
- @cached_property
29
- def with_raw_response(self) -> SearchResourceWithRawResponse:
30
- """
31
- This property can be used as a prefix for any HTTP method call to return
32
- the raw response object instead of the parsed content.
33
-
34
- For more information, see https://www.github.com/supermemoryai/python-sdk#accessing-raw-response-data-eg-headers
35
- """
36
- return SearchResourceWithRawResponse(self)
37
-
38
- @cached_property
39
- def with_streaming_response(self) -> SearchResourceWithStreamingResponse:
40
- """
41
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
42
-
43
- For more information, see https://www.github.com/supermemoryai/python-sdk#with_streaming_response
44
- """
45
- return SearchResourceWithStreamingResponse(self)
46
-
47
- def execute(
48
- self,
49
- *,
50
- q: str,
51
- categories_filter: List[Literal["technology", "science", "business", "health"]] | NotGiven = NOT_GIVEN,
52
- chunk_threshold: float | NotGiven = NOT_GIVEN,
53
- doc_id: str | NotGiven = NOT_GIVEN,
54
- document_threshold: float | NotGiven = NOT_GIVEN,
55
- filters: search_execute_params.Filters | NotGiven = NOT_GIVEN,
56
- include_summary: bool | NotGiven = NOT_GIVEN,
57
- limit: int | NotGiven = NOT_GIVEN,
58
- only_matching_chunks: bool | NotGiven = NOT_GIVEN,
59
- rerank: bool | NotGiven = NOT_GIVEN,
60
- rewrite_query: bool | NotGiven = NOT_GIVEN,
61
- user_id: str | NotGiven = NOT_GIVEN,
62
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
63
- # The extra values given here take precedence over values defined on the client or passed to this method.
64
- extra_headers: Headers | None = None,
65
- extra_query: Query | None = None,
66
- extra_body: Body | None = None,
67
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
68
- ) -> SearchExecuteResponse:
69
- """
70
- Search memories with filtering
71
-
72
- Args:
73
- q: Search query string
74
-
75
- categories_filter: Optional category filters
76
-
77
- chunk_threshold: Threshold / sensitivity for chunk selection. 0 is least sensitive (returns most
78
- chunks, more results), 1 is most sensitive (returns lesser chunks, accurate
79
- results)
80
-
81
- doc_id: Optional document ID to search within. You can use this to find chunks in a very
82
- large document.
83
-
84
- document_threshold: Threshold / sensitivity for document selection. 0 is least sensitive (returns
85
- most documents, more results), 1 is most sensitive (returns lesser documents,
86
- accurate results)
87
-
88
- filters: Optional filters to apply to the search
89
-
90
- include_summary: If true, include document summary in the response. This is helpful if you want a
91
- chatbot to know the full context of the document.
92
-
93
- limit: Maximum number of results to return
94
-
95
- only_matching_chunks: If true, only return matching chunks without context. Normally, we send the
96
- previous and next chunk to provide more context for LLMs. If you only want the
97
- matching chunk, set this to true.
98
-
99
- rerank: If true, rerank the results based on the query. This is helpful if you want to
100
- ensure the most relevant results are returned.
101
-
102
- rewrite_query: If true, rewrites the query to make it easier to find documents. This increases
103
- the latency by about 400ms
104
-
105
- user_id: End user ID this search is associated with. NOTE: This also acts as a filter for
106
- the search.
107
-
108
- extra_headers: Send extra headers
109
-
110
- extra_query: Add additional query parameters to the request
111
-
112
- extra_body: Add additional JSON properties to the request
113
-
114
- timeout: Override the client-level default timeout for this request, in seconds
115
- """
116
- return self._get(
117
- "/v3/search",
118
- options=make_request_options(
119
- extra_headers=extra_headers,
120
- extra_query=extra_query,
121
- extra_body=extra_body,
122
- timeout=timeout,
123
- query=maybe_transform(
124
- {
125
- "q": q,
126
- "categories_filter": categories_filter,
127
- "chunk_threshold": chunk_threshold,
128
- "doc_id": doc_id,
129
- "document_threshold": document_threshold,
130
- "filters": filters,
131
- "include_summary": include_summary,
132
- "limit": limit,
133
- "only_matching_chunks": only_matching_chunks,
134
- "rerank": rerank,
135
- "rewrite_query": rewrite_query,
136
- "user_id": user_id,
137
- },
138
- search_execute_params.SearchExecuteParams,
139
- ),
140
- ),
141
- cast_to=SearchExecuteResponse,
142
- )
143
-
144
-
145
- class AsyncSearchResource(AsyncAPIResource):
146
- @cached_property
147
- def with_raw_response(self) -> AsyncSearchResourceWithRawResponse:
148
- """
149
- This property can be used as a prefix for any HTTP method call to return
150
- the raw response object instead of the parsed content.
151
-
152
- For more information, see https://www.github.com/supermemoryai/python-sdk#accessing-raw-response-data-eg-headers
153
- """
154
- return AsyncSearchResourceWithRawResponse(self)
155
-
156
- @cached_property
157
- def with_streaming_response(self) -> AsyncSearchResourceWithStreamingResponse:
158
- """
159
- An alternative to `.with_raw_response` that doesn't eagerly read the response body.
160
-
161
- For more information, see https://www.github.com/supermemoryai/python-sdk#with_streaming_response
162
- """
163
- return AsyncSearchResourceWithStreamingResponse(self)
164
-
165
- async def execute(
166
- self,
167
- *,
168
- q: str,
169
- categories_filter: List[Literal["technology", "science", "business", "health"]] | NotGiven = NOT_GIVEN,
170
- chunk_threshold: float | NotGiven = NOT_GIVEN,
171
- doc_id: str | NotGiven = NOT_GIVEN,
172
- document_threshold: float | NotGiven = NOT_GIVEN,
173
- filters: search_execute_params.Filters | NotGiven = NOT_GIVEN,
174
- include_summary: bool | NotGiven = NOT_GIVEN,
175
- limit: int | NotGiven = NOT_GIVEN,
176
- only_matching_chunks: bool | NotGiven = NOT_GIVEN,
177
- rerank: bool | NotGiven = NOT_GIVEN,
178
- rewrite_query: bool | NotGiven = NOT_GIVEN,
179
- user_id: str | NotGiven = NOT_GIVEN,
180
- # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
181
- # The extra values given here take precedence over values defined on the client or passed to this method.
182
- extra_headers: Headers | None = None,
183
- extra_query: Query | None = None,
184
- extra_body: Body | None = None,
185
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
186
- ) -> SearchExecuteResponse:
187
- """
188
- Search memories with filtering
189
-
190
- Args:
191
- q: Search query string
192
-
193
- categories_filter: Optional category filters
194
-
195
- chunk_threshold: Threshold / sensitivity for chunk selection. 0 is least sensitive (returns most
196
- chunks, more results), 1 is most sensitive (returns lesser chunks, accurate
197
- results)
198
-
199
- doc_id: Optional document ID to search within. You can use this to find chunks in a very
200
- large document.
201
-
202
- document_threshold: Threshold / sensitivity for document selection. 0 is least sensitive (returns
203
- most documents, more results), 1 is most sensitive (returns lesser documents,
204
- accurate results)
205
-
206
- filters: Optional filters to apply to the search
207
-
208
- include_summary: If true, include document summary in the response. This is helpful if you want a
209
- chatbot to know the full context of the document.
210
-
211
- limit: Maximum number of results to return
212
-
213
- only_matching_chunks: If true, only return matching chunks without context. Normally, we send the
214
- previous and next chunk to provide more context for LLMs. If you only want the
215
- matching chunk, set this to true.
216
-
217
- rerank: If true, rerank the results based on the query. This is helpful if you want to
218
- ensure the most relevant results are returned.
219
-
220
- rewrite_query: If true, rewrites the query to make it easier to find documents. This increases
221
- the latency by about 400ms
222
-
223
- user_id: End user ID this search is associated with. NOTE: This also acts as a filter for
224
- the search.
225
-
226
- extra_headers: Send extra headers
227
-
228
- extra_query: Add additional query parameters to the request
229
-
230
- extra_body: Add additional JSON properties to the request
231
-
232
- timeout: Override the client-level default timeout for this request, in seconds
233
- """
234
- return await self._get(
235
- "/v3/search",
236
- options=make_request_options(
237
- extra_headers=extra_headers,
238
- extra_query=extra_query,
239
- extra_body=extra_body,
240
- timeout=timeout,
241
- query=await async_maybe_transform(
242
- {
243
- "q": q,
244
- "categories_filter": categories_filter,
245
- "chunk_threshold": chunk_threshold,
246
- "doc_id": doc_id,
247
- "document_threshold": document_threshold,
248
- "filters": filters,
249
- "include_summary": include_summary,
250
- "limit": limit,
251
- "only_matching_chunks": only_matching_chunks,
252
- "rerank": rerank,
253
- "rewrite_query": rewrite_query,
254
- "user_id": user_id,
255
- },
256
- search_execute_params.SearchExecuteParams,
257
- ),
258
- ),
259
- cast_to=SearchExecuteResponse,
260
- )
261
-
262
-
263
- class SearchResourceWithRawResponse:
264
- def __init__(self, search: SearchResource) -> None:
265
- self._search = search
266
-
267
- self.execute = to_raw_response_wrapper(
268
- search.execute,
269
- )
270
-
271
-
272
- class AsyncSearchResourceWithRawResponse:
273
- def __init__(self, search: AsyncSearchResource) -> None:
274
- self._search = search
275
-
276
- self.execute = async_to_raw_response_wrapper(
277
- search.execute,
278
- )
279
-
280
-
281
- class SearchResourceWithStreamingResponse:
282
- def __init__(self, search: SearchResource) -> None:
283
- self._search = search
284
-
285
- self.execute = to_streamed_response_wrapper(
286
- search.execute,
287
- )
288
-
289
-
290
- class AsyncSearchResourceWithStreamingResponse:
291
- def __init__(self, search: AsyncSearchResource) -> None:
292
- self._search = search
293
-
294
- self.execute = async_to_streamed_response_wrapper(
295
- search.execute,
296
- )
@@ -1,13 +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 Annotated, TypedDict
6
-
7
- from .._utils import PropertyInfo
8
-
9
- __all__ = ["ConnectionListParams"]
10
-
11
-
12
- class ConnectionListParams(TypedDict, total=False):
13
- end_user_id: Annotated[str, PropertyInfo(alias="endUserId")]
@@ -1,25 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Dict, List, Optional
4
- from typing_extensions import TypeAlias
5
-
6
- from pydantic import Field as FieldInfo
7
-
8
- from .._models import BaseModel
9
-
10
- __all__ = ["ConnectionListResponse", "ConnectionListResponseItem"]
11
-
12
-
13
- class ConnectionListResponseItem(BaseModel):
14
- id: str
15
-
16
- created_at: float = FieldInfo(alias="createdAt")
17
-
18
- provider: str
19
-
20
- expires_at: Optional[float] = FieldInfo(alias="expiresAt", default=None)
21
-
22
- metadata: Optional[Dict[str, object]] = None
23
-
24
-
25
- ConnectionListResponse: TypeAlias = List[ConnectionListResponseItem]
@@ -1,9 +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__ = ["MemoryDeleteResponse"]
6
-
7
-
8
- class MemoryDeleteResponse(BaseModel):
9
- success: bool
@@ -1,24 +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 Literal, TypedDict
6
-
7
- __all__ = ["MemoryListParams"]
8
-
9
-
10
- class MemoryListParams(TypedDict, total=False):
11
- filters: str
12
- """Optional filters to apply to the search"""
13
-
14
- limit: str
15
- """Number of items per page"""
16
-
17
- order: Literal["asc", "desc"]
18
- """Sort order"""
19
-
20
- page: str
21
- """Page number to fetch"""
22
-
23
- sort: Literal["createdAt", "updatedAt"]
24
- """Field to sort by"""
@@ -1,95 +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
- content: Optional[str] = None
19
- """The content to extract and process into a memory.
20
-
21
- This can be a URL to a website, a PDF, an image, or a video.
22
-
23
- Plaintext: Any plaintext format
24
-
25
- URL: A URL to a website, PDF, image, or video
26
-
27
- We automatically detect the content type from the url's response format.
28
- """
29
-
30
- created_at: datetime = FieldInfo(alias="createdAt")
31
- """Creation timestamp"""
32
-
33
- custom_id: Optional[str] = FieldInfo(alias="customId", default=None)
34
- """Optional custom ID of the memory.
35
-
36
- This could be an ID from your database that will uniquely identify this memory.
37
- """
38
-
39
- metadata: Union[str, float, bool, Dict[str, object], List[object], None] = None
40
- """Optional metadata for the memory.
41
-
42
- This is used to store additional information about the memory. You can use this
43
- to store any additional information you need about the memory. Metadata can be
44
- filtered through. Keys must be strings and are case sensitive. Values can be
45
- strings, numbers, or booleans. You cannot nest objects.
46
- """
47
-
48
- og_image: Optional[str] = FieldInfo(alias="ogImage", default=None)
49
-
50
- source: Optional[str] = None
51
-
52
- status: Literal["unknown", "queued", "extracting", "chunking", "embedding", "indexing", "done", "failed"]
53
- """Status of the memory"""
54
-
55
- summary: Optional[str] = None
56
- """Summary of the memory content"""
57
-
58
- title: Optional[str] = None
59
- """Title of the memory"""
60
-
61
- type: Literal["text", "pdf", "tweet", "google_doc", "image", "video", "notion_doc", "webpage"]
62
- """Type of the memory"""
63
-
64
- updated_at: datetime = FieldInfo(alias="updatedAt")
65
- """Last update timestamp"""
66
-
67
- url: Optional[str] = None
68
- """URL of the memory"""
69
-
70
- container_tags: Optional[List[str]] = FieldInfo(alias="containerTags", default=None)
71
- """Optional tags this memory should be containerized by.
72
-
73
- This can be an ID for your user, a project ID, or any other identifier you wish
74
- to use to group memories.
75
- """
76
-
77
- raw: None = None
78
- """Raw content of the memory"""
79
-
80
-
81
- class Pagination(BaseModel):
82
- current_page: float = FieldInfo(alias="currentPage")
83
-
84
- limit: float
85
-
86
- total_items: float = FieldInfo(alias="totalItems")
87
-
88
- total_pages: float = FieldInfo(alias="totalPages")
89
-
90
-
91
- class MemoryListResponse(BaseModel):
92
- memories: List[Memory]
93
-
94
- pagination: Pagination
95
- """Pagination metadata"""
@@ -1,86 +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, Iterable
6
- from typing_extensions import Literal, Required, Annotated, TypeAlias, TypedDict
7
-
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["SearchExecuteParams", "Filters", "FiltersUnionMember0"]
11
-
12
-
13
- class SearchExecuteParams(TypedDict, total=False):
14
- q: Required[str]
15
- """Search query string"""
16
-
17
- categories_filter: Annotated[
18
- List[Literal["technology", "science", "business", "health"]], PropertyInfo(alias="categoriesFilter")
19
- ]
20
- """Optional category filters"""
21
-
22
- chunk_threshold: Annotated[float, PropertyInfo(alias="chunkThreshold")]
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
- """
28
-
29
- doc_id: Annotated[str, PropertyInfo(alias="docId")]
30
- """Optional document ID to search within.
31
-
32
- You can use this to find chunks in a very large document.
33
- """
34
-
35
- document_threshold: Annotated[float, PropertyInfo(alias="documentThreshold")]
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
- """
41
-
42
- filters: Filters
43
- """Optional filters to apply to the search"""
44
-
45
- include_summary: Annotated[bool, PropertyInfo(alias="includeSummary")]
46
- """If true, include document summary in the response.
47
-
48
- This is helpful if you want a chatbot to know the full context of the document.
49
- """
50
-
51
- limit: int
52
- """Maximum number of results to return"""
53
-
54
- only_matching_chunks: Annotated[bool, PropertyInfo(alias="onlyMatchingChunks")]
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
- """
72
-
73
- user_id: Annotated[str, PropertyInfo(alias="userId")]
74
- """End user ID this search is associated with.
75
-
76
- NOTE: This also acts as a filter for the search.
77
- """
78
-
79
-
80
- class FiltersUnionMember0(TypedDict, total=False):
81
- and_: Annotated[Iterable[object], PropertyInfo(alias="AND")]
82
-
83
- or_: Annotated[Iterable[object], PropertyInfo(alias="OR")]
84
-
85
-
86
- Filters: TypeAlias = Union[FiltersUnionMember0, Dict[str, object]]
@@ -1,52 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Dict, List, Optional
4
- from datetime import datetime
5
-
6
- from pydantic import Field as FieldInfo
7
-
8
- from .._models import BaseModel
9
-
10
- __all__ = ["SearchExecuteResponse", "Result", "ResultChunk"]
11
-
12
-
13
- class ResultChunk(BaseModel):
14
- content: str
15
- """Content of the matching chunk"""
16
-
17
- is_relevant: bool = FieldInfo(alias="isRelevant")
18
- """Whether this chunk is relevant to the query"""
19
-
20
- score: float
21
- """Similarity score for this chunk"""
22
-
23
-
24
- class Result(BaseModel):
25
- chunks: List[ResultChunk]
26
- """Matching content chunks from the document"""
27
-
28
- created_at: datetime = FieldInfo(alias="createdAt")
29
- """Document creation date"""
30
-
31
- document_id: str = FieldInfo(alias="documentId")
32
- """ID of the matching document"""
33
-
34
- metadata: Optional[Dict[str, object]] = None
35
- """Document metadata"""
36
-
37
- score: float
38
- """Relevance score of the match"""
39
-
40
- title: str
41
- """Document title"""
42
-
43
- updated_at: datetime = FieldInfo(alias="updatedAt")
44
- """Document last update date"""
45
-
46
-
47
- class SearchExecuteResponse(BaseModel):
48
- results: List[Result]
49
-
50
- timing: float
51
-
52
- total: float
@@ -1,56 +0,0 @@
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,,