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
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
|
---
title: "Documents Search (/v3/search)"
description: "Full-featured search with extensive control over ranking, filtering, and results"
---
Documents search (`POST /v3/search`) provides maximum control over search behavior with extensive parameters for fine-tuning results.
## Basic Implementation
<Tabs>
<Tab title="TypeScript">
```typescript
import Supermemory from 'supermemory';
const client = new Supermemory({
apiKey: process.env.SUPERMEMORY_API_KEY!
});
const results = await client.search.documents({
q: "machine learning neural networks",
limit: 5
});
console.log(`Found ${results.total} documents in ${results.timing}ms`);
// Sample output structure
results.results.forEach((doc, i) => {
console.log(`${i + 1}. ${doc.title} (Score: ${doc.score})`);
console.log(` ${doc.chunks.length} chunks found`);
});
```
</Tab>
<Tab title="Python">
```python
from supermemory import Supermemory
import os
client = Supermemory(api_key=os.environ.get("SUPERMEMORY_API_KEY"))
results = client.search.documents(
q="machine learning neural networks",
limit=5
)
print(f"Found {results.total} documents in {results.timing}ms")
# Sample output structure
for i, doc in enumerate(results.results):
print(f"{i + 1}. {doc.title} (Score: {doc.score})")
print(f" {len(doc.chunks)} chunks found")
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "machine learning neural networks",
"limit": 5
}'
```
</Tab>
</Tabs>
**Sample Output:**
```json
{
"results": [
{
"documentId": "doc_ml_guide_2024",
"title": "Machine Learning with Neural Networks: A Comprehensive Guide",
"score": 0.89,
"chunks": [
{
"content": "Neural networks are computational models inspired by biological neural networks. They consist of interconnected nodes (neurons) that process information through weighted connections...",
"score": 0.92,
"isRelevant": true
},
{
"content": "Deep learning, a subset of machine learning, uses neural networks with multiple hidden layers to learn complex patterns in data...",
"score": 0.87,
"isRelevant": true
}
],
"createdAt": "2024-01-15T10:30:00Z",
"metadata": {
"category": "ai",
"difficulty": "intermediate"
}
}
],
"total": 12,
"timing": 156
}
```
## Container Tags Filtering
Container tags are the primary way to isolate search results by user, project, or organization.
**Key behaviors:**
- **Array-based**: Unlike `/v4/search`, this endpoint accepts multiple container tags as an array
- **Exact array matching**: Documents must have the EXACT same container tags array to match
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "quarterly reports",
containerTags: ["user_123"],
limit: 10
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="quarterly reports",
container_tags=["user_123"],
limit=10
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "quarterly reports",
"containerTags": ["user_123"],
"limit": 10
}'
```
</Tab>
</Tabs>
## Metadata Filtering
Metadata filtering allows complex conditions on structured data attached to your documents. This uses SQL-like query construction in the backend, requiring explicit AND/OR structures.
**Filter structure rules:**
- **Must wrap conditions** in AND or OR arrays, even for single conditions
- **Supports string matching** (exact), numeric operators, and array contains
- **Negate any condition** with `negate: true`
- **Combines with container tags** - both filters are applied
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "machine learning",
filters: {
AND: [
{
key: "category",
value: "technology",
negate: false
},
{
filterType: "numeric",
key: "readingTime",
value: "5",
negate: false,
numericOperator: "<="
}
]
},
limit: 10
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="machine learning",
filters={
"AND": [
{
"key": "category",
"value": "technology",
"negate": False
},
{
"filterType": "numeric",
"key": "readingTime",
"value": "5",
"negate": False,
"numericOperator": "<="
}
]
},
limit=10
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "machine learning",
"filters": {
"AND": [
{
"key": "category",
"value": "technology",
"negate": false
},
{
"filterType": "numeric",
"key": "readingTime",
"value": "5",
"negate": false,
"numericOperator": "<="
}
]
},
"limit": 10
}'
```
</Tab>
</Tabs>
**Sample Output:**
```json
{
"results": [
{
"documentId": "doc_tech_trends_2024",
"title": "Technology Trends in Machine Learning",
"score": 0.91,
"chunks": [
{
"content": "Machine learning continues to evolve with new architectures and optimization techniques. Reading time for this comprehensive overview is approximately 8 minutes...",
"score": 0.88,
"isRelevant": true
}
],
"metadata": {
"category": "technology",
"readingTime": 8,
"difficulty": "intermediate",
"published": true
}
}
],
"total": 6,
"timing": 189
}
```
## Array Contains Filtering
When your metadata includes arrays (like participant lists, tags, or categories), use `array_contains` to check if the array includes a specific value.
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "meeting discussion",
filters: {
AND: [
{
key: "participants",
value: "john.doe",
filterType: "array_contains"
}
]
},
limit: 5
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="meeting discussion",
filters={
"AND": [
{
"key": "participants",
"value": "john.doe",
"filterType": "array_contains"
}
]
},
limit=5
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "meeting discussion",
"filters": {
"AND": [
{
"key": "participants",
"value": "john.doe",
"filterType": "array_contains"
}
]
},
"limit": 5
}'
```
</Tab>
</Tabs>
## Threshold Control
Control result quality with sensitivity thresholds:
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "artificial intelligence",
documentThreshold: 0.7, // Higher = fewer, more relevant documents
chunkThreshold: 0.8, // Higher = fewer, more relevant chunks
limit: 10
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="artificial intelligence",
document_threshold=0.7, # Higher = fewer, more relevant documents
chunk_threshold=0.8, # Higher = fewer, more relevant chunks
limit=10
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "artificial intelligence",
"documentThreshold": 0.7,
"chunkThreshold": 0.8,
"limit": 10
}'
```
</Tab>
</Tabs>
## Query Rewriting
Improve search accuracy with automatic query rewriting:
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "What is the capital of France?",
rewriteQuery: true, // +400ms latency but better results
limit: 5
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="What is the capital of France?",
rewrite_query=True, # +400ms latency but better results
limit=5
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "What is the capital of France?",
"rewriteQuery": true,
"limit": 5
}'
```
</Tab>
</Tabs>
<Note>
Query rewriting generates multiple query variations and searches through all of them, then merges results. No additional cost but adds ~400ms latency.
</Note>
## Reranking
Improve result quality with secondary ranking:
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "machine learning applications",
rerank: true, // Apply secondary ranking algorithm
limit: 10
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="machine learning applications",
rerank=True, # Apply secondary ranking algorithm
limit=10
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "machine learning applications",
"rerank": true,
"limit": 10
}'
```
</Tab>
</Tabs>
## Document-Specific Search
Search within a specific large document:
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "neural networks",
docId: "doc_123", // Search only within this document
limit: 10
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="neural networks",
doc_id="doc_123", # Search only within this document
limit=10
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "neural networks",
"docId": "doc_123",
"limit": 10
}'
```
</Tab>
</Tabs>
## Full Context Options
Include complete document content and summaries:
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "research findings",
includeFullDocs: true, // Include complete document content
includeSummary: true, // Include document summaries
onlyMatchingChunks: false, // Include all chunks, not just matching ones
limit: 5
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="research findings",
include_full_docs=True, # Include complete document content
include_summary=True, # Include document summaries
only_matching_chunks=False, # Include all chunks, not just matching ones
limit=5
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "research findings",
"includeFullDocs": true,
"includeSummary": true,
"onlyMatchingChunks": false,
"limit": 5
}'
```
</Tab>
</Tabs>
## Complete Advanced Example
Combining all features for maximum control:
<Tabs>
<Tab title="TypeScript">
```typescript
const results = await client.search.documents({
q: "machine learning performance metrics",
containerTags: ["research_project"],
filters: {
AND: [
{ key: "category", value: "ai", negate: false },
{ key: "status", value: "published", negate: false }
]
},
documentThreshold: 0.6,
chunkThreshold: 0.7,
rewriteQuery: true,
rerank: true,
includeFullDocs: false,
includeSummary: true,
onlyMatchingChunks: true,
limit: 10
});
```
</Tab>
<Tab title="Python">
```python
results = client.search.documents(
q="machine learning performance metrics",
container_tags=["research_project"],
filters={
"AND": [
{"key": "category", "value": "ai", "negate": False},
{"key": "status", "value": "published", "negate": False}
]
},
document_threshold=0.6,
chunk_threshold=0.7,
rewrite_query=True,
rerank=True,
include_full_docs=False,
include_summary=True,
only_matching_chunks=True,
limit=10
)
```
</Tab>
<Tab title="cURL">
```bash
curl -X POST "https://api.supermemory.ai/v3/search" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "machine learning performance metrics",
"containerTags": ["research_project"],
"filters": {
"AND": [
{"key": "category", "value": "ai", "negate": false},
{"key": "status", "value": "published", "negate": false}
]
},
"documentThreshold": 0.6,
"chunkThreshold": 0.7,
"rewriteQuery": true,
"rerank": true,
"includeFullDocs": false,
"includeSummary": true,
"onlyMatchingChunks": true,
"limit": 10
}'
```
</Tab>
</Tabs>
|