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