HemanM commited on
Commit
ac284ea
·
verified ·
1 Parent(s): 07f8c0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -10,3 +10,24 @@ pinned: false
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
13
+
14
+
15
+
16
+ """
17
+ Step 1: Minimal app to verify the Space builds and runs.
18
+ (We add retrieval, indexing, and Evo in the next steps.)
19
+ """
20
+
21
+ import gradio as gr # [Objective] Gradio powers the UI
22
+
23
+ with gr.Blocks(title="Evo Government Copilot (MU) - Setup Check") as demo:
24
+ gr.Markdown(
25
+ """
26
+ # 🇲🇺 Evo Government Copilot (Mauritius) — Setup Check
27
+ ✅ Space is running.
28
+ Next: we'll add data ingestion, retrieval (FAISS), and Evo synthesis step-by-step.
29
+ """
30
+ )
31
+
32
+ demo.launch()
33
+