Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaMichlin committed Jul 21, 2023
1 parent a71b928 commit 3a80903
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ text_splitter = CharacterTextSplitter(
chunk_size = 1000,
chunk_overlap = 200,
length_function = len,
is_separator_regex = False,
)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ text_splitter = RecursiveCharacterTextSplitter(
chunk_size = 100,
chunk_overlap = 20,
length_function = len,
is_separator_regex = False,
)
```

Expand Down

0 comments on commit 3a80903

Please sign in to comment.