Prithvi-Raj-Dixit's picture
Update app.py
e6385b9 verified
Raw
History Blame Contribute Delete
492 Bytes
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()