Initial commit

This commit is contained in:
2026-05-12 09:41:56 +08:00
commit 572283e101
936 changed files with 133949 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
"""
简化的Text2SQL框架
基于RAGFlow方案实现的Text2SQL框架
"""
__version__ = "1.0.0"
__author__ = "RAG Team"
from .knowledge_base import SimpleKnowledgeBase
from .sql_generator import SimpleSQLGenerator
from .text2sql_agent import SimpleText2SQLAgent
__all__ = [
"SimpleKnowledgeBase",
"SimpleSQLGenerator",
"SimpleText2SQLAgent"
]