chalchitra / backend /__init__.py
ajit3259's picture
feat(backend): sanitize and re-encode all input before the model
f400ee1
Raw
History Blame Contribute Delete
262 Bytes
"""Chalchitra backend: pluggable LLM oracle that matches a moment to films."""
from .oracle import OracleError, interpret
from .providers import get_provider
from .sanitize import InputError
__all__ = ["interpret", "OracleError", "InputError", "get_provider"]