forked from microsoft/semantic-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSemanticTextPartitioner.cs
293 lines (251 loc) · 9.79 KB
/
SemanticTextPartitioner.cs
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
// Copyright (c) Microsoft. All rights reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Microsoft.SemanticKernel.SemanticFunctions.Partitioning;
/// <summary>
/// Split text in chunks, attempting to leave meaning intact.
/// For plain text, split looking at new lines first, then periods, and so on.
/// For markdown, split looking at punctuation first, and so on.
/// </summary>
public static class SemanticTextPartitioner
{
/// <summary>
/// Split plain text into lines.
/// </summary>
/// <param name="text">Text to split</param>
/// <param name="maxTokensPerLine">Maximum number of tokens per line.</param>
/// <returns>List of lines.</returns>
public static List<string> SplitPlainTextLines(string text, int maxTokensPerLine)
{
return InternalSplitPlaintextLines(text, maxTokensPerLine, true);
}
/// <summary>
/// Split markdown text into lines.
/// </summary>
/// <param name="text">Text to split</param>
/// <param name="maxTokensPerLine">Maximum number of tokens per line.</param>
/// <returns>List of lines.</returns>
public static List<string> SplitMarkDownLines(string text, int maxTokensPerLine)
{
return InternalSplitMarkdownLines(text, maxTokensPerLine, true);
}
/// <summary>
/// Split plain text into paragraphs.
/// </summary>
/// <param name="lines">Lines of text.</param>
/// <param name="maxTokensPerParagraph">Maximum number of tokens per paragraph.</param>
/// <returns>List of paragraphs.</returns>
public static List<string> SplitPlainTextParagraphs(List<string> lines, int maxTokensPerParagraph)
{
return InternalSplitTextParagraphs(lines, maxTokensPerParagraph, text => InternalSplitPlaintextLines(text, maxTokensPerParagraph, false));
}
/// <summary>
/// Split markdown text into paragraphs.
/// </summary>
/// <param name="lines">Lines of text.</param>
/// <param name="maxTokensPerParagraph">Maximum number of tokens per paragraph.</param>
/// <returns>List of paragraphs.</returns>
public static List<string> SplitMarkdownParagraphs(List<string> lines, int maxTokensPerParagraph)
{
return InternalSplitTextParagraphs(lines, maxTokensPerParagraph, text => InternalSplitMarkdownLines(text, maxTokensPerParagraph, false));
}
private static List<string> InternalSplitTextParagraphs(List<string> lines, int maxTokensPerParagraph, Func<string, List<string>> longLinesSplitter)
{
if (lines.Count == 0)
{
return new List<string>();
}
// Split long lines first
var truncatedLines = new List<string>();
foreach (var line in lines)
{
truncatedLines.AddRange(longLinesSplitter(line));
}
lines = truncatedLines;
// Group lines in paragraphs
var paragraphs = new List<string>();
var currentParagraph = new StringBuilder();
foreach (var line in lines)
{
// "+1" to account for the "new line" added by AppendLine()
if (TokenCount(currentParagraph.ToString()) + TokenCount(line) + 1 >= maxTokensPerParagraph &&
currentParagraph.Length > 0)
{
paragraphs.Add(currentParagraph.ToString().Trim());
currentParagraph.Clear();
}
currentParagraph.AppendLine(line);
}
if (currentParagraph.Length > 0)
{
paragraphs.Add(currentParagraph.ToString().Trim());
currentParagraph.Clear();
}
// distribute text more evenly in the last paragraphs when the last paragraph is too short.
if (paragraphs.Count > 1)
{
var lastParagraph = paragraphs[^1];
var secondLastParagraph = paragraphs[^2];
if (TokenCount(lastParagraph) < maxTokensPerParagraph / 4)
{
var lastParagraphTokens = lastParagraph.Split(' ', StringSplitOptions.RemoveEmptyEntries);
var secondLastParagraphTokens = secondLastParagraph.Split(' ', StringSplitOptions.RemoveEmptyEntries);
var lastParagraphTokensCount = lastParagraphTokens.Length;
var secondLastParagraphTokensCount = secondLastParagraphTokens.Length;
if (lastParagraphTokensCount + secondLastParagraphTokensCount <= maxTokensPerParagraph)
{
var newSecondLastParagraph = new StringBuilder();
for (var i = 0; i < secondLastParagraphTokensCount; i++)
{
newSecondLastParagraph.Append(secondLastParagraphTokens[i])
.Append(' ');
}
for (var i = 0; i < lastParagraphTokensCount; i++)
{
newSecondLastParagraph.Append(lastParagraphTokens[i])
.Append(' ');
}
paragraphs[^2] = newSecondLastParagraph.ToString().Trim();
paragraphs.RemoveAt(paragraphs.Count - 1);
}
}
}
return paragraphs;
}
private static List<string> InternalSplitPlaintextLines(string text, int maxTokensPerLine, bool trim)
{
text = text.Replace("\r\n", "\n", StringComparison.OrdinalIgnoreCase);
var splitOptions = new List<List<char>?>
{
new List<char> { '\n', '\r' },
new List<char> { '.' },
new List<char> { '?', '!' },
new List<char> { ';' },
new List<char> { ':' },
new List<char> { ',' },
new List<char> { ')', ']', '}' },
new List<char> { ' ' },
new List<char> { '-' },
null
};
List<string>? result = null;
bool inputWasSplit;
foreach (var splitOption in splitOptions)
{
if (result is null)
{
result = Split(text, maxTokensPerLine, splitOption, trim, out inputWasSplit);
}
else
{
result = Split(result, maxTokensPerLine, splitOption, trim, out inputWasSplit);
}
if (!inputWasSplit)
{
break;
}
}
return result ?? new List<string>();
}
private static List<string> InternalSplitMarkdownLines(string text, int maxTokensPerLine, bool trim)
{
text = text.Replace("\r\n", "\n", StringComparison.OrdinalIgnoreCase);
var splitOptions = new List<List<char>?>
{
new List<char> { '.' },
new List<char> { '?', '!' },
new List<char> { ';', },
new List<char> { ':' },
new List<char> { ',', },
new List<char> { ')', ']', '}' },
new List<char> { ' ' },
new List<char> { '-' },
new List<char> { '\n', '\r' },
null
};
List<string>? result = null;
bool inputWasSplit;
foreach (var splitOption in splitOptions)
{
if (result is null)
{
result = Split(text, maxTokensPerLine, splitOption, trim, out inputWasSplit);
}
else
{
result = Split(result, maxTokensPerLine, splitOption, trim, out inputWasSplit);
}
if (!inputWasSplit)
{
break;
}
}
return result ?? new List<string>();
}
private static List<string> Split(IEnumerable<string> input, int maxTokens, List<char>? separators, bool trim, out bool inputWasSplit)
{
inputWasSplit = false;
var result = new List<string>();
foreach (string text in input)
{
result.AddRange(Split(text, maxTokens, separators, trim, out bool split));
inputWasSplit = inputWasSplit || split;
}
return result;
}
private static List<string> Split(string input, int maxTokens, List<char>? separators, bool trim, out bool inputWasSplit)
{
inputWasSplit = false;
var asIs = new List<string> { trim ? input.Trim() : input };
if (TokenCount(input) <= maxTokens)
{
return asIs;
}
inputWasSplit = true;
var result = new List<string>();
int half = input.Length / 2;
int cutPoint = -1;
if (separators == null || separators.Count == 0)
{
cutPoint = half;
}
else if (input.Any(separators.Contains) && input.Length > 2)
{
for (var index = 0; index < input.Length - 1; index++)
{
if (!separators.Contains(input[index]))
{
continue;
}
if (Math.Abs(half - index) < Math.Abs(half - cutPoint))
{
cutPoint = index + 1;
}
}
}
if (cutPoint > 0)
{
var firstHalf = input[..cutPoint];
var secondHalf = input[cutPoint..];
if (trim)
{
firstHalf = firstHalf.Trim();
secondHalf = secondHalf.Trim();
}
// Recursion
result.AddRange(Split(firstHalf, maxTokens, separators, trim, out bool split1));
result.AddRange(Split(secondHalf, maxTokens, separators, trim, out bool split2));
inputWasSplit = split1 || split2;
return result;
}
return asIs;
}
private static int TokenCount(string input)
{
// TODO: partitioning methods should be configurable to allow for different tokenization strategies
// depending on the model to be called. For now, we use an extremely rough estimate.
return input.Length / 4;
}
}