semantic-chunker-langchain 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: semantic-chunker-langchain
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Token-aware, LangChain-compatible semantic chunker with PDF and layout support
5
5
  License: MIT
6
6
  Author: Prajwal Shivaji Mandale
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "semantic-chunker-langchain"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Token-aware, LangChain-compatible semantic chunker with PDF and layout support"
5
5
  authors = ["Prajwal Shivaji Mandale <prajwal.mandale333@gmail.com>","Sudhnwa Ghorpade <sudhnwa.ghorpade@gmail.com>"]
6
6
  license = "MIT"
@@ -1,7 +1,7 @@
1
1
  # === langchain_semantic_chunker/chunker.py ===
2
2
  from langchain_core.documents import Document
3
3
  from langchain_text_splitters import TextSplitter
4
- from langchain_semantic_chunker.utils import estimate_token_count
4
+ from semantic_chunker_langchain.utils import estimate_token_count
5
5
  import re
6
6
 
7
7
  class SemanticChunker(TextSplitter):