diff options
| author | 2025-10-29 22:30:10 +0800 | |
|---|---|---|
| committer | 2025-10-29 22:30:10 +0800 | |
| commit | 75ef2a5677eddc14917c738815982c60c197e43c (patch) | |
| tree | 1aea25d83e3eb95261d3baff8bb704a6f37785fb /src/conventionalrp/__init__.py | |
| parent | dcaf3a04f343f9f01191056fff9eb43f04d2b45f (diff) | |
| download | conventional_role_play-75ef2a5677eddc14917c738815982c60c197e43c.tar.gz conventional_role_play-75ef2a5677eddc14917c738815982c60c197e43c.zip | |
feat: add AutoParser class for automated content classification
Diffstat (limited to 'src/conventionalrp/__init__.py')
| -rw-r--r-- | src/conventionalrp/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conventionalrp/__init__.py b/src/conventionalrp/__init__.py index ab4b17d..d5ff537 100644 --- a/src/conventionalrp/__init__.py +++ b/src/conventionalrp/__init__.py @@ -6,7 +6,7 @@ import sys from importlib.metadata import version from . import _core -from .core import Parser, Processor, Rule, RuleEngine +from .core import Parser, Processor, Rule, RuleEngine, AutoParser from .utils import ( setup_logging, get_logger, @@ -23,6 +23,7 @@ __all__ = [ "Processor", "Rule", "RuleEngine", + "AutoParser", "setup_logging", "get_logger", "ConventionalRPError", |
