Skip to content

Commit 9d04d3f

Browse files
committed
fix TextSplitter.java
1 parent 5df7c5b commit 9d04d3f

File tree

1 file changed

+1
-1
lines changed
  • app/indexer/core/src/main/java/com/microsoft/openai/samples/indexer/parser

1 file changed

+1
-1
lines changed

app/indexer/core/src/main/java/com/microsoft/openai/samples/indexer/parser/TextSplitter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class TextSplitter {
2020
private boolean verbose;
2121

2222
public TextSplitter(boolean verbose) {
23-
this(true,1000,100,100)
23+
this(true,1000,100,100);
2424
}
2525

2626
public TextSplitter(boolean verbose, int maxSectionLength, int sentenceSearchLimit, int sectionOverlap) {

0 commit comments

Comments
 (0)