LangChain - Text Splitting
Given this code snippet using langchain semantic chunking:
chunker = SemanticChunker(chunk_size=100, chunk_overlap=20)
chunks = chunker.chunk_text('This is a simple test sentence to check chunking behavior.')
What will be the approximate number of chunks generated?