the-echo / app.py
frankyy03's picture
Deploy The Echo (MockLLM path): Gradio app + echo package
897d5bd verified
raw
history blame contribute delete
169 Bytes
"""HF Spaces entrypoint. The real app lives in the `echo` package."""
from echo.app import build_demo
demo = build_demo()
if __name__ == "__main__":
demo.launch()