livekit-plugins-voicemem 0.1.0__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.
- livekit_plugins_voicemem-0.1.0/.gitignore +227 -0
- livekit_plugins_voicemem-0.1.0/CHANGELOG.md +51 -0
- livekit_plugins_voicemem-0.1.0/CHANGES-FROM-UPSTREAM.md +77 -0
- livekit_plugins_voicemem-0.1.0/LICENSE +202 -0
- livekit_plugins_voicemem-0.1.0/NOTICE +58 -0
- livekit_plugins_voicemem-0.1.0/PKG-INFO +223 -0
- livekit_plugins_voicemem-0.1.0/README.md +190 -0
- livekit_plugins_voicemem-0.1.0/examples/basic_agent.py +96 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/__init__.py +56 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/adapters/__init__.py +2 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/adapters/openai_client.py +233 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/adapters/pg_graph.py +632 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/adapters/pg_types.py +78 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/adapters/pg_vectors.py +356 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/adapters/pool.py +152 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/cli.py +167 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/config.py +221 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/container.py +148 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/extraction/__init__.py +2 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/extraction/data/additive_extraction_prompt.txt +474 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/extraction/data/mem0_update_memory_prompt.txt +148 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/extraction/extractor.py +229 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/extraction/prompts.py +245 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/hooks.py +359 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/instrument.py +203 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/leftbrain/__init__.py +2 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/leftbrain/classify.py +111 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/leftbrain/records.py +165 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/leftbrain/rerank.py +246 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/leftbrain/slots.py +98 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/leftbrain/timeexpand.py +233 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/log.py +6 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/memory.py +352 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/migrations/0001_schema.sql +481 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/migrations/0002_rls.sql +153 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/migrations/__init__.py +2 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/migrations/runner.py +214 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/protocols.py +601 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/py.typed +0 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/rightbrain/__init__.py +2 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/rightbrain/records.py +165 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/types.py +288 -0
- livekit_plugins_voicemem-0.1.0/livekit/plugins/voicemem/version.py +4 -0
- livekit_plugins_voicemem-0.1.0/pyproject.toml +125 -0
- livekit_plugins_voicemem-0.1.0/scripts/bench_latency.py +135 -0
- livekit_plugins_voicemem-0.1.0/scripts/changelog_section.py +30 -0
- livekit_plugins_voicemem-0.1.0/scripts/check_headers.py +65 -0
- livekit_plugins_voicemem-0.1.0/scripts/check_version_tag.py +57 -0
- livekit_plugins_voicemem-0.1.0/scripts/release.sh +59 -0
- livekit_plugins_voicemem-0.1.0/tests/conftest.py +43 -0
- livekit_plugins_voicemem-0.1.0/tests/contract/test_memory_flow.py +219 -0
- livekit_plugins_voicemem-0.1.0/tests/fakes.py +364 -0
- livekit_plugins_voicemem-0.1.0/tests/integration/test_storage.py +151 -0
- livekit_plugins_voicemem-0.1.0/tests/unit/test_config.py +90 -0
- livekit_plugins_voicemem-0.1.0/tests/unit/test_instrument.py +88 -0
- livekit_plugins_voicemem-0.1.0/tests/unit/test_timeexpand.py +123 -0
- livekit_plugins_voicemem-0.1.0/third_party/VoiceMem-LICENSE.txt +202 -0
- livekit_plugins_voicemem-0.1.0/third_party/mem0-LICENSE.txt +201 -0
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
# poetry.lock
|
|
109
|
+
# poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
# pdm.lock
|
|
116
|
+
# pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
# pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# Redis
|
|
135
|
+
*.rdb
|
|
136
|
+
*.aof
|
|
137
|
+
*.pid
|
|
138
|
+
|
|
139
|
+
# RabbitMQ
|
|
140
|
+
mnesia/
|
|
141
|
+
rabbitmq/
|
|
142
|
+
rabbitmq-data/
|
|
143
|
+
|
|
144
|
+
# ActiveMQ
|
|
145
|
+
activemq-data/
|
|
146
|
+
|
|
147
|
+
# SageMath parsed files
|
|
148
|
+
*.sage.py
|
|
149
|
+
|
|
150
|
+
# Environments
|
|
151
|
+
.env
|
|
152
|
+
.envrc
|
|
153
|
+
.venv
|
|
154
|
+
env/
|
|
155
|
+
venv/
|
|
156
|
+
ENV/
|
|
157
|
+
env.bak/
|
|
158
|
+
venv.bak/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|
|
219
|
+
|
|
220
|
+
# Upstream reference clone, kept locally for porting and never published.
|
|
221
|
+
# Anchored and directory-scoped on purpose: a bare `VoiceMem` pattern also
|
|
222
|
+
# matches livekit/plugins/voicemem/ on case-insensitive filesystems, which
|
|
223
|
+
# silently excludes this package's own source from git.
|
|
224
|
+
/VoiceMem/
|
|
225
|
+
|
|
226
|
+
# Local secrets. Never committed.
|
|
227
|
+
.env.local
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented here.
|
|
4
|
+
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project
|
|
5
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.1.0] - 2026-08-31
|
|
10
|
+
|
|
11
|
+
First release. Long-term memory for LiveKit voice agents on PostgreSQL and pgvector,
|
|
12
|
+
derived from [VoiceMem](https://github.com/xzf-thu/VoiceMem) (Apache-2.0).
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **Left brain**: fact extraction, ADD/UPDATE/DELETE/NONE conflict resolution, slot
|
|
17
|
+
classification over seven life domains, and vector retrieval with the upstream lexical,
|
|
18
|
+
date-overlap and time-rescue scoring contract preserved.
|
|
19
|
+
- **Right brain**: personality and emotional traits with evidence, retrieved against the
|
|
20
|
+
query rather than returned as a static profile, and rendered as internal notes the agent
|
|
21
|
+
is told never to repeat aloud.
|
|
22
|
+
- **PostgreSQL storage**: 24 tables in a dedicated `voicemem` schema, pgvector with an HNSW
|
|
23
|
+
index, and forward-only SQL migrations run through `voicemem-db`.
|
|
24
|
+
- **Multi-tenancy**: `tenant_id` on every table and in every query, plus optional PostgreSQL
|
|
25
|
+
row-level security (`0002_rls.sql`) and a constrained `voicemem_app` role.
|
|
26
|
+
- **LiveKit integration**: `MemoryHooks` for `on_user_turn_completed`, speculative retrieval
|
|
27
|
+
on interim transcripts, and background ingest that never blocks the reply.
|
|
28
|
+
- **Four protocol seams** (`Embedder`, `LLMClient`, `VectorStore`, `GraphStore`) with
|
|
29
|
+
constructor injection throughout, so any of them can be replaced without subclassing.
|
|
30
|
+
- **English relative-date expansion**, emitting `August 31, 2026` to match how the extractor
|
|
31
|
+
normalises English dates. Upstream recognised only Chinese expressions.
|
|
32
|
+
- `voicemem-db` CLI: `status`, `upgrade`, `sql`, `drop`.
|
|
33
|
+
- Latency and cost instrumentation, and `scripts/bench_latency.py` behind the published numbers.
|
|
34
|
+
|
|
35
|
+
### Notes
|
|
36
|
+
|
|
37
|
+
- Three runtime dependencies: `livekit-agents`, `openai`, `psycopg`. Upstream's package
|
|
38
|
+
hard-installs torch, torchvision, transformers, funasr, modelscope, sherpa-onnx,
|
|
39
|
+
sounddevice and pywebrtc-audio; none are needed here and a test asserts none are imported.
|
|
40
|
+
- Measured on a same-host container: 192 ms p50 for retrieval, of which 180 ms is the OpenAI
|
|
41
|
+
embedding round trip and roughly 19 ms is this package. Ingest is 2 LLM calls per turn.
|
|
42
|
+
- Memory injection cancels LiveKit's preemptive generation, which is enabled by default.
|
|
43
|
+
Disable it, or pay for a discarded LLM call every turn. The plugin warns once at startup.
|
|
44
|
+
|
|
45
|
+
### Not included
|
|
46
|
+
|
|
47
|
+
Audio-derived features from upstream: prosody and acoustic emotion, voiceprint and speaker
|
|
48
|
+
identification, and scene or environment detection. Emotion is inferred from text instead.
|
|
49
|
+
|
|
50
|
+
[Unreleased]: https://github.com/mahimailabs/livekit-plugins-voicemem/compare/v0.1.0...HEAD
|
|
51
|
+
[0.1.0]: https://github.com/mahimailabs/livekit-plugins-voicemem/releases/tag/v0.1.0
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Changes from upstream
|
|
2
|
+
|
|
3
|
+
Apache-2.0 section 4(b) requires derivative works to carry prominent notices
|
|
4
|
+
stating that files have been changed. This file is that notice.
|
|
5
|
+
|
|
6
|
+
Upstream: [VoiceMem](https://github.com/xzf-thu/VoiceMem) at commit
|
|
7
|
+
`d587d424a02727d9ff3ef6f8e672a39a19ce64a7`, retrieved 2026-08-30.
|
|
8
|
+
|
|
9
|
+
Every file under `livekit/plugins/voicemem/` derived from that source carries an
|
|
10
|
+
`SPDX-License-Identifier: Apache-2.0` header naming its upstream path. This
|
|
11
|
+
document records what changed and why. `scripts/check_headers.py` enforces that
|
|
12
|
+
every Apache-tagged file appears in the table below and that every row points at
|
|
13
|
+
a file that exists.
|
|
14
|
+
|
|
15
|
+
## Changes applying to all derived code
|
|
16
|
+
|
|
17
|
+
1. **Vendored, not depended upon.** The upstream `voicemem` distribution
|
|
18
|
+
hard-installs torch, torchvision, transformers, accelerate, funasr,
|
|
19
|
+
modelscope, sherpa-onnx, sentence-transformers, soundfile, scipy, fastapi,
|
|
20
|
+
uvicorn, sounddevice and pywebrtc-audio. None are used by the code paths this
|
|
21
|
+
package needs. Required modules were copied in and adapted rather than
|
|
22
|
+
imported.
|
|
23
|
+
|
|
24
|
+
2. **Storage moved from SQLite plus embedded Qdrant to PostgreSQL with
|
|
25
|
+
pgvector.** Upstream keeps one SQLite file per memory space and one embedded
|
|
26
|
+
Qdrant directory. Neither survives more than one process; upstream's own
|
|
27
|
+
source documents the Qdrant limitation. All persistence was rewritten against
|
|
28
|
+
Postgres.
|
|
29
|
+
|
|
30
|
+
3. **Multi-tenancy added.** Upstream's tenancy boundary is the SQLite file
|
|
31
|
+
itself, so no table carries a tenant column. A `tenant_id` column was added to
|
|
32
|
+
every table, to every index, and to every query, with row-level security
|
|
33
|
+
policies as defence in depth.
|
|
34
|
+
|
|
35
|
+
4. **Synchronous I/O converted to asyncio.** Every upstream LLM and embedding
|
|
36
|
+
call constructs a synchronous `openai.OpenAI` client and blocks. In a LiveKit
|
|
37
|
+
agent that stalls the event loop. All network-touching code was rewritten
|
|
38
|
+
async.
|
|
39
|
+
|
|
40
|
+
5. **Audio removed.** ASR, VAD, voiceprint, scene and environment detection,
|
|
41
|
+
music recognition and acoustic emotion are not ported. LiveKit owns turn
|
|
42
|
+
detection and speech recognition. Emotion is taken from the text judgement
|
|
43
|
+
upstream already prefers over its own acoustic path.
|
|
44
|
+
|
|
45
|
+
6. **Process-global state removed.** Module-level caches, `threading.local`
|
|
46
|
+
scratchpads, `os.environ` mutation, `atexit` hooks and lazy singletons behind
|
|
47
|
+
shared locks were replaced with constructor injection and per-turn value
|
|
48
|
+
objects. See the table in the project plan for the full list.
|
|
49
|
+
|
|
50
|
+
## Per-module changes
|
|
51
|
+
|
|
52
|
+
| This package | Upstream source | Change |
|
|
53
|
+
|---|---|---|
|
|
54
|
+
| `livekit/plugins/voicemem/adapters/pg_graph.py` | `voicemem/leftbrain/cognitive_graph/store.py, voicemem/leftbrain/slot_split/graph_entity_store.py, voicemem/rightbrain/store.py, voicemem/utils/common/session_tracker.py` | async psycopg; tenant scoped; the O(n) Python cosine scans replaced with nearest-neighbour SQL; select-then-delete replaced by DELETE RETURNING; read-modify-write metadata merge replaced... |
|
|
55
|
+
| `livekit/plugins/voicemem/adapters/pg_vectors.py` | `voicemem/leftbrain/mem0_backend_store.py` | mem0 and Qdrant removed entirely in favour of PostgreSQL with pgvector; async; tenant scoped; the two id spaces merged into one table; memory_id_filter pushed into SQL instead of... |
|
|
56
|
+
| `livekit/plugins/voicemem/extraction/extractor.py` | `voicemem/leftbrain/extract_facts_openai.py` | async; the module-level _MERGED_UTTERANCE dict and the threading.local scratchpad are gone, replaced by returning one Extraction value object; comments translated. Junk filtering, the... |
|
|
57
|
+
| `livekit/plugins/voicemem/extraction/prompts.py` | `voicemem/leftbrain/mem0_additive_prompt_build.py, voicemem/leftbrain/merged_extraction.py` | the merge addendum is REWRITTEN IN ENGLISH. Upstream's version is written in Chinese and instructs the model to emit Chinese trait labels and a single Chinese emotion word, which is... |
|
|
58
|
+
| `livekit/plugins/voicemem/leftbrain/classify.py` | `voicemem/leftbrain/cognitive_graph/local_query_classifier.py, voicemem/leftbrain/memory_repository_v2.py` | async; the module-level _SLOT_EMBED_CACHE, which upstream keyed on slot value alone so two embedders silently mixed vector spaces, is now per-instance and keyed by model name. |
|
|
59
|
+
| `livekit/plugins/voicemem/leftbrain/records.py` | `voicemem/leftbrain/cognitive_graph/types.py` | header only so far. Explanatory comments remain in the original Chinese; translation is pending. Field names, defaults and semantics are unchanged. Import updated for the slot_v2 ->... |
|
|
60
|
+
| `livekit/plugins/voicemem/leftbrain/rerank.py` | `voicemem/leftbrain/local_memory_store.py, voicemem/leftbrain/mem0_backend_store.py` | comments translated to English; the two halves gathered into one pure module with no I/O so the scoring can be tested on its own and shared by the real store and the in-memory fake.... |
|
|
61
|
+
| `livekit/plugins/voicemem/leftbrain/slots.py` | `voicemem/leftbrain/cognitive_graph/slot_v2.py` | verbatim; header only. This module is already fully English. Slot descriptions feed the embedder and the extraction prompt, so the text must not drift. |
|
|
62
|
+
| `livekit/plugins/voicemem/leftbrain/timeexpand.py` | `voicemem/leftbrain/time_expand.py` | comments and docstrings translated to English. ENGLISH SUPPORT ADDED: upstream recognised only Chinese expressions and emitted only the Chinese date format, so the function was a no-op... |
|
|
63
|
+
| `livekit/plugins/voicemem/rightbrain/records.py` | `voicemem/rightbrain/types.py` | header only so far. Explanatory comments remain in the original Chinese; translation is pending. Field names, defaults and semantics are unchanged. |
|
|
64
|
+
|
|
65
|
+
## Code removed as dead or broken
|
|
66
|
+
|
|
67
|
+
These upstream functions are not ported. Each was verified against the source.
|
|
68
|
+
|
|
69
|
+
| Upstream | Why |
|
|
70
|
+
|---|---|
|
|
71
|
+
| `leftbrain/memory_repository.py:301-324` `search_with_graph` | References `self._graph_store`, never assigned, and the names `GraphSearchHit` / `GraphMemoryContext`, never imported. Raises on call. |
|
|
72
|
+
| `leftbrain/brain.py:941-978` `_get_user_name` | Runs `SELECT text FROM memories`; that column is named `content`. The body is wrapped in a bare `except`, so it has always returned `None` and cached that result. |
|
|
73
|
+
| `leftbrain/memory_repository.py:119-138` JSON mirror | Serialises every memory into a single row on each write. O(n) per ingest with a lost-update race between concurrent writers. |
|
|
74
|
+
| `leftbrain/memory_repository_v2.py:185-449` | Not reachable from the orchestrator's search path. Includes a daemon thread that calls OpenAI. |
|
|
75
|
+
| `leftbrain/merged_extraction.py` | Replaced entirely. Its `threading.local()` scratchpad assumes one thread per conversation; under asyncio one thread serves every session, so one user's emotion and traits are consumed by another user's write. Superseded by a per-turn `Extraction` value object. |
|
|
76
|
+
| `rightbrain/graph_store.py` | Superseded upstream by the traits store. Its tables have no readers on the ported path. |
|
|
77
|
+
| `rightbrain/attribution_manager.py` | Batch LLM consolidation at session boundaries. Out of scope for the first release. |
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
livekit-plugins-voicemem
|
|
2
|
+
Copyright 2026 Mahimai Labs
|
|
3
|
+
|
|
4
|
+
This product includes software developed at Mahimai Labs.
|
|
5
|
+
|
|
6
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
7
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
8
|
+
License at
|
|
9
|
+
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
--------------------------------------------------------------------------------
|
|
13
|
+
Third-party attributions
|
|
14
|
+
--------------------------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
1. VoiceMem
|
|
17
|
+
https://github.com/xzf-thu/VoiceMem
|
|
18
|
+
Licensed under the Apache License, Version 2.0.
|
|
19
|
+
Full license text: third_party/VoiceMem-LICENSE.txt
|
|
20
|
+
|
|
21
|
+
Substantial portions of this package are derived from VoiceMem, retrieved
|
|
22
|
+
2026-08-30 at commit d587d424a02727d9ff3ef6f8e672a39a19ce64a7.
|
|
23
|
+
|
|
24
|
+
The upstream project asserts no copyright line: its LICENSE file is the
|
|
25
|
+
unmodified Apache-2.0 text with the appendix template left in place, it
|
|
26
|
+
ships no NOTICE file, and none of its 112 Python source files carry a
|
|
27
|
+
copyright header. We therefore attribute the project by name, URL and
|
|
28
|
+
commit rather than to a named copyright holder. The Apache-2.0 grant in
|
|
29
|
+
that LICENSE file is the basis on which this derivative work is made.
|
|
30
|
+
|
|
31
|
+
Note: the published `voicemem` package on PyPI lists its repository as
|
|
32
|
+
https://github.com/lang-jiaqi/Voicemem_open, which returns 404. The grant
|
|
33
|
+
relied upon here is the one in xzf-thu/VoiceMem at the commit named above,
|
|
34
|
+
a verbatim copy of which is retained in third_party/.
|
|
35
|
+
|
|
36
|
+
Modifications made to the derived code are described in
|
|
37
|
+
CHANGES-FROM-UPSTREAM.md, as required by Apache-2.0 section 4(b).
|
|
38
|
+
|
|
39
|
+
2. mem0
|
|
40
|
+
Copyright [2023] [Taranjeet Singh]
|
|
41
|
+
https://github.com/mem0ai/mem0
|
|
42
|
+
Licensed under the Apache License, Version 2.0.
|
|
43
|
+
Full license text: third_party/mem0-LICENSE.txt
|
|
44
|
+
|
|
45
|
+
The two prompt templates in
|
|
46
|
+
livekit/plugins/voicemem/extraction/data/ are byte-identical to mem0's
|
|
47
|
+
ADDITIVE_EXTRACTION_PROMPT and DEFAULT_UPDATE_MEMORY_PROMPT from
|
|
48
|
+
mem0/configs/prompts.py. They reached this package by way of VoiceMem,
|
|
49
|
+
which vendored them without attribution; the attribution is restored here.
|
|
50
|
+
|
|
51
|
+
--------------------------------------------------------------------------------
|
|
52
|
+
Trademarks
|
|
53
|
+
--------------------------------------------------------------------------------
|
|
54
|
+
|
|
55
|
+
Apache-2.0 section 6 grants no trademark rights. "LiveKit" is a trademark of
|
|
56
|
+
LiveKit, Inc. "VoiceMem" and "mem0" are the names of their respective projects.
|
|
57
|
+
This package is an independent work and is not affiliated with, endorsed by, or
|
|
58
|
+
sponsored by LiveKit, the VoiceMem authors, or mem0.
|