evo-gov-copilot-mu / README.md
HemanM's picture
Update README.md
ac284ea verified

A newer version of the Gradio SDK is available: 5.44.1

Upgrade
metadata
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()