import gradio as gr with gr.Blocks() as demo: gr.Markdown(""" # LLM & GenAI Information Space Welcome! This Space provides clear and simple explanations about **Large Language Models (LLMs)** and **Generative AI**. --- ## What are LLMs? LLMs are AI models trained on massive text datasets. They can understand and generate human-like text. --- ## Popular LLMs - GPT-4 / GPT-5 – OpenAI - LLaMA 3 – Meta - Gemini – Google - Claude – Anthropic --- """) demo.launch()