mem0-rust 0.2.0

Rust implementation of mem0 - Universal memory layer for AI Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
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
//! Configuration types for mem0-rust.
//!
//! This module provides comprehensive configuration options for:
//! - Embedding providers
//! - Vector store backends
//! - LLM providers
//! - Memory behavior

use serde::{Deserialize, Serialize};
use std::path::PathBuf;

/// Main configuration for the Memory system
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryConfig {
    /// Embedding provider configuration
    pub embedder: EmbedderConfig,

    /// Vector store backend configuration
    pub vector_store: VectorStoreConfig,

    /// LLM provider configuration (optional - for inference mode)
    pub llm: Option<LLMConfig>,

    /// Path to SQLite database for history tracking
    pub history_db_path: Option<PathBuf>,

    /// Custom prompts for fact extraction
    pub custom_prompts: Option<CustomPrompts>,

    /// Reranker configuration
    pub reranker: Option<RerankerConfig>,

    /// API version
    pub version: String,

    /// Collection/index name for vector store
    pub collection_name: String,
}

impl Default for MemoryConfig {
    fn default() -> Self {
        Self {
            embedder: EmbedderConfig::default(),
            vector_store: VectorStoreConfig::default(),
            llm: None,
            history_db_path: None,
            custom_prompts: None,
            reranker: None,
            version: "1.1".to_string(),
            collection_name: "mem0".to_string(),
        }
    }
}

/// Embedding provider configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "provider", rename_all = "lowercase")]
pub enum EmbedderConfig {
    /// Mock embedder for testing (hash-based)
    Mock(MockEmbedderConfig),

    /// OpenAI embeddings
    #[cfg(feature = "openai")]
    OpenAI(OpenAIEmbedderConfig),

    /// Ollama local embeddings
    #[cfg(feature = "ollama")]
    Ollama(OllamaEmbedderConfig),

    /// HuggingFace Inference API embeddings
    HuggingFace(HuggingFaceEmbedderConfig),
}

impl Default for EmbedderConfig {
    fn default() -> Self {
        EmbedderConfig::Mock(MockEmbedderConfig::default())
    }
}

/// Mock embedder configuration (for testing)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MockEmbedderConfig {
    /// Embedding dimension
    pub dimensions: usize,
}

impl Default for MockEmbedderConfig {
    fn default() -> Self {
        Self { dimensions: 128 }
    }
}

/// OpenAI embedder configuration
#[cfg(feature = "openai")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OpenAIEmbedderConfig {
    /// API key (defaults to OPENAI_API_KEY env var)
    pub api_key: Option<String>,

    /// Model name
    pub model: String,

    /// Embedding dimensions (for models that support it)
    pub dimensions: Option<usize>,

    /// Base URL for API
    pub base_url: Option<String>,
}

#[cfg(feature = "openai")]
impl Default for OpenAIEmbedderConfig {
    fn default() -> Self {
        Self {
            api_key: None,
            model: "text-embedding-3-small".to_string(),
            dimensions: Some(1536),
            base_url: None,
        }
    }
}

/// Ollama embedder configuration
#[cfg(feature = "ollama")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OllamaEmbedderConfig {
    /// Model name
    pub model: String,

    /// Ollama server URL
    pub base_url: String,

    /// Embedding dimensions
    pub dimensions: usize,
}

#[cfg(feature = "ollama")]
impl Default for OllamaEmbedderConfig {
    fn default() -> Self {
        Self {
            model: "nomic-embed-text".to_string(),
            base_url: "http://localhost:11434".to_string(),
            dimensions: 768,
        }
    }
}

/// HuggingFace embedder configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct HuggingFaceEmbedderConfig {
    /// API key (defaults to HF_TOKEN env var)
    pub api_key: Option<String>,

    /// Model name
    pub model: String,

    /// Embedding dimensions
    pub dimensions: usize,

    /// API endpoint (optional)
    pub api_url: Option<String>,
}

impl Default for HuggingFaceEmbedderConfig {
    fn default() -> Self {
        Self {
            api_key: None,
            model: "sentence-transformers/all-MiniLM-L6-v2".to_string(),
            dimensions: 384,
            api_url: None,
        }
    }
}

/// Vector store backend configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "provider", rename_all = "lowercase")]
pub enum VectorStoreConfig {
    /// In-memory vector store (default)
    Memory(MemoryStoreConfig),

    /// Qdrant vector database
    #[cfg(feature = "qdrant")]
    Qdrant(QdrantConfig),

    /// PostgreSQL with pgvector
    #[cfg(feature = "postgres")]
    Postgres(PostgresConfig),

    /// Redis with vector search
    #[cfg(feature = "redis")]
    Redis(RedisConfig),
}

impl Default for VectorStoreConfig {
    fn default() -> Self {
        VectorStoreConfig::Memory(MemoryStoreConfig::default())
    }
}

/// In-memory store configuration
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct MemoryStoreConfig {
    /// Maximum number of entries to store
    pub max_entries: Option<usize>,
}

