Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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()
|