Files
Extract_reqs/src/__init__.py
2026-02-03 22:48:22 +08:00

21 lines
424 B
Python

# src/__init__.py
"""
SRS 需求文档解析工具包
"""
__version__ = "1.0.0"
__author__ = "SRS Parser Team"
from .document_parser import DocumentParser
from .llm_interface import LLMInterface, QwenLLM
from .requirement_extractor import RequirementExtractor
from .json_generator import JSONGenerator
__all__ = [
'DocumentParser',
'LLMInterface',
'QwenLLM',
'RequirementExtractor',
'JSONGenerator'
]