tonyassi commited on
Commit
3408293
·
1 Parent(s): faf5465

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -2,4 +2,6 @@ import gradio as gr
2
 
3
 
4
 
5
- gr.Interface.load("models/tonyassi/mgm", inputs=gr.Textbox(label="Input Text")).launch()
 
 
 
2
 
3
 
4
 
5
+ gr.Interface.load("huggingface/EleutherAI/gpt-j-6B",
6
+ inputs=gr.Textbox(lines=5, label="Input Text") # customizes the input component
7
+ ).launch()