File size: 773 Bytes
8c56ef8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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()