-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from bhavnicksm/development
[Fix] Unify dataclasses under a types.py for ease
- Loading branch information
Showing
18 changed files
with
321 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
from .base import BaseChunker, Chunk | ||
"""Module for chunkers.""" | ||
|
||
from .base import BaseChunker | ||
from .sdpm import SDPMChunker | ||
from .semantic import SemanticChunk, SemanticChunker, SemanticSentence | ||
from .sentence import Sentence, SentenceChunk, SentenceChunker | ||
from .semantic import SemanticChunker | ||
from .sentence import SentenceChunker | ||
from .token import TokenChunker | ||
from .word import WordChunker | ||
|
||
__all__ = [ | ||
"Chunk", | ||
"BaseChunker", | ||
"TokenChunker", | ||
"WordChunker", | ||
"Sentence", | ||
"SentenceChunk", | ||
"SentenceChunker", | ||
"SemanticSentence", | ||
"SemanticChunk", | ||
"SemanticChunker", | ||
"SDPMChunker", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.