Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,6 @@ import gradio as gr
|
|
4 |
def text_display(text):
|
5 |
return text
|
6 |
|
7 |
-
demo = gr.Interface(
|
8 |
#alternatively use gr.TextBox()
|
9 |
demo.launch()
|
|
|
4 |
def text_display(text):
|
5 |
return text
|
6 |
|
7 |
+
demo = gr.Interface("huggingface/EleutherAI/gpt-j-6B", inputs=gr.Textbox(lines=5, label="Input Text"), "text")
|
8 |
#alternatively use gr.TextBox()
|
9 |
demo.launch()
|