README / app.py
GiuliannoV's picture
Switch organization card Space to runnable Gradio config
8c56ef8 verified
raw
history blame contribute delete
773 Bytes
import gradio as gr
DESCRIPTION = """
# Lernex
AI-first learning software for adaptive study, tutoring, and learner-owned materials.
The Lernex Hugging Face organization publishes the Metis model line: compact language models trained and evaluated for learning support, concise reasoning, writing help, tutoring tone, and product research.
## Current releases
- [Metis-1.4 Base](https://huggingface.co/Lernex/Metis-1.4-base)
- [Metis-1.4 Chat](https://huggingface.co/Lernex/Metis-1.4-chat)
- [Metis-1.4 Think](https://huggingface.co/Lernex/Metis-1.4-think)
[Product](https://www.lernex.net) | [Company information](https://www.lernex.net/company)
"""
with gr.Blocks(title="Lernex") as demo:
gr.Markdown(DESCRIPTION)
if __name__ == "__main__":
demo.launch()