Spaces:
Sleeping
Sleeping
File size: 752 Bytes
fd4418a ac284ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
---
title: Evo Gov Copilot Mu
emoji: π»
colorFrom: purple
colorTo: red
sdk: gradio
sdk_version: 5.42.0
app_file: app.py
pinned: false
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
"""
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()
|