gemma-sage / app_local.py
neuralworm's picture
refactor: Modularize app structure (app_module.py + thin entry points)
195c86d
Raw
History Blame
260 Bytes
from app_module import get_llm, build_demo
if __name__ == "__main__":
get_llm()
build_demo().launch(
share=True,
server_name="0.0.0.0",
ssl_certfile="cert.pem",
ssl_keyfile="key.pem",
ssl_verify=False
)