@librechat/agents 2.4.30 → 2.4.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/dist/cjs/common/enum.cjs +1 -0
  2. package/dist/cjs/common/enum.cjs.map +1 -1
  3. package/dist/cjs/events.cjs +3 -3
  4. package/dist/cjs/events.cjs.map +1 -1
  5. package/dist/cjs/graphs/Graph.cjs +2 -1
  6. package/dist/cjs/graphs/Graph.cjs.map +1 -1
  7. package/dist/cjs/main.cjs +7 -2
  8. package/dist/cjs/main.cjs.map +1 -1
  9. package/dist/cjs/messages/ids.cjs +23 -0
  10. package/dist/cjs/messages/ids.cjs.map +1 -0
  11. package/dist/cjs/splitStream.cjs +2 -1
  12. package/dist/cjs/splitStream.cjs.map +1 -1
  13. package/dist/cjs/stream.cjs +87 -154
  14. package/dist/cjs/stream.cjs.map +1 -1
  15. package/dist/cjs/tools/ToolNode.cjs +14 -3
  16. package/dist/cjs/tools/ToolNode.cjs.map +1 -1
  17. package/dist/cjs/tools/handlers.cjs +144 -0
  18. package/dist/cjs/tools/handlers.cjs.map +1 -0
  19. package/dist/cjs/tools/search/content.cjs +140 -0
  20. package/dist/cjs/tools/search/content.cjs.map +1 -0
  21. package/dist/cjs/tools/search/firecrawl.cjs +131 -0
  22. package/dist/cjs/tools/search/firecrawl.cjs.map +1 -0
  23. package/dist/cjs/tools/search/format.cjs +203 -0
  24. package/dist/cjs/tools/search/format.cjs.map +1 -0
  25. package/dist/cjs/tools/search/highlights.cjs +245 -0
  26. package/dist/cjs/tools/search/highlights.cjs.map +1 -0
  27. package/dist/cjs/tools/search/rerankers.cjs +194 -0
  28. package/dist/cjs/tools/search/rerankers.cjs.map +1 -0
  29. package/dist/cjs/tools/search/schema.cjs +70 -0
  30. package/dist/cjs/tools/search/schema.cjs.map +1 -0
  31. package/dist/cjs/tools/search/search.cjs +491 -0
  32. package/dist/cjs/tools/search/search.cjs.map +1 -0
  33. package/dist/cjs/tools/search/tool.cjs +292 -0
  34. package/dist/cjs/tools/search/tool.cjs.map +1 -0
  35. package/dist/cjs/tools/search/utils.cjs +66 -0
  36. package/dist/cjs/tools/search/utils.cjs.map +1 -0
  37. package/dist/esm/common/enum.mjs +1 -0
  38. package/dist/esm/common/enum.mjs.map +1 -1
  39. package/dist/esm/events.mjs +1 -1
  40. package/dist/esm/events.mjs.map +1 -1
  41. package/dist/esm/graphs/Graph.mjs +2 -1
  42. package/dist/esm/graphs/Graph.mjs.map +1 -1
  43. package/dist/esm/main.mjs +4 -1
  44. package/dist/esm/main.mjs.map +1 -1
  45. package/dist/esm/messages/ids.mjs +21 -0
  46. package/dist/esm/messages/ids.mjs.map +1 -0
  47. package/dist/esm/splitStream.mjs +2 -1
  48. package/dist/esm/splitStream.mjs.map +1 -1
  49. package/dist/esm/stream.mjs +87 -152
  50. package/dist/esm/stream.mjs.map +1 -1
  51. package/dist/esm/tools/ToolNode.mjs +14 -3
  52. package/dist/esm/tools/ToolNode.mjs.map +1 -1
  53. package/dist/esm/tools/handlers.mjs +141 -0
  54. package/dist/esm/tools/handlers.mjs.map +1 -0
  55. package/dist/esm/tools/search/content.mjs +119 -0
  56. package/dist/esm/tools/search/content.mjs.map +1 -0
  57. package/dist/esm/tools/search/firecrawl.mjs +128 -0
  58. package/dist/esm/tools/search/firecrawl.mjs.map +1 -0
  59. package/dist/esm/tools/search/format.mjs +201 -0
  60. package/dist/esm/tools/search/format.mjs.map +1 -0
  61. package/dist/esm/tools/search/highlights.mjs +243 -0
  62. package/dist/esm/tools/search/highlights.mjs.map +1 -0
  63. package/dist/esm/tools/search/rerankers.mjs +188 -0
  64. package/dist/esm/tools/search/rerankers.mjs.map +1 -0
  65. package/dist/esm/tools/search/schema.mjs +61 -0
  66. package/dist/esm/tools/search/schema.mjs.map +1 -0
  67. package/dist/esm/tools/search/search.mjs +488 -0
  68. package/dist/esm/tools/search/search.mjs.map +1 -0
  69. package/dist/esm/tools/search/tool.mjs +290 -0
  70. package/dist/esm/tools/search/tool.mjs.map +1 -0
  71. package/dist/esm/tools/search/utils.mjs +61 -0
  72. package/dist/esm/tools/search/utils.mjs.map +1 -0
  73. package/dist/types/common/enum.d.ts +1 -0
  74. package/dist/types/graphs/Graph.d.ts +1 -1
  75. package/dist/types/index.d.ts +2 -0
  76. package/dist/types/messages/ids.d.ts +3 -0
  77. package/dist/types/messages/index.d.ts +1 -0
  78. package/dist/types/scripts/search.d.ts +1 -0
  79. package/dist/types/stream.d.ts +0 -8
  80. package/dist/types/tools/ToolNode.d.ts +6 -0
  81. package/dist/types/tools/example.d.ts +23 -3
  82. package/dist/types/tools/handlers.d.ts +8 -0
  83. package/dist/types/tools/search/content.d.ts +4 -0
  84. package/dist/types/tools/search/firecrawl.d.ts +38 -0
  85. package/dist/types/tools/search/format.d.ts +5 -0
  86. package/dist/types/tools/search/highlights.d.ts +13 -0
  87. package/dist/types/tools/search/index.d.ts +2 -0
  88. package/dist/types/tools/search/rerankers.d.ts +36 -0
  89. package/dist/types/tools/search/schema.d.ts +16 -0
  90. package/dist/types/tools/search/search.d.ts +9 -0
  91. package/dist/types/tools/search/test.d.ts +1 -0
  92. package/dist/types/tools/search/tool.d.ts +33 -0
  93. package/dist/types/tools/search/types.d.ts +540 -0
  94. package/dist/types/tools/search/utils.d.ts +10 -0
  95. package/package.json +10 -7
  96. package/src/common/enum.ts +1 -0
  97. package/src/events.ts +49 -15
  98. package/src/graphs/Graph.ts +6 -2
  99. package/src/index.ts +2 -0
  100. package/src/messages/ids.ts +26 -0
  101. package/src/messages/index.ts +1 -0
  102. package/src/scripts/search.ts +146 -0
  103. package/src/splitStream.test.ts +132 -71
  104. package/src/splitStream.ts +2 -1
  105. package/src/stream.ts +94 -183
  106. package/src/tools/ToolNode.ts +37 -14
  107. package/src/tools/handlers.ts +167 -0
  108. package/src/tools/search/content.test.ts +173 -0
  109. package/src/tools/search/content.ts +147 -0
  110. package/src/tools/search/firecrawl.ts +158 -0
  111. package/src/tools/search/format.ts +252 -0
  112. package/src/tools/search/highlights.ts +320 -0
  113. package/src/tools/search/index.ts +2 -0
  114. package/src/tools/search/output.md +2775 -0
  115. package/src/tools/search/rerankers.ts +269 -0
  116. package/src/tools/search/schema.ts +63 -0
  117. package/src/tools/search/search.ts +680 -0
  118. package/src/tools/search/test.html +884 -0
  119. package/src/tools/search/test.md +643 -0
  120. package/src/tools/search/test.ts +159 -0
  121. package/src/tools/search/tool.ts +427 -0
  122. package/src/tools/search/types.ts +621 -0
  123. package/src/tools/search/utils.ts +79 -0
  124. package/src/utils/llmConfig.ts +1 -1
