File size: 510 Bytes
07f8c0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Step 1: Minimal app to verify the Space builds and runs.
(We add retrieval, indexing, and Evo in the next steps.)
"""

import gradio as gr  # [Objective] Gradio powers the UI

with gr.Blocks(title="Evo Government Copilot (MU) - Setup Check") as demo:
    gr.Markdown(
        """
        # 🇲🇺 Evo Government Copilot (Mauritius) — Setup Check
        ✅ Space is running.  
        Next: we'll add data ingestion, retrieval (FAISS), and Evo synthesis step-by-step.
        """
    )

demo.launch()