naqsha.memory¶
Dynamic Memory Engine and Memory Port adapters
naqsha.memory ¶
Memory Port adapters and Dynamic Memory Engine.
MemoryPort ¶
Bases: Protocol
Durable memory boundary owned by the Core Runtime.
Source code in src/naqsha/memory/base.py
MemoryRecord
dataclass
¶
ForbiddenDDLError ¶
DynamicMemoryEngine ¶
SQLite-backed memory engine with shared and private namespaces.
The engine manages a single SQLite database with namespace-isolated tables:
- Shared tables: prefixed with shared_
- Private tables: prefixed with private_<agent_id>_
Optional sqlite-vec support for semantic search can be enabled via config.
Source code in src/naqsha/memory/engine.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | |
connection
property
¶
Get the underlying SQLite connection.
This is exposed for advanced use cases but should generally not be used directly. Use get_shared_scope() or get_private_scope() instead.
close ¶
get_shared_scope ¶
Get a MemoryScope for shared (team-wide) memory.
Returns:
| Type | Description |
|---|---|
MemoryScope
|
MemoryScope with 'shared_' namespace |
get_private_scope ¶
Get a MemoryScope for private (agent-specific) memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent_id
|
str
|
Agent identifier |
required |
Returns:
| Type | Description |
|---|---|
MemoryScope
|
MemoryScope with 'private_ |
Source code in src/naqsha/memory/engine.py
list_all_tables ¶
List all tables grouped by namespace.
Returns:
| Type | Description |
|---|---|
dict[str, list[str]]
|
Dictionary mapping namespace to list of table names (without prefix) |
Source code in src/naqsha/memory/engine.py
InMemoryMemoryPort ¶
Source code in src/naqsha/memory/inmemory.py
start_run ¶
retrieve ¶
Source code in src/naqsha/memory/inmemory.py
record_observation ¶
MemoryRetriever ¶
Token-budgeted memory retrieval with keyword and recency ranking.
Source code in src/naqsha/memory/retrieval.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
retrieve ¶
retrieve(
query: str,
token_budget: int,
*,
table_name: str = "memories",
content_column: str = "content",
provenance_column: str = "provenance",
timestamp_column: str = "created_ts",
) -> list[str]
Retrieve memory records within token budget.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query
|
str
|
Query text for relevance ranking |
required |
token_budget
|
int
|
Maximum tokens to return |
required |
table_name
|
str
|
Name of memory table (without namespace prefix) |
'memories'
|
content_column
|
str
|
Name of content column |
'content'
|
provenance_column
|
str
|
Name of provenance column |
'provenance'
|
timestamp_column
|
str
|
Name of timestamp column |
'created_ts'
|
Returns:
| Type | Description |
|---|---|
list[str]
|
List of provenance-wrapped memory strings |
Source code in src/naqsha/memory/retrieval.py
MemoryScope ¶
Scoped access to memory with namespace enforcement.
A MemoryScope provides SQL execution with automatic namespace prefix enforcement. All table names are automatically prefixed with the scope's namespace.
Source code in src/naqsha/memory/scope.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | |
execute ¶
Execute SQL with namespace enforcement.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sql
|
str
|
SQL statement |
required |
params
|
tuple[Any, ...] | dict[str, Any] | None
|
Query parameters |
None
|
Returns:
| Type | Description |
|---|---|
Cursor
|
SQLite cursor |
Raises:
| Type | Description |
|---|---|
ForbiddenDDLError
|
If DDL statement violates safelist |
Source code in src/naqsha/memory/scope.py
query ¶
Execute query and return all rows.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sql
|
str
|
SQL query |
required |
params
|
tuple[Any, ...] | dict[str, Any] | None
|
Query parameters |
None
|
Returns:
| Type | Description |
|---|---|
list[Row]
|
List of rows |
Source code in src/naqsha/memory/scope.py
begin ¶
commit ¶
rollback ¶
list_tables ¶
List all tables in this namespace.
Returns:
| Type | Description |
|---|---|
list[str]
|
List of table names (without namespace prefix) |
Source code in src/naqsha/memory/scope.py
TeamMemoryConfig
dataclass
¶
Memory section from naqsha.toml.
Source code in src/naqsha/memory/sharing.py
resolve_paths ¶
SimpleMemCrossMemoryPort ¶
SQLite-backed cross-session durable memory.
Source code in src/naqsha/memory/simplemem_cross.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | |
close ¶
start_run ¶
retrieve ¶
Source code in src/naqsha/memory/simplemem_cross.py
record_observation ¶
Source code in src/naqsha/memory/simplemem_cross.py
finish_run ¶
Source code in src/naqsha/memory/simplemem_cross.py
is_ddl_statement ¶
Check if SQL statement appears to be a DDL statement.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sql
|
str
|
SQL statement to check |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the statement looks like DDL (CREATE, ALTER, DROP, etc.) |
Source code in src/naqsha/memory/ddl.py
validate_ddl ¶
Validate that SQL statement is an allowed DDL operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sql
|
str
|
SQL statement to validate |
required |
Raises:
| Type | Description |
|---|---|
ForbiddenDDLError
|
If the statement is not in the safelist |
Source code in src/naqsha/memory/ddl.py
open_team_memory_engine ¶
Open the team SQLite database under the workspace root.
The same engine instance must be passed to every agent CoreRuntime in that team so shared tables are truly shared.