File size: 235 Bytes
c7248e3
1cbb88d
 
c7248e3
 
1cbb88d
fa08d8e
c7248e3
 
1
2
3
4
5
6
7
8
9
#display a text
import gradio as gr

def text_display(text):
    return text

demo = gr.Interface("huggingface/EleutherAI/gpt-j-6B",  inputs=gr.Textbox(lines=5, label="Input Text"), "text")
#alternatively use gr.TextBox()
demo.launch()