You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -92,7 +92,7 @@ Memobase can provide you structured profiles of users, check out the [result](./
92
92
## 🎉 Recent Updates
93
93
-`0.0.38`: we updated the workflows in Memobase, reducing the insert cost by 30%
94
94
-`0.0.37`: we added fine-grained event gist, enabling the detailed search on users' timeline. [Re-ran the LOCOMO benchmark](./docs/experiments/locomo-benchmark) and we're SOTA!
95
-
-`0.0.36`: we updated the search of `context` api, make the search between 500~1000ms(depends on the embedding API you're using). Also, you can [pass prompt template](https://docs.memobase.io/api-reference/prompt/get_context#parameter-customize-context-prompt) to `context` api to pack memories directly into prompt.
95
+
-`0.0.36`: we updated the search of `context` api, making the search take between 500~1000ms (depending on the embedding API you're using). Also, you can [pass a prompt template](https://docs.memobase.io/api-reference/prompt/get_context#parameter-customize-context-prompt) to the`context` api to pack memories directly into prompt.
96
96
97
97
98
98
@@ -101,7 +101,7 @@ Memobase can provide you structured profiles of users, check out the [result](./
-[1. Make sure you're connected](#1-make-sure-youre-connected)
106
106
-[2. Manage Users](#2-manage-users)
107
107
-[3. Insert Data](#3-insert-data)
@@ -126,13 +126,13 @@ Define and control exactly what user information your AI captures.
126
126
127
127
📈 **SOTA**
128
128
129
-
check out performance on [public benchmark](./docs/experiments/locomo-benchmark) against mem0, langmem, zep...
129
+
Check out performance on [public benchmark](./docs/experiments/locomo-benchmark) against mem0, langmem, zep...
130
130
131
131
📅 **Time-aware Memory**
132
132
133
-
Memobase has more than user profiles, it also records [user event](https://docs.memobase.io/features/event/event). User event is essiential to answer time-related question, see how we can [improve temporal memory much better](./docs/experiments/locomo-benchmark/README.md#Result) than other memory solutions.
133
+
Memobase has more than user profiles, it also records [user event](https://docs.memobase.io/features/event/event). User event is essential to answer time-related question, see how we can [improve temporal memory much better](./docs/experiments/locomo-benchmark/README.md#Result) than other memory solutions.
134
134
135
-
**🖼️ Contorllable Memory**
135
+
**🖼️ Controllable Memory**
136
136
137
137
Among all types of memory, only some may enhance your product experience. Memobase offers a flexible configuration for you to [design the profile](https://docs.memobase.io/features/profile/profile).
138
138
@@ -152,7 +152,7 @@ Memobase is building with FastAPI, Postgres and Redis, supporting request cachin
152
152
153
153
<divalign="center">
154
154
<picture>
155
-
<img alt="Shows the Memobase Workflow" src="./assets/images/starter.png" width="80%">
> In Memobase, all types of data are blobs to a user that can insert, get and delete:
222
+
> In Memobase, all types of data are blobs for a user, which can be inserted, retrieved, and deleted:
223
223
224
224
```python
225
225
messages = [
@@ -238,7 +238,7 @@ print(u.get(bid)) # not found once you flush the memory.
238
238
# u.delete(bid)
239
239
```
240
240
241
-
> Be default, Memobase will remove the blobs once they're processed. This means that apart from the relevant memory, your data will not be stored with Memobase. You can persist the blobs by adjusting the [configuration file](https://docs.memobase.io/features/customization/full#storage-config).
241
+
> By default, Memobase will remove the blobs once they're processed. This means that apart from the relevant memory, your data will not be stored with Memobase. You can persist the blobs by adjusting the [configuration file](https://docs.memobase.io/features/customization/full#storage-config).
242
242
243
243
### 4. Get your Memory
244
244
@@ -405,7 +405,7 @@ Join the community for support and discussions:
405
405
406
406
-[Follow us on Twitter](https://x.com/memobase_io) 𝕏
0 commit comments