/// Qdrant configuration
#[cfg(feature = "qdrant")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QdrantConfig {
    /// Qdrant server URL
    pub url: String,

    /// API key (optional)
    pub api_key: Option<String>,

    /// Collection name
    pub collection_name: String,

    /// Vector dimensions
    pub dimensions: usize,

    /// Distance metric
    pub distance: DistanceMetric,
}

#[cfg(feature = "qdrant")]
impl Default for QdrantConfig {
    fn default() -> Self {
        Self {
            url: "http://localhost:6334".to_string(),
            api_key: None,
            collection_name: "mem0".to_string(),
            dimensions: 1536,
            distance: DistanceMetric::Cosine,
        }
    }
}

/// PostgreSQL with pgvector configuration
#[cfg(feature = "postgres")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PostgresConfig {
    /// Connection URL
    pub connection_url: String,

    /// Table name
    pub table_name: String,

    /// Vector dimensions
    pub dimensions: usize,
}

#[cfg(feature = "postgres")]
impl Default for PostgresConfig {
    fn default() -> Self {
        Self {
            connection_url: "postgres://localhost/mem0".to_string(),
            table_name: "memories".to_string(),
            dimensions: 1536,
        }
    }
}

/// Redis configuration
#[cfg(feature = "redis")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RedisConfig {
    /// Redis connection URL
    pub url: String,

    /// Index name
    pub index_name: String,

    /// Vector dimensions
    pub dimensions: usize,
}

#[cfg(feature = "redis")]
impl Default for RedisConfig {
    fn default() -> Self {
        Self {
            url: "redis://localhost:6379".to_string(),
            index_name: "mem0_idx".to_string(),
            dimensions: 1536,
        }
    }
}

/// Distance metric for vector similarity
#[derive(Debug, Clone, Copy, Serialize, Deserialize, Default)]
#[serde(rename_all = "lowercase")]
pub enum DistanceMetric {
    #[default]
    Cosine,
    Euclidean,
    DotProduct,
}

/// LLM provider configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "provider", rename_all = "lowercase")]
pub enum LLMConfig {
    /// OpenAI GPT models
    #[cfg(feature = "openai")]
    OpenAI(OpenAILLMConfig),

    /// Ollama local models
    #[cfg(feature = "ollama")]
    Ollama(OllamaLLMConfig),

    /// Anthropic Claude
    #[cfg(feature = "anthropic")]
    Anthropic(AnthropicConfig),
}

/// OpenAI LLM configuration
#[cfg(feature = "openai")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OpenAILLMConfig {
    /// API key (defaults to OPENAI_API_KEY env var)
    pub api_key: Option<String>,

    /// Model name
    pub model: String,

    /// Temperature
    pub temperature: f32,

    /// Max tokens
    pub max_tokens: Option<u32>,

    /// Base URL
    pub base_url: Option<String>,
}

#[cfg(feature = "openai")]
impl Default for OpenAILLMConfig {
    fn default() -> Self {
        Self {
            api_key: None,
            model: "gpt-4o-mini".to_string(),
            temperature: 0.0,
            max_tokens: Some(1500),
            base_url: None,
        }
    }
}

/// Ollama LLM configuration
#[cfg(feature = "ollama")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OllamaLLMConfig {
    /// Model name
    pub model: String,

    /// Ollama server URL
    pub base_url: String,

    /// Temperature
    pub temperature: f32,
}

#[cfg(feature = "ollama")]
impl Default for OllamaLLMConfig {
    fn default() -> Self {
        Self {
            model: "llama3.2".to_string(),
            base_url: "http://localhost:11434".to_string(),
            temperature: 0.0,
        }
    }
}

/// Anthropic configuration
#[cfg(feature = "anthropic")]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AnthropicConfig {
    /// API key (defaults to ANTHROPIC_API_KEY env var)
    pub api_key: Option<String>,

    /// Model name
    pub model: String,

    /// Temperature
    pub temperature: f32,

    /// Max tokens
    pub max_tokens: u32,
}

#[cfg(feature = "anthropic")]
impl Default for AnthropicConfig {
    fn default() -> Self {
        Self {
            api_key: None,
            model: "claude-3-haiku-20240307".to_string(),
            temperature: 0.0,
            max_tokens: 1500,
        }
    }
}

/// Custom prompts configuration
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct CustomPrompts {
    /// Custom fact extraction prompt
    pub fact_extraction: Option<String>,

    /// Custom memory update prompt
    pub memory_update: Option<String>,
}

/// Reranker configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "provider", rename_all = "lowercase")]
pub enum RerankerConfig {
    /// Cohere reranker
    Cohere(CohereRerankerConfig),
}

/// Cohere reranker configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CohereRerankerConfig {
    /// API key (defaults to COHERE_API_KEY env var)
    pub api_key: Option<String>,
    /// Model name
    pub model: String,
}

impl Default for CohereRerankerConfig {
    fn default() -> Self {
        Self {
            api_key: None,
            model: "rerank-english-v3.0".to_string(),
        }
    }
}