File size: 259 Bytes
dfddde4
 
4c6d208
 
ad24851
01655b3
 
 
 
0779167
01655b3
427c52f
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

gr.load(
    "meta-llama/Llama-3.2-1B-Instruct",
    src = "models",
    inputs = [gr.Textbox(label = "Input")],
    outputs = [gr.Textbox(label = "Output")],
    title = "Demo",
    examples = [
        ["Hello, Llama."]
    ]
).launch()