""" | |
Smart Auto-Complete Package | |
A context-aware text completion tool with AI integration | |
""" | |
__version__ = "1.0.0" | |
__author__ = "Smart Auto-Complete Team" | |
__email__ = "[email protected]" | |
from .autocomplete import SmartAutoComplete | |
from .api_client import APIClient | |
from .cache import CacheManager | |
from .utils import setup_logging, sanitize_input, extract_context_hints | |
__all__ = [ | |
"SmartAutoComplete", | |
"APIClient", | |
"CacheManager", | |
"setup_logging", | |
"sanitize_input", | |
"extract_context_hints", | |
] | |