-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmindwave-context.php
More file actions
46 lines (43 loc) · 1.39 KB
/
mindwave-context.php
File metadata and controls
46 lines (43 loc) · 1.39 KB
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
<?php
return [
/*
|--------------------------------------------------------------------------
| TNTSearch Storage Path
|--------------------------------------------------------------------------
|
| Directory where ephemeral TNTSearch indexes are stored.
| Indexes are automatically cleaned up based on TTL.
|
*/
'tntsearch' => [
'storage_path' => storage_path('mindwave/tnt-indexes'),
'ttl_hours' => env('MINDWAVE_TNT_INDEX_TTL', 24),
'max_index_size_mb' => env('MINDWAVE_TNT_MAX_INDEX_SIZE', 100),
],
/*
|--------------------------------------------------------------------------
| Context Pipeline Defaults
|--------------------------------------------------------------------------
|
| Default settings for context aggregation and ranking.
|
*/
'pipeline' => [
'default_limit' => 10,
'deduplicate' => true,
'format' => 'numbered', // numbered, markdown, json
],
/*
|--------------------------------------------------------------------------
| Tracing
|--------------------------------------------------------------------------
|
| Enable OpenTelemetry tracing for context operations.
|
*/
'tracing' => [
'enabled' => env('MINDWAVE_CONTEXT_TRACING', true),
'trace_searches' => true,
'trace_index_creation' => true,
],
];