Skip to content

Commit

Permalink
Fix Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
benbrandt committed Jun 8, 2023
1 parent f177958 commit 25f9fc7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions bindings/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,7 @@ splitter = CharacterTextSplitter()

# Maximum number of characters in a chunk. Will fill up the
# chunk until it is somewhere in this range.
chunks = splitter.chunks(
"your document text",
chunk_capacity_start=200,
chunk_capacity_end=1000
)
chunks = splitter.chunks("your document text", chunk_capacity=(200, 1000))
```

## Method
Expand Down

0 comments on commit 25f9fc7

Please sign in to comment.