# /app/components/Footer.py import gradio as gr from html import escape def build_footer(version: str = "0.1.0") -> gr.HTML: """ Render a simple footer with version info. Appears at the bottom of the Gradio Blocks UI. """ ver = escape(version or "") html = f"""

AgenticCore Chatbot — v{ver}
Built with using Gradio
""" return gr.HTML(value=html)