dryymatt commited on
Commit
0cfb1ae
·
verified ·
1 Parent(s): 4031472

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Litehat Wizard Chat — Gradio Space Entry Point
3
+
4
+ Run:
5
+ python app.py
6
+
7
+ Or deploy to Hugging Face Spaces for instant access.
8
+ """
9
+
10
+ import sys
11
+ import os
12
+
13
+ # Add parent to path for local development
14
+ sys.path.insert(0, os.path.dirname(__file__))
15
+
16
+ from litehat.chat_interface import create_chat_app
17
+
18
+ # Create the Gradio app
19
+ app = create_chat_app()
20
+
21
+ if __name__ == "__main__":
22
+ app.launch(server_name="0.0.0.0", server_port=7860)