@@ -0,0 +1,252 @@
1
+ import type * as t from './types';
2
+ import { getDomainName, fileExtRegex } from './utils';
3
+
4
+ function addHighlightSection(): string[] {
5
+ return ['\n## Highlights', ''];
6
+ }
7
+
8
+ // Helper function to format a source (organic or top story)
9
+ function formatSource(
10
+ source: t.ValidSource,
11
+ index: number,
12
+ turn: number,
13
+ sourceType: 'search' | 'news',
14
+ references: t.ResultReference[]
15
+ ): string {
16
+ /** Array of all lines to include in the output */
17
+ const outputLines: string[] = [];
18
+
19
+ // Add the title
20
+ outputLines.push(
21
+ `# ${sourceType.charAt(0).toUpperCase() + sourceType.slice(1)} ${index}: ${source.title != null && source.title ? `"${source.title}"` : '(no title)'}`
22
+ );
23
+ outputLines.push(`\nAnchor: \\ue202turn${turn}${sourceType}${index}`);
24
+ outputLines.push(`URL: ${source.link}`);
25
+
26
+ // Add optional fields
27
+ if ('snippet' in source && source.snippet != null) {
28
+ outputLines.push(`Summary: ${source.snippet}`);
29
+ }
30
+
31
+ if (source.date != null) {
32
+ outputLines.push(`Date: ${source.date}`);
33
+ }
34
+
35
+ if (source.attribution != null) {
36
+ outputLines.push(`Source: ${source.attribution}`);
37
+ }
38
+
39
+ // Add highlight section or empty line
40
+ if ((source.highlights?.length ?? 0) > 0) {
41
+ outputLines.push(...addHighlightSection());
42
+ } else {
43
+ outputLines.push('');
44
+ }
45
+
46
+ // Process highlights if they exist
47
+ (source.highlights ?? [])
48
+ .filter((h) => h.text.trim().length > 0)
49
+ .forEach((h, hIndex) => {
50
+ outputLines.push(
51
+ `### Highlight ${hIndex + 1} [Relevance: ${h.score.toFixed(2)}]`
52
+ );
53
+ outputLines.push('');
54
+ outputLines.push('```text');
55
+ outputLines.push(h.text.trim());
56
+ outputLines.push('```');
57
+ outputLines.push('');
58
+
59
+ if (h.references != null && h.references.length) {
60
+ let hasHeader = false;
61
+ const refLines: string[] = [];
62
+
63
+ for (let j = 0; j < h.references.length; j++) {
64
+ const ref = h.references[j];
65
+ if (ref.reference.originalUrl.includes('mailto:')) {
66
+ continue;
67
+ }
68
+ references.push({
69
+ type: ref.type,
70
+ link: ref.reference.originalUrl,
71
+ attribution: getDomainName(ref.reference.originalUrl),
72
+ title: (
73
+ ((ref.reference.title ?? '') || ref.reference.text) ??
74
+ ''
75
+ ).split('\n')[0],
76
+ });
77
+
78
+ if (ref.type !== 'link') {
79
+ continue;
80
+ }
81
+
82
+ if (fileExtRegex.test(ref.reference.originalUrl)) {
83
+ continue;
84
+ }
85
+
86
+ if (!hasHeader) {
87
+ refLines.push('Core References:');
88
+ hasHeader = true;
89
+ }
90
+
91
+ refLines.push(
92
+ `- ${ref.type}#${ref.originalIndex + 1}: ${ref.reference.originalUrl}`
93
+ );
94
+ refLines.push(
95
+ `\t- Anchor: \\ue202turn${turn}ref${references.length - 1}`
96
+ );
97
+ }
98
+
99
+ if (hasHeader) {
100
+ outputLines.push(...refLines);
101
+ outputLines.push('');
102
+ }
103
+ }
104
+
105
+ if (hIndex < (source.highlights?.length ?? 0) - 1) {
106
+ outputLines.push('---');
107
+ outputLines.push('');
108
+ }
109
+ });
110
+
111
+ outputLines.push('');
112
+ return outputLines.join('\n');
113
+ }
114
+
115
+ export function formatResultsForLLM(
116
+ turn: number,
117
+ results: t.SearchResultData
118
+ ): { output: string; references: t.ResultReference[] } {
119
+ /** Array to collect all output lines */
120
+ const outputLines: string[] = [];
121
+
122
+ const addSection = (title: string): void => {
123
+ outputLines.push('');
124
+ outputLines.push(`=== ${title} ===`);
125
+ outputLines.push('');
126
+ };
127
+
128
+ const references: t.ResultReference[] = [];
129
+
130
+ // Organic (web) results
131
+ if (results.organic?.length != null && results.organic.length > 0) {
132
+ addSection(`Web Results, Turn ${turn}`);
133
+ for (let i = 0; i < results.organic.length; i++) {
134
+ const r = results.organic[i];
135
+ outputLines.push(formatSource(r, i, turn, 'search', references));
136
+ delete results.organic[i].highlights;
137
+ }
138
+ }
139
+
140
+ // Top stories (news)
141
+ const topStories = results.topStories ?? [];
142
+ if (topStories.length) {
143
+ addSection('News Results');
144
+ for (let i = 0; i < topStories.length; i++) {
145
+ const r = topStories[i];
146
+ outputLines.push(formatSource(r, i, turn, 'news', references));
147
+ if (results.topStories?.[i]?.highlights) {
148
+ delete results.topStories[i].highlights;
149
+ }
150
+ }
151
+ }
152
+
153
+ // // Images
154
+ // const images = results.images ?? [];
155
+ // if (images.length) {
156
+ // addSection('Image Results');
157
+ // const imageLines = images.map((img, i) => [
158
+ // `Anchor: \ue202turn0image${i}`,
159
+ // `Title: ${img.title ?? '(no title)'}`,
160
+ // `Image URL: ${img.imageUrl}`,
161
+ // ''
162
+ // ].join('\n'));
163
+ // outputLines.push(imageLines.join('\n'));
164
+ // }
165
+
166
+ // Knowledge Graph
167
+ if (results.knowledgeGraph != null) {
168
+ addSection('Knowledge Graph');
169
+ const kgLines = [
170
+ `**Title:** ${results.knowledgeGraph.title ?? '(no title)'}`,
171
+ results.knowledgeGraph.type != null
172
+ ? `**Type:** ${results.knowledgeGraph.type}`
173
+ : '',
174
+ results.knowledgeGraph.description != null
175
+ ? `**Description:** ${results.knowledgeGraph.description}`
176
+ : '',
177
+ results.knowledgeGraph.descriptionSource != null
178
+ ? `**Description Source:** ${results.knowledgeGraph.descriptionSource}`
179
+ : '',
180
+ results.knowledgeGraph.descriptionLink != null
181
+ ? `**Description Link:** ${results.knowledgeGraph.descriptionLink}`
182
+ : '',
183
+ results.knowledgeGraph.imageUrl != null
184
+ ? `**Image URL:** ${results.knowledgeGraph.imageUrl}`
185
+ : '',
186
+ results.knowledgeGraph.website != null
187
+ ? `**Website:** ${results.knowledgeGraph.website}`
188
+ : '',
189
+ results.knowledgeGraph.attributes != null
190
+ ? `**Attributes:**\n\`\`\`json\n${JSON.stringify(
191
+ results.knowledgeGraph.attributes,
192
+ null,
193
+ 2
194
+ )}\n\`\`\``
195
+ : '',
196
+ '',
197
+ ].filter(Boolean);
198
+
199
+ outputLines.push(kgLines.join('\n\n'));
200
+ }
201
+
202
+ // Answer Box
203
+ if (results.answerBox != null) {
204
+ addSection('Answer Box');
205
+ const abLines = [
206
+ results.answerBox.title != null
207
+ ? `**Title:** ${results.answerBox.title}`
208
+ : '',
209
+ results.answerBox.snippet != null
210
+ ? `**Snippet:** ${results.answerBox.snippet}`
211
+ : '',
212
+ results.answerBox.snippetHighlighted != null
213
+ ? `**Snippet Highlighted:** ${results.answerBox.snippetHighlighted
214
+ .map((s) => `\`${s}\``)
215
+ .join(' ')}`
216
+ : '',
217
+ results.answerBox.link != null
218
+ ? `**Link:** ${results.answerBox.link}`
219
+ : '',
220
+ '',
221
+ ].filter(Boolean);
222
+
223
+ outputLines.push(abLines.join('\n\n'));
224
+ }
225
+
226
+ // People also ask
227
+ const peopleAlsoAsk = results.peopleAlsoAsk ?? [];
228
+ if (peopleAlsoAsk.length) {
229
+ addSection('People Also Ask');
230
+
231
+ const paaLines: string[] = [];
232
+ peopleAlsoAsk.forEach((p, i) => {
233
+ const questionLines = [
234
+ `### Question ${i + 1}:`,
235
+ `"${p.question}"`,
236
+ `${p.snippet != null && p.snippet ? `Snippet: ${p.snippet}` : ''}`,
237
+ `${p.title != null && p.title ? `Title: ${p.title}` : ''}`,
238
+ `${p.link != null && p.link ? `Link: ${p.link}` : ''}`,
239
+ '',
240
+ ].filter(Boolean);
241
+
242
+ paaLines.push(questionLines.join('\n\n'));
243
+ });
244
+
245
+ outputLines.push(paaLines.join(''));
246
+ }
247
+
248
+ return {
249
+ output: outputLines.join('\n').trim(),
250
+ references,
251
+ };
252
+ }
@@ -0,0 +1,320 @@
1
+ import type * as t from './types';
2
+
3
+ // 2. Pre-compile all regular expressions (only do this once)
4
+ // Group patterns by priority for early returns
5
+ const priorityPatterns = [
6
+ // High priority patterns (structural)
7
+ [
8
+ { regex: /\n\n/g }, // Double newline (paragraph break)
9
+ { regex: /\n/g }, // Single newline
10
+ { regex: /={3,}\s*\n|-{3,}\s*\n/g }, // Section separators
11
+ ],
12
+ // Medium priority (semantic)
13
+ [
14
+ { regex: /[.!?][")\]]?\s/g }, // End of sentence
15
+ { regex: /;\s/g }, // Semicolon
16
+ { regex: /:\s/g }, // Colon
17
+ ],
18
+ // Low priority (any breaks)
19
+ [
20
+ { regex: /,\s/g }, // Comma
21
+ { regex: /\s-\s/g }, // Dash surrounded by spaces
22
+ { regex: /\s/g }, // Any space
23
+ ],
24
+ ];
25
+
26
+ function findFirstMatch(text: string, regex: RegExp): number {
27
+ // Reset regex
28
+ regex.lastIndex = 0;
29
+
30
+ // For very long texts, try chunking
31
+ if (text.length > 10000) {
32
+ const chunkSize = 2000;
33
+ let position = 0;
34
+
35
+ while (position < text.length) {
36
+ const chunk = text.substring(position, position + chunkSize);
37
+ regex.lastIndex = 0;
38
+
39
+ const match = regex.exec(chunk);
40
+ if (match) {
41
+ return position + match.index;
42
+ }
43
+
44
+ // Move to next chunk with some overlap
45
+ position += chunkSize - 100;
46
+ if (position >= text.length) break;
47
+ }
48
+ return -1;
49
+ }
50
+
51
+ // For shorter texts, normal regex search
52
+ const match = regex.exec(text);
53
+ return match ? match.index : -1;
54
+ }
55
+
56
+ // 3. Optimized boundary finding functions
57
+ function findLastMatch(text: string, regex: RegExp): number {
58
+ // Reset regex state
59
+ regex.lastIndex = 0;
60
+
61
+ let lastIndex = -1;
62
+ let lastLength = 0;
63
+ let match;
64
+
65
+ // For very long texts, use a different approach to avoid regex engine slowdowns
66
+ if (text.length > 10000) {
67
+ // Try dividing the text into chunks for faster processing
68
+ const chunkSize = 2000;
69
+ let startPosition = Math.max(0, text.length - chunkSize);
70
+
71
+ while (startPosition >= 0) {
72
+ const chunk = text.substring(startPosition, startPosition + chunkSize);
73
+ regex.lastIndex = 0;
74
+
75
+ let chunkLastIndex = -1;
76
+ let chunkLastLength = 0;
77
+
78
+ while ((match = regex.exec(chunk)) !== null) {
79
+ chunkLastIndex = match.index;
80
+ chunkLastLength = match[0].length;
81
+ }
82
+
83
+ if (chunkLastIndex !== -1) {
84
+ return startPosition + chunkLastIndex + chunkLastLength;
85
+ }
86
+
87
+ // Move to previous chunk with some overlap
88
+ startPosition = Math.max(0, startPosition - chunkSize + 100) - 1;
89
+ if (startPosition <= 0) break;
90
+ }
91
+ return -1;
92
+ }
93
+
94
+ // For shorter texts, normal regex search
95
+ while ((match = regex.exec(text)) !== null) {
96
+ lastIndex = match.index;
97
+ lastLength = match[0].length;
98
+ }
99
+
100
+ return lastIndex === -1 ? -1 : lastIndex + lastLength;
101
+ }
102
+
103
+ // 4. Find the best boundary with priority groups
104
+ function findBestBoundary(text: string, direction = 'backward'): number {
105
+ if (!text || text.length === 0) return 0;
106
+
107
+ // Try each priority group
108
+ for (const patternGroup of priorityPatterns) {
109
+ for (const pattern of patternGroup) {
110
+ const position =
111
+ direction === 'backward'
112
+ ? findLastMatch(text, pattern.regex)
113
+ : findFirstMatch(text, pattern.regex);
114
+
115
+ if (position !== -1) {
116
+ return position;
117
+ }
118
+ }
119
+ }
120
+
121
+ // No match found, use character boundary
122
+ return direction === 'backward' ? text.length : 0;
123
+ }
124
+
125
+ /**
126
+ * Tracks references used in a highlight without changing their numbers
127
+ */
128
+ function trackReferencesInHighlight(
129
+ text: string,
130
+ sourceResult: t.ValidSource // Source containing the original references
131
+ ): {
132
+ references: {
133
+ type: 'link' | 'image' | 'video';
134
+ originalIndex: number;
135
+ reference: t.MediaReference; // Original reference object
136
+ }[];
137
+ } {
138
+ // Track used references
139
+ const references: {
140
+ type: 'link' | 'image' | 'video';
141
+ originalIndex: number;
142
+ reference: t.MediaReference;
143
+ }[] = [];
144
+
145
+ if (!text || text.length === 0 || !text.includes('#')) {
146
+ return { references }; // Early return
147
+ }
148
+
149
+ // Quick check for reference markers
150
+ if (
151
+ !text.includes('link#') &&
152
+ !text.includes('image#') &&
153
+ !text.includes('video#')
154
+ ) {
155
+ return { references };
156
+ }
157
+
158
+ // Get references from the source if available
159
+ const sourceRefs = sourceResult.references || {
160
+ links: [],
161
+ images: [],
162
+ videos: [],
163
+ };
164
+
165
+ // Find references but don't modify text
166
+ const refRegex = /\((link|image|video)#(\d+)(?:\s+"([^"]*)")?\)/g;
167
+ let match;
168
+
169
+ while ((match = refRegex.exec(text)) !== null) {
170
+ const [, type, indexStr] = match;
171
+ const originalIndex = parseInt(indexStr, 10) - 1; // Convert to 0-based
172
+
173
+ // Get the source array for this type
174
+ const refType = type as 'link' | 'image' | 'video';
175
+ const sourceArray = sourceRefs[`${refType}s`] as
176
+ | t.MediaReference[]
177
+ | undefined;
178
+
179
+ // Skip if invalid reference
180
+ if (
181
+ !sourceArray ||
182
+ originalIndex < 0 ||
183
+ originalIndex >= sourceArray.length
184
+ ) {
185
+ continue; // Skip invalid references
186
+ }
187
+
188
+ // Get original reference
189
+ const reference = sourceArray[originalIndex];
190
+
191
+ // Track if not already tracked
192
+ const alreadyTracked = references.some(
193
+ (ref) => ref.type === refType && ref.originalIndex === originalIndex
194
+ );
195
+
196
+ if (!alreadyTracked) {
197
+ references.push({
198
+ type: refType,
199
+ originalIndex,
200
+ reference,
201
+ });
202
+ }
203
+ }
204
+
205
+ return { references };
206
+ }
207
+
208
+ /**
209
+ * Expand highlights in search results using smart boundary detection.
210
+ *
211
+ * This implementation finds natural text boundaries like paragraphs, sentences,
212
+ * and phrases to provide context while maintaining readability.
213
+ *
214
+ * @param searchResults - Search results object
215
+ * @param mainExpandBy - Primary expansion size on each side (default: 300)
216
+ * @param separatorExpandBy - Additional range to look for separators (default: 150)
217
+ * @returns Copy of search results with expanded highlights and tracked references
218
+ */
219
+ export function expandHighlights(
220
+ searchResults: t.SearchResultData,
221
+ mainExpandBy = 300,
222
+ separatorExpandBy = 150
223
+ ): t.SearchResultData {
224
+ // Avoid deep copy - only copy what we modify
225
+ const resultCopy = { ...searchResults };
226
+ if (resultCopy.organic) resultCopy.organic = [...resultCopy.organic];
227
+ if (resultCopy.topStories) resultCopy.topStories = [...resultCopy.topStories];
228
+
229
+ // Process the results efficiently
230
+ const processResultTypes = ['organic', 'topStories'] as const;
231
+
232
+ for (const resultType of processResultTypes) {
233
+ if (!resultCopy[resultType as 'organic' | 'topStories']) continue;
234
+
235
+ // Map results to new array with modified highlights
236
+ resultCopy[resultType] = resultCopy[resultType]?.map((result) => {
237
+ if (
238
+ result.content == null ||
239
+ result.content === '' ||
240
+ !result.highlights ||
241
+ result.highlights.length === 0
242
+ ) {
243
+ return result; // No modification needed
244
+ }
245
+
246
+ // Create a shallow copy with expanded highlights
247
+ const resultCopy = { ...result };
248
+ const content = result.content;
249
+ const highlights = [];
250
+ // Process each highlight
251
+ for (const highlight of result.highlights) {
252
+ const { references } = trackReferencesInHighlight(
253
+ highlight.text,
254
+ result
255
+ );
256
+
257
+ let startPos = content.indexOf(highlight.text);
258
+ let highlightLen = highlight.text.length;
259
+
260
+ if (startPos === -1) {
261
+ // Try with stripped whitespace
262
+ const strippedHighlight = highlight.text.trim();
263
+ startPos = content.indexOf(strippedHighlight);
264
+
265
+ if (startPos === -1) {
266
+ highlights.push({
267
+ text: highlight.text,
268
+ score: highlight.score,
269
+ references,
270
+ });
271
+ continue;
272
+ }
273
+ highlightLen = strippedHighlight.length;
274
+ }
275
+
276
+ // Calculate boundaries
277
+ const mainStart = Math.max(0, startPos - mainExpandBy);
278
+ const mainEnd = Math.min(
279
+ content.length,
280
+ startPos + highlightLen + mainExpandBy
281
+ );
282
+
283
+ const separatorStart = Math.max(0, mainStart - separatorExpandBy);
284
+ const separatorEnd = Math.min(
285
+ content.length,
286
+ mainEnd + separatorExpandBy
287
+ );
288
+
289
+ // Extract text segments
290
+ const headText = content.substring(separatorStart, mainStart);
291
+ const tailText = content.substring(mainEnd, separatorEnd);
292
+
293
+ // Find natural boundaries
294
+ const bestHeadBoundary = findBestBoundary(headText, 'backward');
295
+ const bestTailBoundary = findBestBoundary(tailText, 'forward');
296
+
297
+ // Calculate final positions
298
+ const finalStart = separatorStart + bestHeadBoundary;
299
+ const finalEnd = mainEnd + bestTailBoundary;
300
+
301
+ // Extract the expanded highlight
302
+ const expandedHighlightText = content
303
+ .substring(finalStart, finalEnd)
304
+ .trim();
305
+ highlights.push({
306
+ text: expandedHighlightText,
307
+ score: highlight.score,
308
+ references,
309
+ });
310
+ }
311
+
312
+ resultCopy.highlights = highlights;
313
+ delete resultCopy.content;
314
+ delete resultCopy.references;
315
+ return resultCopy;
316
+ });
317
+ }
318
+
319
+ return resultCopy;
320
+ }
@@ -0,0 +1,2 @@
1
+ export * from './tool';
2
+ export type * from './types';