Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
Step 1: Minimal app to verify the Space builds and runs.
|
3 |
+
(We add retrieval, indexing, and Evo in the next steps.)
|
4 |
+
"""
|
5 |
+
|
6 |
+
import gradio as gr # [Objective] Gradio powers the UI
|
7 |
+
|
8 |
+
with gr.Blocks(title="Evo Government Copilot (MU) - Setup Check") as demo:
|
9 |
+
gr.Markdown(
|
10 |
+
"""
|
11 |
+
# 🇲🇺 Evo Government Copilot (Mauritius) — Setup Check
|
12 |
+
✅ Space is running.
|
13 |
+
Next: we'll add data ingestion, retrieval (FAISS), and Evo synthesis step-by-step.
|
14 |
+
"""
|
15 |
+
)
|
16 |
+
|
17 |
+
demo.launch()
|