Krishndhola commited on
Commit
94ceda1
·
verified ·
1 Parent(s): 9ab0570

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def placeholder(query):
4
+ return "LifeSync Lite is initializing..."
5
+
6
+ iface = gr.Interface(fn=placeholder,
7
+ inputs="text",
8
+ outputs="text",
9
+ title="LifeSync Lite (Promptless Search)",
10
+ description="Upload snippets, notes, or files—search coming soon.")
11
+ iface.launch()