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()