memorysync 1.7.2__tar.gz → 1.7.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: memorysync
3
- Version: 1.7.2
3
+ Version: 1.7.3
4
4
  Summary: Official Python client for the MemorySync API.
5
5
  Project-URL: Homepage, https://memorysync.io
6
6
  Project-URL: Documentation, https://docs.memorysync.io
@@ -98,7 +98,7 @@ surface; only the call style differs (sync vs `await`).
98
98
  | Method | Route |
99
99
  | -------------------------------------------- | -------------------------------------- |
100
100
  | `add(text, **opts)` | `POST /memory/add` |
101
- | `bulk_add(items, *, deduplicate=True)` | `POST /memory/bulk-add` |
101
+ | `bulk_add(items)` | `POST /memory/bulk-add` |
102
102
  | `query(query, *, k=None, ...)` | `POST /memory/query` |
103
103
  | `get(memory_id)` | `GET /memory/{id}` |
104
104
  | `update(memory_id, **fields)` | `PATCH /memory/{id}` |
@@ -68,7 +68,7 @@ surface; only the call style differs (sync vs `await`).
68
68
  | Method | Route |
69
69
  | -------------------------------------------- | -------------------------------------- |
70
70
  | `add(text, **opts)` | `POST /memory/add` |
71
- | `bulk_add(items, *, deduplicate=True)` | `POST /memory/bulk-add` |
71
+ | `bulk_add(items)` | `POST /memory/bulk-add` |
72
72
  | `query(query, *, k=None, ...)` | `POST /memory/query` |
73
73
  | `get(memory_id)` | `GET /memory/{id}` |
74
74
  | `update(memory_id, **fields)` | `PATCH /memory/{id}` |
@@ -0,0 +1 @@
1
+ __version__ = "1.7.3"