File size: 379 Bytes
8e874f5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """
Text2SQL pipeline for QAFD-RAG.
Usage:
from src.text2sql.runner import load_instance, get_kg_dir, kg_exists, run_instance
from src.text2sql.prompt_parser import parse_qafd_clusters
"""
from .runner import (
load_instances,
load_instance,
get_schema_path,
get_kg_dir,
kg_exists,
run_instance,
)
from .prompt_parser import parse_qafd_clusters
|