File size: 508 Bytes
ed678a4
 
 
c5fb076
 
ed678a4
 
 
 
 
 
 
 
 
793c76e
ed678a4
 
 
 
 
 
 
 
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

#gr.load("models/mistralai/Mistral-7B-v0.1").launch()
import gradio as gr

title = "gpt2-xl"

examples = [
    ["The tower is 324 metres (1,063 ft) tall,"],
    ["The Moon's orbit around Earth has"],
    ["The smooth Borealis basin in the Northern Hemisphere covers 40%"],
]

demo = gr.load(
    "models/mistralai/Mistral-7B-v0.1",
    inputs=gr.Textbox(lines=5, max_lines=6, label="Input Text"),
    title=title,
    examples=examples,
)

if __name__ == "__main__":
    demo.launch()