Store
Modules:
| Name | Description |
|---|---|
base_store |
Simplified Async-First Base Store for TAF Framework |
embedding |
|
mem0_store |
Mem0 Long-Term Memory Store |
qdrant_store |
Qdrant Vector Store Implementation for TAF Framework |
store_schema |
|
Classes:
| Name | Description |
|---|---|
BaseEmbedding |
|
BaseStore |
Simplified async-first base class for memory stores in TAF. |
DistanceMetric |
Supported distance metrics for vector similarity. |
Mem0Store |
Mem0 implementation of long-term memory. |
MemoryRecord |
Comprehensive memory record for storage (Pydantic model). |
MemorySearchResult |
Result from a memory search operation (Pydantic model). |
MemoryType |
Types of memories that can be stored. |
OpenAIEmbedding |
|
QdrantStore |
Modern async-first Qdrant-based vector store implementation. |
Functions:
| Name | Description |
|---|---|
create_cloud_qdrant_store |
Create a cloud Qdrant store. |
create_local_qdrant_store |
Create a local Qdrant store. |
create_mem0_store |
Factory for a basic Mem0 long-term store. |
create_mem0_store_with_qdrant |
Factory producing a Mem0Store configured for Qdrant backing. |
create_remote_qdrant_store |
Create a remote Qdrant store. |
Attributes¶
__all__
module-attribute
¶
__all__ = ['BaseEmbedding', 'BaseStore', 'DistanceMetric', 'Mem0Store', 'MemoryRecord', 'MemorySearchResult', 'MemoryType', 'OpenAIEmbedding', 'QdrantStore', 'create_cloud_qdrant_store', 'create_local_qdrant_store', 'create_mem0_store', 'create_mem0_store_with_qdrant', 'create_remote_qdrant_store']
Classes¶
BaseEmbedding
¶
Bases: ABC
Methods:
| Name | Description |
|---|---|
aembed |
Generate embedding for a single text. |
aembed_batch |
Generate embeddings for a list of texts. |
embed |
Synchronous wrapper for |
embed_batch |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
dimension |
int
|
Synchronous wrapper for that runs the async implementation. |
Source code in agentflow/store/embedding/base_embedding.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |
Attributes¶
dimension
abstractmethod
property
¶
dimension
Synchronous wrapper for that runs the async implementation.
Functions¶
aembed
abstractmethod
async
¶
aembed(text)
Generate embedding for a single text.
Source code in agentflow/store/embedding/base_embedding.py
20 21 22 23 | |
aembed_batch
abstractmethod
async
¶
aembed_batch(texts)
Generate embeddings for a list of texts.
Source code in agentflow/store/embedding/base_embedding.py
11 12 13 | |
embed
¶
embed(text)
Synchronous wrapper for aembed that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
16 17 18 | |
embed_batch
¶
embed_batch(texts)
Synchronous wrapper for aembed_batch that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
7 8 9 | |
BaseStore
¶
Bases: ABC
Simplified async-first base class for memory stores in TAF.
This class provides a clean interface that supports: - Vector stores (Qdrant, Pinecone, Chroma, etc.) - Managed memory services (mem0, Zep, etc.) - Graph databases (Neo4j, etc.)
Key Design Principles: - Async-first for better performance - Core CRUD operations only - User and agent-centric operations - Extensible filtering and metadata
Methods:
| Name | Description |
|---|---|
adelete |
Delete a memory by ID. |
aforget_memory |
Delete a memory by for a user or agent. |
aget |
Get a specific memory by ID. |
aget_all |
Get a specific memory by user_id. |
arelease |
Clean up any resources used by the store (override in subclasses if needed). |
asearch |
Search memories by content similarity. |
asetup |
Asynchronous setup method for checkpointer. |
astore |
Add a new memory. |
aupdate |
Update an existing memory. |
delete |
Synchronous wrapper for |
forget_memory |
Delete a memory by for a user or agent. |
get |
Synchronous wrapper for |
get_all |
Synchronous wrapper for |
release |
Clean up any resources used by the store (override in subclasses if needed). |
search |
Synchronous wrapper for |
setup |
Synchronous setup method for checkpointer. |
store |
Synchronous wrapper for |
update |
Synchronous wrapper for |
Source code in agentflow/store/base_store.py
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 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | |
Functions¶
adelete
abstractmethod
async
¶
adelete(config, memory_id, **kwargs)
Delete a memory by ID.
Source code in agentflow/store/base_store.py
238 239 240 241 242 243 244 245 246 | |
aforget_memory
abstractmethod
async
¶
aforget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
252 253 254 255 256 257 258 259 | |
aget
abstractmethod
async
¶
aget(config, memory_id, **kwargs)
Get a specific memory by ID.
Source code in agentflow/store/base_store.py
174 175 176 177 178 179 180 181 182 | |
aget_all
abstractmethod
async
¶
aget_all(config, limit=100, **kwargs)
Get a specific memory by user_id.
Source code in agentflow/store/base_store.py
184 185 186 187 188 189 190 191 192 | |
arelease
async
¶
arelease()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
271 272 273 | |
asearch
abstractmethod
async
¶
asearch(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Search memories by content similarity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Search query |
required |
|
Filter by user |
required | |
|
Filter by agent |
required | |
|
MemoryType | None
|
Filter by memory type |
None
|
|
str | None
|
Filter by category |
None
|
|
int
|
Maximum results |
10
|
|
float | None
|
Minimum similarity score |
None
|
|
dict[str, Any] | None
|
Additional filters |
None
|
|
Store-specific parameters |
{}
|
Returns:
| Type | Description |
|---|---|
list[MemorySearchResult]
|
List of matching memories |
Source code in agentflow/store/base_store.py
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 | |
asetup
async
¶
asetup()
Asynchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
49 50 51 52 53 54 55 56 | |
astore
abstractmethod
async
¶
astore(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Add a new memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | Message
|
The memory content |
required |
|
User identifier |
required | |
|
Agent identifier |
required | |
|
MemoryType
|
Type of memory (episodic, semantic, etc.) |
EPISODIC
|
|
str
|
Memory category for organization |
'general'
|
|
dict[str, Any] | None
|
Additional metadata |
None
|
|
Store-specific parameters |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
Memory ID |
Source code in agentflow/store/base_store.py
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 | |
aupdate
abstractmethod
async
¶
aupdate(config, memory_id, content, metadata=None, **kwargs)
Update an existing memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
ID of memory to update |
required |
|
str | Message
|
New content (optional) |
required |
|
dict[str, Any] | None
|
New/additional metadata (optional) |
None
|
|
Store-specific parameters |
{}
|
Source code in agentflow/store/base_store.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | |
delete
¶
delete(config, memory_id, **kwargs)
Synchronous wrapper for adelete that runs the async implementation.
Source code in agentflow/store/base_store.py
248 249 250 | |
forget_memory
¶
forget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
261 262 263 264 265 266 267 | |
get
¶
get(config, memory_id, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
194 195 196 | |
get_all
¶
get_all(config, limit=100, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
198 199 200 201 202 203 204 205 | |
release
¶
release()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
275 276 277 | |
search
¶
search(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Synchronous wrapper for asearch that runs the async implementation.
Source code in agentflow/store/base_store.py
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 | |
setup
¶
setup()
Synchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
40 41 42 43 44 45 46 47 | |
store
¶
store(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Synchronous wrapper for astore that runs the async implementation.
Source code in agentflow/store/base_store.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
update
¶
update(config, memory_id, content, metadata=None, **kwargs)
Synchronous wrapper for aupdate that runs the async implementation.
Source code in agentflow/store/base_store.py
227 228 229 230 231 232 233 234 235 236 | |
DistanceMetric
¶
Bases: Enum
Supported distance metrics for vector similarity.
Attributes:
| Name | Type | Description |
|---|---|---|
COSINE |
|
|
DOT_PRODUCT |
|
|
EUCLIDEAN |
|
|
MANHATTAN |
|
Source code in agentflow/store/store_schema.py
21 22 23 24 25 26 27 | |
Mem0Store
¶
Bases: BaseStore
Mem0 implementation of long-term memory.
Primary responsibilities:
* Persist memories (episodic by default) across graph invocations
* Retrieve semantically similar memories to augment state
* Provide CRUD lifecycle aligned with BaseStore async API
Unlike in-memory state, these memories survive process restarts as they are managed by Mem0's configured vector / persistence layer.
Methods:
| Name | Description |
|---|---|
__init__ |
|
adelete |
|
aforget_memory |
|
aget |
|
aget_all |
|
arelease |
|
asearch |
|
asetup |
Asynchronous setup method for checkpointer. |
astore |
|
aupdate |
|
delete |
Synchronous wrapper for |
forget_memory |
Delete a memory by for a user or agent. |
generate_framework_id |
|
get |
Synchronous wrapper for |
get_all |
Synchronous wrapper for |
release |
Clean up any resources used by the store (override in subclasses if needed). |
search |
Synchronous wrapper for |
setup |
Synchronous setup method for checkpointer. |
store |
Synchronous wrapper for |
update |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
app_id |
|
|
config |
|
Source code in agentflow/store/mem0_store.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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | |
Attributes¶
Functions¶
__init__
¶
__init__(config, app_id=None, **kwargs)
Source code in agentflow/store/mem0_store.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |
adelete
async
¶
adelete(config, memory_id, **kwargs)
Source code in agentflow/store/mem0_store.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | |
aforget_memory
async
¶
aforget_memory(config, **kwargs)
Source code in agentflow/store/mem0_store.py
373 374 375 376 377 378 379 380 381 382 383 | |
aget
async
¶
aget(config, memory_id, **kwargs)
Source code in agentflow/store/mem0_store.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
aget_all
async
¶
aget_all(config, limit=100, **kwargs)
Source code in agentflow/store/mem0_store.py
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | |
arelease
async
¶
arelease()
Source code in agentflow/store/mem0_store.py
385 386 | |
asearch
async
¶
asearch(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=None, distance_metric=None, max_tokens=4000, **kwargs)
Source code in agentflow/store/mem0_store.py
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 254 255 256 257 258 259 260 261 262 263 264 265 | |
asetup
async
¶
asetup()
Asynchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
49 50 51 52 53 54 55 56 | |
astore
async
¶
astore(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Source code in agentflow/store/mem0_store.py
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 | |
aupdate
async
¶
aupdate(config, memory_id, content, metadata=None, **kwargs)
Source code in agentflow/store/mem0_store.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | |
delete
¶
delete(config, memory_id, **kwargs)
Synchronous wrapper for adelete that runs the async implementation.
Source code in agentflow/store/base_store.py
248 249 250 | |
forget_memory
¶
forget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
261 262 263 264 265 266 267 | |
generate_framework_id
async
¶
generate_framework_id()
Source code in agentflow/store/mem0_store.py
173 174 175 176 177 | |
get
¶
get(config, memory_id, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
194 195 196 | |
get_all
¶
get_all(config, limit=100, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
198 199 200 201 202 203 204 205 | |
release
¶
release()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
275 276 277 | |
search
¶
search(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Synchronous wrapper for asearch that runs the async implementation.
Source code in agentflow/store/base_store.py
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 | |
setup
¶
setup()
Synchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
40 41 42 43 44 45 46 47 | |
store
¶
store(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Synchronous wrapper for astore that runs the async implementation.
Source code in agentflow/store/base_store.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
update
¶
update(config, memory_id, content, metadata=None, **kwargs)
Synchronous wrapper for aupdate that runs the async implementation.
Source code in agentflow/store/base_store.py
227 228 229 230 231 232 233 234 235 236 | |
MemoryRecord
¶
Bases: BaseModel
Comprehensive memory record for storage (Pydantic model).
Methods:
| Name | Description |
|---|---|
from_message |
|
validate_vector |
|
Attributes:
| Name | Type | Description |
|---|---|---|
category |
str
|
|
content |
str
|
|
id |
str
|
|
memory_type |
MemoryType
|
|
metadata |
dict[str, Any]
|
|
thread_id |
str | None
|
|
timestamp |
datetime | None
|
|
user_id |
str | None
|
|
vector |
list[float] | None
|
|
Source code in agentflow/store/store_schema.py
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 | |
Attributes¶
Functions¶
from_message
classmethod
¶
from_message(message, user_id=None, thread_id=None, vector=None, additional_metadata=None)
Source code in agentflow/store/store_schema.py
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 | |
validate_vector
classmethod
¶
validate_vector(v)
Source code in agentflow/store/store_schema.py
78 79 80 81 82 83 84 85 | |
MemorySearchResult
¶
Bases: BaseModel
Result from a memory search operation (Pydantic model).
Methods:
| Name | Description |
|---|---|
validate_vector |
|
Attributes:
| Name | Type | Description |
|---|---|---|
content |
str
|
|
id |
str
|
|
memory_type |
MemoryType
|
|
metadata |
dict[str, Any]
|
|
score |
float
|
|
thread_id |
str | None
|
|
timestamp |
datetime | None
|
|
user_id |
str | None
|
|
vector |
list[float] | None
|
|
Source code in agentflow/store/store_schema.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | |
Attributes¶
content
class-attribute
instance-attribute
¶
content = Field(default='', description='Primary textual content of the memory')
score
class-attribute
instance-attribute
¶
score = Field(default=0.0, ge=0.0, description='Similarity / relevance score')
Functions¶
validate_vector
classmethod
¶
validate_vector(v)
Source code in agentflow/store/store_schema.py
55 56 57 58 59 60 61 62 | |
MemoryType
¶
Bases: Enum
Types of memories that can be stored.
Attributes:
| Name | Type | Description |
|---|---|---|
CUSTOM |
|
|
DECLARATIVE |
|
|
ENTITY |
|
|
EPISODIC |
|
|
PROCEDURAL |
|
|
RELATIONSHIP |
|
|
SEMANTIC |
|
Source code in agentflow/store/store_schema.py
30 31 32 33 34 35 36 37 38 39 | |
Attributes¶
OpenAIEmbedding
¶
Bases: BaseEmbedding
Methods:
| Name | Description |
|---|---|
__init__ |
|
aembed |
|
aembed_batch |
|
embed |
Synchronous wrapper for |
embed_batch |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
api_key |
|
|
client |
|
|
dimension |
int
|
|
model |
|
Source code in agentflow/store/embedding/openai_embedding.py
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 | |
Attributes¶
Functions¶
__init__
¶
__init__(model='text-embedding-3-small', api_key=None)
Source code in agentflow/store/embedding/openai_embedding.py
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 | |
aembed
async
¶
aembed(text)
Source code in agentflow/store/embedding/openai_embedding.py
55 56 57 58 59 60 61 62 63 64 65 | |
aembed_batch
async
¶
aembed_batch(texts)
Source code in agentflow/store/embedding/openai_embedding.py
43 44 45 46 47 48 49 50 51 52 53 | |
embed
¶
embed(text)
Synchronous wrapper for aembed that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
16 17 18 | |
embed_batch
¶
embed_batch(texts)
Synchronous wrapper for aembed_batch that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
7 8 9 | |
QdrantStore
¶
Bases: BaseStore
Modern async-first Qdrant-based vector store implementation.
Features: - Async-only operations for better performance - Local and cloud Qdrant deployment support - Configurable embedding services - Efficient vector similarity search with multiple strategies - Collection management with automatic creation - Rich metadata filtering capabilities - User and agent-scoped operations
Example
# Local Qdrant with OpenAI embeddings
store = QdrantStore(path="./qdrant_data", embedding_service=OpenAIEmbeddingService())
# Remote Qdrant
store = QdrantStore(host="localhost", port=6333, embedding_service=OpenAIEmbeddingService())
# Cloud Qdrant
store = QdrantStore(
url="https://xyz.qdrant.io",
api_key="your-api-key",
embedding_service=OpenAIEmbeddingService(),
)
Methods:
| Name | Description |
|---|---|
__init__ |
Initialize Qdrant vector store. |
adelete |
Delete a memory by ID. |
aforget_memory |
Delete all memories for a user or agent. |
aget |
Get a specific memory by ID. |
aget_all |
Get all memories for a user. |
arelease |
Clean up resources. |
asearch |
Search memories by content similarity. |
asetup |
Set up the store and ensure default collection exists. |
astore |
Store a new memory. |
aupdate |
Update an existing memory. |
delete |
Synchronous wrapper for |
forget_memory |
Delete a memory by for a user or agent. |
get |
Synchronous wrapper for |
get_all |
Synchronous wrapper for |
release |
Clean up any resources used by the store (override in subclasses if needed). |
search |
Synchronous wrapper for |
setup |
Synchronous setup method for checkpointer. |
store |
Synchronous wrapper for |
update |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
client |
|
|
default_collection |
|
|
embedding |
|
Source code in agentflow/store/qdrant_store.py
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 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | |
Attributes¶
Functions¶
__init__
¶
__init__(embedding, path=None, host=None, port=None, url=None, api_key=None, default_collection='agentflow_memories', distance_metric=DistanceMetric.COSINE, **kwargs)
Initialize Qdrant vector store.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
BaseEmbedding
|
Service for generating embeddings |
required |
|
str | None
|
Path for local Qdrant (file-based storage) |
None
|
|
str | None
|
Host for remote Qdrant server |
None
|
|
int | None
|
Port for remote Qdrant server |
None
|
|
str | None
|
URL for Qdrant cloud |
None
|
|
str | None
|
API key for Qdrant cloud |
None
|
|
str
|
Default collection name |
'agentflow_memories'
|
|
DistanceMetric
|
Default distance metric |
COSINE
|
|
Any
|
Additional client parameters |
{}
|
Source code in agentflow/store/qdrant_store.py
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 | |
adelete
async
¶
adelete(config, memory_id, **kwargs)
Delete a memory by ID.
Source code in agentflow/store/qdrant_store.py
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | |
aforget_memory
async
¶
aforget_memory(config, **kwargs)
Delete all memories for a user or agent.
Source code in agentflow/store/qdrant_store.py
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 | |
aget
async
¶
aget(config, memory_id, **kwargs)
Get a specific memory by ID.
Source code in agentflow/store/qdrant_store.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | |
aget_all
async
¶
aget_all(config, limit=100, **kwargs)
Get all memories for a user.
Source code in agentflow/store/qdrant_store.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | |
arelease
async
¶
arelease()
Clean up resources.
Source code in agentflow/store/qdrant_store.py
595 596 597 598 599 | |
asearch
async
¶
asearch(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Search memories by content similarity.
Source code in agentflow/store/qdrant_store.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | |
asetup
async
¶
asetup()
Set up the store and ensure default collection exists.
Source code in agentflow/store/qdrant_store.py
123 124 125 126 127 | |
astore
async
¶
astore(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Store a new memory.
Source code in agentflow/store/qdrant_store.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
aupdate
async
¶
aupdate(config, memory_id, content, metadata=None, **kwargs)
Update an existing memory.
Source code in agentflow/store/qdrant_store.py
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 | |
delete
¶
delete(config, memory_id, **kwargs)
Synchronous wrapper for adelete that runs the async implementation.
Source code in agentflow/store/base_store.py
248 249 250 | |
forget_memory
¶
forget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
261 262 263 264 265 266 267 | |
get
¶
get(config, memory_id, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
194 195 196 | |
get_all
¶
get_all(config, limit=100, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
198 199 200 201 202 203 204 205 | |
release
¶
release()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
275 276 277 | |
search
¶
search(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Synchronous wrapper for asearch that runs the async implementation.
Source code in agentflow/store/base_store.py
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 | |
setup
¶
setup()
Synchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
40 41 42 43 44 45 46 47 | |
store
¶
store(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Synchronous wrapper for astore that runs the async implementation.
Source code in agentflow/store/base_store.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
update
¶
update(config, memory_id, content, metadata=None, **kwargs)
Synchronous wrapper for aupdate that runs the async implementation.
Source code in agentflow/store/base_store.py
227 228 229 230 231 232 233 234 235 236 | |
Functions¶
create_cloud_qdrant_store
¶
create_cloud_qdrant_store(url, api_key, embedding, **kwargs)
Create a cloud Qdrant store.
Source code in agentflow/store/qdrant_store.py
633 634 635 636 637 638 639 640 641 642 643 644 645 | |
create_local_qdrant_store
¶
create_local_qdrant_store(path, embedding, **kwargs)
Create a local Qdrant store.
Source code in agentflow/store/qdrant_store.py
605 606 607 608 609 610 611 612 613 614 615 | |
create_mem0_store
¶
create_mem0_store(config, user_id='default_user', thread_id=None, app_id='agentflow_app')
Factory for a basic Mem0 long-term store.
Source code in agentflow/store/mem0_store.py
392 393 394 395 396 397 398 399 400 401 402 403 404 | |
create_mem0_store_with_qdrant
¶
create_mem0_store_with_qdrant(qdrant_url, qdrant_api_key=None, collection_name='agentflow_memories', embedding_model='text-embedding-ada-002', llm_model='gpt-4o-mini', app_id='agentflow_app', **kwargs)
Factory producing a Mem0Store configured for Qdrant backing.
Source code in agentflow/store/mem0_store.py
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | |
create_remote_qdrant_store
¶
create_remote_qdrant_store(host, port, embedding, **kwargs)
Create a remote Qdrant store.
Source code in agentflow/store/qdrant_store.py
618 619 620 621 622 623 624 625 626 627 628 629 630 | |
Modules¶
base_store
¶
Simplified Async-First Base Store for TAF Framework
This module provides a clean, modern interface for memory stores with: - Async-first design for better performance - Core CRUD operations only - Message-specific convenience methods - Extensible for different backends (vector stores, managed services, etc.)
Classes:
| Name | Description |
|---|---|
BaseStore |
Simplified async-first base class for memory stores in TAF. |
Attributes:
| Name | Type | Description |
|---|---|---|
logger |
|
Attributes¶
Classes¶
BaseStore
¶
Bases: ABC
Simplified async-first base class for memory stores in TAF.
This class provides a clean interface that supports: - Vector stores (Qdrant, Pinecone, Chroma, etc.) - Managed memory services (mem0, Zep, etc.) - Graph databases (Neo4j, etc.)
Key Design Principles: - Async-first for better performance - Core CRUD operations only - User and agent-centric operations - Extensible filtering and metadata
Methods:
| Name | Description |
|---|---|
adelete |
Delete a memory by ID. |
aforget_memory |
Delete a memory by for a user or agent. |
aget |
Get a specific memory by ID. |
aget_all |
Get a specific memory by user_id. |
arelease |
Clean up any resources used by the store (override in subclasses if needed). |
asearch |
Search memories by content similarity. |
asetup |
Asynchronous setup method for checkpointer. |
astore |
Add a new memory. |
aupdate |
Update an existing memory. |
delete |
Synchronous wrapper for |
forget_memory |
Delete a memory by for a user or agent. |
get |
Synchronous wrapper for |
get_all |
Synchronous wrapper for |
release |
Clean up any resources used by the store (override in subclasses if needed). |
search |
Synchronous wrapper for |
setup |
Synchronous setup method for checkpointer. |
store |
Synchronous wrapper for |
update |
Synchronous wrapper for |
Source code in agentflow/store/base_store.py
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 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | |
Functions¶
adelete
abstractmethod
async
¶adelete(config, memory_id, **kwargs)
Delete a memory by ID.
Source code in agentflow/store/base_store.py
238 239 240 241 242 243 244 245 246 | |
aforget_memory
abstractmethod
async
¶aforget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
252 253 254 255 256 257 258 259 | |
aget
abstractmethod
async
¶aget(config, memory_id, **kwargs)
Get a specific memory by ID.
Source code in agentflow/store/base_store.py
174 175 176 177 178 179 180 181 182 | |
aget_all
abstractmethod
async
¶aget_all(config, limit=100, **kwargs)
Get a specific memory by user_id.
Source code in agentflow/store/base_store.py
184 185 186 187 188 189 190 191 192 | |
arelease
async
¶arelease()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
271 272 273 | |
asearch
abstractmethod
async
¶asearch(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Search memories by content similarity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query
¶ |
str
|
Search query |
required |
user_id
¶ |
Filter by user |
required | |
agent_id
¶ |
Filter by agent |
required | |
memory_type
¶ |
MemoryType | None
|
Filter by memory type |
None
|
category
¶ |
str | None
|
Filter by category |
None
|
limit
¶ |
int
|
Maximum results |
10
|
score_threshold
¶ |
float | None
|
Minimum similarity score |
None
|
filters
¶ |
dict[str, Any] | None
|
Additional filters |
None
|
**kwargs
¶ |
Store-specific parameters |
{}
|
Returns:
| Type | Description |
|---|---|
list[MemorySearchResult]
|
List of matching memories |
Source code in agentflow/store/base_store.py
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 | |
asetup
async
¶asetup()
Asynchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
49 50 51 52 53 54 55 56 | |
astore
abstractmethod
async
¶astore(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Add a new memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content
¶ |
str | Message
|
The memory content |
required |
user_id
¶ |
User identifier |
required | |
agent_id
¶ |
Agent identifier |
required | |
memory_type
¶ |
MemoryType
|
Type of memory (episodic, semantic, etc.) |
EPISODIC
|
category
¶ |
str
|
Memory category for organization |
'general'
|
metadata
¶ |
dict[str, Any] | None
|
Additional metadata |
None
|
**kwargs
¶ |
Store-specific parameters |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
Memory ID |
Source code in agentflow/store/base_store.py
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 | |
aupdate
abstractmethod
async
¶aupdate(config, memory_id, content, metadata=None, **kwargs)
Update an existing memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
memory_id
¶ |
str
|
ID of memory to update |
required |
content
¶ |
str | Message
|
New content (optional) |
required |
metadata
¶ |
dict[str, Any] | None
|
New/additional metadata (optional) |
None
|
**kwargs
¶ |
Store-specific parameters |
{}
|
Source code in agentflow/store/base_store.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | |
delete
¶delete(config, memory_id, **kwargs)
Synchronous wrapper for adelete that runs the async implementation.
Source code in agentflow/store/base_store.py
248 249 250 | |
forget_memory
¶forget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
261 262 263 264 265 266 267 | |
get
¶get(config, memory_id, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
194 195 196 | |
get_all
¶get_all(config, limit=100, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
198 199 200 201 202 203 204 205 | |
release
¶release()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
275 276 277 | |
search
¶search(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Synchronous wrapper for asearch that runs the async implementation.
Source code in agentflow/store/base_store.py
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 | |
setup
¶setup()
Synchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
40 41 42 43 44 45 46 47 | |
store
¶store(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Synchronous wrapper for astore that runs the async implementation.
Source code in agentflow/store/base_store.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
update
¶update(config, memory_id, content, metadata=None, **kwargs)
Synchronous wrapper for aupdate that runs the async implementation.
Source code in agentflow/store/base_store.py
227 228 229 230 231 232 233 234 235 236 | |
Functions¶
embedding
¶
Modules:
| Name | Description |
|---|---|
base_embedding |
|
openai_embedding |
|
Classes:
| Name | Description |
|---|---|
BaseEmbedding |
|
OpenAIEmbedding |
|
Attributes¶
Classes¶
BaseEmbedding
¶
Bases: ABC
Methods:
| Name | Description |
|---|---|
aembed |
Generate embedding for a single text. |
aembed_batch |
Generate embeddings for a list of texts. |
embed |
Synchronous wrapper for |
embed_batch |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
dimension |
int
|
Synchronous wrapper for that runs the async implementation. |
Source code in agentflow/store/embedding/base_embedding.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |
Attributes¶
dimension
abstractmethod
property
¶dimension
Synchronous wrapper for that runs the async implementation.
Functions¶
aembed
abstractmethod
async
¶aembed(text)
Generate embedding for a single text.
Source code in agentflow/store/embedding/base_embedding.py
20 21 22 23 | |
aembed_batch
abstractmethod
async
¶aembed_batch(texts)
Generate embeddings for a list of texts.
Source code in agentflow/store/embedding/base_embedding.py
11 12 13 | |
embed
¶embed(text)
Synchronous wrapper for aembed that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
16 17 18 | |
embed_batch
¶embed_batch(texts)
Synchronous wrapper for aembed_batch that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
7 8 9 | |
OpenAIEmbedding
¶
Bases: BaseEmbedding
Methods:
| Name | Description |
|---|---|
__init__ |
|
aembed |
|
aembed_batch |
|
embed |
Synchronous wrapper for |
embed_batch |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
api_key |
|
|
client |
|
|
dimension |
int
|
|
model |
|
Source code in agentflow/store/embedding/openai_embedding.py
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 | |
Attributes¶
Functions¶
__init__
¶__init__(model='text-embedding-3-small', api_key=None)
Source code in agentflow/store/embedding/openai_embedding.py
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 | |
aembed
async
¶aembed(text)
Source code in agentflow/store/embedding/openai_embedding.py
55 56 57 58 59 60 61 62 63 64 65 | |
aembed_batch
async
¶aembed_batch(texts)
Source code in agentflow/store/embedding/openai_embedding.py
43 44 45 46 47 48 49 50 51 52 53 | |
embed
¶embed(text)
Synchronous wrapper for aembed that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
16 17 18 | |
embed_batch
¶embed_batch(texts)
Synchronous wrapper for aembed_batch that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
7 8 9 | |
Modules¶
base_embedding
¶
Classes:
| Name | Description |
|---|---|
BaseEmbedding |
|
Classes¶
BaseEmbedding
¶
Bases: ABC
Methods:
| Name | Description |
|---|---|
aembed |
Generate embedding for a single text. |
aembed_batch |
Generate embeddings for a list of texts. |
embed |
Synchronous wrapper for |
embed_batch |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
dimension |
int
|
Synchronous wrapper for that runs the async implementation. |
Source code in agentflow/store/embedding/base_embedding.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |
dimension
abstractmethod
property
¶dimension
Synchronous wrapper for that runs the async implementation.
aembed
abstractmethod
async
¶aembed(text)
Generate embedding for a single text.
Source code in agentflow/store/embedding/base_embedding.py
20 21 22 23 | |
aembed_batch
abstractmethod
async
¶aembed_batch(texts)
Generate embeddings for a list of texts.
Source code in agentflow/store/embedding/base_embedding.py
11 12 13 | |
embed
¶embed(text)
Synchronous wrapper for aembed that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
16 17 18 | |
embed_batch
¶embed_batch(texts)
Synchronous wrapper for aembed_batch that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
7 8 9 | |
Functions¶
openai_embedding
¶
Classes:
| Name | Description |
|---|---|
OpenAIEmbedding |
|
Attributes:
| Name | Type | Description |
|---|---|---|
HAS_OPENAI |
|
Attributes¶
Classes¶
OpenAIEmbedding
¶
Bases: BaseEmbedding
Methods:
| Name | Description |
|---|---|
__init__ |
|
aembed |
|
aembed_batch |
|
embed |
Synchronous wrapper for |
embed_batch |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
api_key |
|
|
client |
|
|
dimension |
int
|
|
model |
|
Source code in agentflow/store/embedding/openai_embedding.py
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 | |
__init__
¶__init__(model='text-embedding-3-small', api_key=None)
Source code in agentflow/store/embedding/openai_embedding.py
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 | |
aembed
async
¶aembed(text)
Source code in agentflow/store/embedding/openai_embedding.py
55 56 57 58 59 60 61 62 63 64 65 | |
aembed_batch
async
¶aembed_batch(texts)
Source code in agentflow/store/embedding/openai_embedding.py
43 44 45 46 47 48 49 50 51 52 53 | |
embed
¶embed(text)
Synchronous wrapper for aembed that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
16 17 18 | |
embed_batch
¶embed_batch(texts)
Synchronous wrapper for aembed_batch that runs the async implementation.
Source code in agentflow/store/embedding/base_embedding.py
7 8 9 | |
mem0_store
¶
Mem0 Long-Term Memory Store
Async-first implementation of :class:BaseStore that uses the mem0 library
as a managed long-term memory layer. In TAF we treat the graph state as
short-term (ephemeral per run / session) memory and a store implementation as
long-term, durable memory. This module wires Mem0 so that:
astore/asearch/ etc. map to Mem0'sadd,search,get_all,update,delete.- We maintain a generated UUID (framework memory id) separate from the Mem0 internal id.
- Metadata is enriched to retain memory type, category, timestamps and app scoping.
- The public async methods satisfy the :class:
BaseStorecontract (astore,abatch_store,asearch,aget,aupdate,adelete,aforget_memoryandarelease).
Design notes:¶
Mem0 (>= 0.2.x / 2025 spec) still exposes synchronous Python APIs. We off-load
blocking calls to a thread executor to keep the interface awaitable. Where Mem0
does not support an operation directly (e.g. fetch by custom memory id) we
fallback to scanning get_all for the user. For batch insertion we parallelise
Add operations with gather while bounding concurrency (simple semaphore) to
avoid thread explosion.
The store interprets the supplied config mapping passed to every method as:
{"user_id": str | None, "thread_id": str | None, "app_id": str | None}.
thread_id is stored into metadata under agent_id for backward compatibility
with earlier implementations where agent_id served a similar role.
Prerequisite: install mem0.
pip install mem0ai
create_mem0_store_with_qdrant for quick Qdrant backing.
Classes:
| Name | Description |
|---|---|
Mem0Store |
Mem0 implementation of long-term memory. |
Functions:
| Name | Description |
|---|---|
create_mem0_store |
Factory for a basic Mem0 long-term store. |
create_mem0_store_with_qdrant |
Factory producing a Mem0Store configured for Qdrant backing. |
Attributes:
| Name | Type | Description |
|---|---|---|
HAS_MEM0 |
|
|
logger |
|
Attributes¶
Classes¶
Mem0Store
¶
Bases: BaseStore
Mem0 implementation of long-term memory.
Primary responsibilities:
* Persist memories (episodic by default) across graph invocations
* Retrieve semantically similar memories to augment state
* Provide CRUD lifecycle aligned with BaseStore async API
Unlike in-memory state, these memories survive process restarts as they are managed by Mem0's configured vector / persistence layer.
Methods:
| Name | Description |
|---|---|
__init__ |
|
adelete |
|
aforget_memory |
|
aget |
|
aget_all |
|
arelease |
|
asearch |
|
asetup |
Asynchronous setup method for checkpointer. |
astore |
|
aupdate |
|
delete |
Synchronous wrapper for |
forget_memory |
Delete a memory by for a user or agent. |
generate_framework_id |
|
get |
Synchronous wrapper for |
get_all |
Synchronous wrapper for |
release |
Clean up any resources used by the store (override in subclasses if needed). |
search |
Synchronous wrapper for |
setup |
Synchronous setup method for checkpointer. |
store |
Synchronous wrapper for |
update |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
app_id |
|
|
config |
|
Source code in agentflow/store/mem0_store.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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | |
Attributes¶
Functions¶
__init__
¶__init__(config, app_id=None, **kwargs)
Source code in agentflow/store/mem0_store.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |
adelete
async
¶adelete(config, memory_id, **kwargs)
Source code in agentflow/store/mem0_store.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | |
aforget_memory
async
¶aforget_memory(config, **kwargs)
Source code in agentflow/store/mem0_store.py
373 374 375 376 377 378 379 380 381 382 383 | |
aget
async
¶aget(config, memory_id, **kwargs)
Source code in agentflow/store/mem0_store.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
aget_all
async
¶aget_all(config, limit=100, **kwargs)
Source code in agentflow/store/mem0_store.py
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | |
arelease
async
¶arelease()
Source code in agentflow/store/mem0_store.py
385 386 | |
asearch
async
¶asearch(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=None, distance_metric=None, max_tokens=4000, **kwargs)
Source code in agentflow/store/mem0_store.py
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 254 255 256 257 258 259 260 261 262 263 264 265 | |
asetup
async
¶asetup()
Asynchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
49 50 51 52 53 54 55 56 | |
astore
async
¶astore(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Source code in agentflow/store/mem0_store.py
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 | |
aupdate
async
¶aupdate(config, memory_id, content, metadata=None, **kwargs)
Source code in agentflow/store/mem0_store.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | |
delete
¶delete(config, memory_id, **kwargs)
Synchronous wrapper for adelete that runs the async implementation.
Source code in agentflow/store/base_store.py
248 249 250 | |
forget_memory
¶forget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
261 262 263 264 265 266 267 | |
generate_framework_id
async
¶generate_framework_id()
Source code in agentflow/store/mem0_store.py
173 174 175 176 177 | |
get
¶get(config, memory_id, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
194 195 196 | |
get_all
¶get_all(config, limit=100, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
198 199 200 201 202 203 204 205 | |
release
¶release()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
275 276 277 | |
search
¶search(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Synchronous wrapper for asearch that runs the async implementation.
Source code in agentflow/store/base_store.py
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 | |
setup
¶setup()
Synchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
40 41 42 43 44 45 46 47 | |
store
¶store(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Synchronous wrapper for astore that runs the async implementation.
Source code in agentflow/store/base_store.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
update
¶update(config, memory_id, content, metadata=None, **kwargs)
Synchronous wrapper for aupdate that runs the async implementation.
Source code in agentflow/store/base_store.py
227 228 229 230 231 232 233 234 235 236 | |
Functions¶
create_mem0_store
¶
create_mem0_store(config, user_id='default_user', thread_id=None, app_id='agentflow_app')
Factory for a basic Mem0 long-term store.
Source code in agentflow/store/mem0_store.py
392 393 394 395 396 397 398 399 400 401 402 403 404 | |
create_mem0_store_with_qdrant
¶
create_mem0_store_with_qdrant(qdrant_url, qdrant_api_key=None, collection_name='agentflow_memories', embedding_model='text-embedding-ada-002', llm_model='gpt-4o-mini', app_id='agentflow_app', **kwargs)
Factory producing a Mem0Store configured for Qdrant backing.
Source code in agentflow/store/mem0_store.py
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | |
qdrant_store
¶
Qdrant Vector Store Implementation for TAF Framework
This module provides a modern, async-first implementation of BaseStore using Qdrant as the backend vector database. Supports both local and cloud Qdrant deployments with configurable embedding services.
Classes:
| Name | Description |
|---|---|
QdrantStore |
Modern async-first Qdrant-based vector store implementation. |
Functions:
| Name | Description |
|---|---|
create_cloud_qdrant_store |
Create a cloud Qdrant store. |
create_local_qdrant_store |
Create a local Qdrant store. |
create_remote_qdrant_store |
Create a remote Qdrant store. |
Attributes:
| Name | Type | Description |
|---|---|---|
HAS_QDRANT |
|
|
logger |
|
Attributes¶
Classes¶
QdrantStore
¶
Bases: BaseStore
Modern async-first Qdrant-based vector store implementation.
Features: - Async-only operations for better performance - Local and cloud Qdrant deployment support - Configurable embedding services - Efficient vector similarity search with multiple strategies - Collection management with automatic creation - Rich metadata filtering capabilities - User and agent-scoped operations
Example
# Local Qdrant with OpenAI embeddings
store = QdrantStore(path="./qdrant_data", embedding_service=OpenAIEmbeddingService())
# Remote Qdrant
store = QdrantStore(host="localhost", port=6333, embedding_service=OpenAIEmbeddingService())
# Cloud Qdrant
store = QdrantStore(
url="https://xyz.qdrant.io",
api_key="your-api-key",
embedding_service=OpenAIEmbeddingService(),
)
Methods:
| Name | Description |
|---|---|
__init__ |
Initialize Qdrant vector store. |
adelete |
Delete a memory by ID. |
aforget_memory |
Delete all memories for a user or agent. |
aget |
Get a specific memory by ID. |
aget_all |
Get all memories for a user. |
arelease |
Clean up resources. |
asearch |
Search memories by content similarity. |
asetup |
Set up the store and ensure default collection exists. |
astore |
Store a new memory. |
aupdate |
Update an existing memory. |
delete |
Synchronous wrapper for |
forget_memory |
Delete a memory by for a user or agent. |
get |
Synchronous wrapper for |
get_all |
Synchronous wrapper for |
release |
Clean up any resources used by the store (override in subclasses if needed). |
search |
Synchronous wrapper for |
setup |
Synchronous setup method for checkpointer. |
store |
Synchronous wrapper for |
update |
Synchronous wrapper for |
Attributes:
| Name | Type | Description |
|---|---|---|
client |
|
|
default_collection |
|
|
embedding |
|
Source code in agentflow/store/qdrant_store.py
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 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | |
Attributes¶
Functions¶
__init__
¶__init__(embedding, path=None, host=None, port=None, url=None, api_key=None, default_collection='agentflow_memories', distance_metric=DistanceMetric.COSINE, **kwargs)
Initialize Qdrant vector store.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
embedding
¶ |
BaseEmbedding
|
Service for generating embeddings |
required |
path
¶ |
str | None
|
Path for local Qdrant (file-based storage) |
None
|
host
¶ |
str | None
|
Host for remote Qdrant server |
None
|
port
¶ |
int | None
|
Port for remote Qdrant server |
None
|
url
¶ |
str | None
|
URL for Qdrant cloud |
None
|
api_key
¶ |
str | None
|
API key for Qdrant cloud |
None
|
default_collection
¶ |
str
|
Default collection name |
'agentflow_memories'
|
distance_metric
¶ |
DistanceMetric
|
Default distance metric |
COSINE
|
**kwargs
¶ |
Any
|
Additional client parameters |
{}
|
Source code in agentflow/store/qdrant_store.py
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 | |
adelete
async
¶adelete(config, memory_id, **kwargs)
Delete a memory by ID.
Source code in agentflow/store/qdrant_store.py
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | |
aforget_memory
async
¶aforget_memory(config, **kwargs)
Delete all memories for a user or agent.
Source code in agentflow/store/qdrant_store.py
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 | |
aget
async
¶aget(config, memory_id, **kwargs)
Get a specific memory by ID.
Source code in agentflow/store/qdrant_store.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | |
aget_all
async
¶aget_all(config, limit=100, **kwargs)
Get all memories for a user.
Source code in agentflow/store/qdrant_store.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | |
arelease
async
¶arelease()
Clean up resources.
Source code in agentflow/store/qdrant_store.py
595 596 597 598 599 | |
asearch
async
¶asearch(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Search memories by content similarity.
Source code in agentflow/store/qdrant_store.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | |
asetup
async
¶asetup()
Set up the store and ensure default collection exists.
Source code in agentflow/store/qdrant_store.py
123 124 125 126 127 | |
astore
async
¶astore(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Store a new memory.
Source code in agentflow/store/qdrant_store.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
aupdate
async
¶aupdate(config, memory_id, content, metadata=None, **kwargs)
Update an existing memory.
Source code in agentflow/store/qdrant_store.py
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 | |
delete
¶delete(config, memory_id, **kwargs)
Synchronous wrapper for adelete that runs the async implementation.
Source code in agentflow/store/base_store.py
248 249 250 | |
forget_memory
¶forget_memory(config, **kwargs)
Delete a memory by for a user or agent.
Source code in agentflow/store/base_store.py
261 262 263 264 265 266 267 | |
get
¶get(config, memory_id, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
194 195 196 | |
get_all
¶get_all(config, limit=100, **kwargs)
Synchronous wrapper for aget that runs the async implementation.
Source code in agentflow/store/base_store.py
198 199 200 201 202 203 204 205 | |
release
¶release()
Clean up any resources used by the store (override in subclasses if needed).
Source code in agentflow/store/base_store.py
275 276 277 | |
search
¶search(config, query, memory_type=None, category=None, limit=10, score_threshold=None, filters=None, retrieval_strategy=RetrievalStrategy.SIMILARITY, distance_metric=DistanceMetric.COSINE, max_tokens=4000, **kwargs)
Synchronous wrapper for asearch that runs the async implementation.
Source code in agentflow/store/base_store.py
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 | |
setup
¶setup()
Synchronous setup method for checkpointer.
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
Implementation-defined setup result. |
Source code in agentflow/store/base_store.py
40 41 42 43 44 45 46 47 | |
store
¶store(config, content, memory_type=MemoryType.EPISODIC, category='general', metadata=None, **kwargs)
Synchronous wrapper for astore that runs the async implementation.
Source code in agentflow/store/base_store.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
update
¶update(config, memory_id, content, metadata=None, **kwargs)
Synchronous wrapper for aupdate that runs the async implementation.
Source code in agentflow/store/base_store.py
227 228 229 230 231 232 233 234 235 236 | |
Functions¶
create_cloud_qdrant_store
¶
create_cloud_qdrant_store(url, api_key, embedding, **kwargs)
Create a cloud Qdrant store.
Source code in agentflow/store/qdrant_store.py
633 634 635 636 637 638 639 640 641 642 643 644 645 | |
create_local_qdrant_store
¶
create_local_qdrant_store(path, embedding, **kwargs)
Create a local Qdrant store.
Source code in agentflow/store/qdrant_store.py
605 606 607 608 609 610 611 612 613 614 615 | |
create_remote_qdrant_store
¶
create_remote_qdrant_store(host, port, embedding, **kwargs)
Create a remote Qdrant store.
Source code in agentflow/store/qdrant_store.py
618 619 620 621 622 623 624 625 626 627 628 629 630 | |
store_schema
¶
Classes:
| Name | Description |
|---|---|
DistanceMetric |
Supported distance metrics for vector similarity. |
MemoryRecord |
Comprehensive memory record for storage (Pydantic model). |
MemorySearchResult |
Result from a memory search operation (Pydantic model). |
MemoryType |
Types of memories that can be stored. |
RetrievalStrategy |
Memory retrieval strategies. |
Classes¶
DistanceMetric
¶
Bases: Enum
Supported distance metrics for vector similarity.
Attributes:
| Name | Type | Description |
|---|---|---|
COSINE |
|
|
DOT_PRODUCT |
|
|
EUCLIDEAN |
|
|
MANHATTAN |
|
Source code in agentflow/store/store_schema.py
21 22 23 24 25 26 27 | |
MemoryRecord
¶
Bases: BaseModel
Comprehensive memory record for storage (Pydantic model).
Methods:
| Name | Description |
|---|---|
from_message |
|
validate_vector |
|
Attributes:
| Name | Type | Description |
|---|---|---|
category |
str
|
|
content |
str
|
|
id |
str
|
|
memory_type |
MemoryType
|
|
metadata |
dict[str, Any]
|
|
thread_id |
str | None
|
|
timestamp |
datetime | None
|
|
user_id |
str | None
|
|
vector |
list[float] | None
|
|
Source code in agentflow/store/store_schema.py
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 | |
Attributes¶
Functions¶
from_message
classmethod
¶from_message(message, user_id=None, thread_id=None, vector=None, additional_metadata=None)
Source code in agentflow/store/store_schema.py
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 | |
validate_vector
classmethod
¶validate_vector(v)
Source code in agentflow/store/store_schema.py
78 79 80 81 82 83 84 85 | |
MemorySearchResult
¶
Bases: BaseModel
Result from a memory search operation (Pydantic model).
Methods:
| Name | Description |
|---|---|
validate_vector |
|
Attributes:
| Name | Type | Description |
|---|---|---|
content |
str
|
|
id |
str
|
|
memory_type |
MemoryType
|
|
metadata |
dict[str, Any]
|
|
score |
float
|
|
thread_id |
str | None
|
|
timestamp |
datetime | None
|
|
user_id |
str | None
|
|
vector |
list[float] | None
|
|
Source code in agentflow/store/store_schema.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | |
Attributes¶
content
class-attribute
instance-attribute
¶content = Field(default='', description='Primary textual content of the memory')
score
class-attribute
instance-attribute
¶score = Field(default=0.0, ge=0.0, description='Similarity / relevance score')
Functions¶
validate_vector
classmethod
¶validate_vector(v)
Source code in agentflow/store/store_schema.py
55 56 57 58 59 60 61 62 | |
MemoryType
¶
Bases: Enum
Types of memories that can be stored.
Attributes:
| Name | Type | Description |
|---|---|---|
CUSTOM |
|
|
DECLARATIVE |
|
|
ENTITY |
|
|
EPISODIC |
|
|
PROCEDURAL |
|
|
RELATIONSHIP |
|
|
SEMANTIC |
|
Source code in agentflow/store/store_schema.py
30 31 32 33 34 35 36 37 38 39 | |
Attributes¶
RetrievalStrategy
¶
Bases: Enum
Memory retrieval strategies.
Attributes:
| Name | Type | Description |
|---|---|---|
GRAPH_TRAVERSAL |
|
|
HYBRID |
|
|
RELEVANCE |
|
|
SIMILARITY |
|
|
TEMPORAL |
|
Source code in agentflow/store/store_schema.py
11 12 13 14 15 16 17 18 | |