m-newhauser commited on
Commit
19eb52f
1 Parent(s): dca838e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,5 +1,9 @@
1
  import gradio as gr
2
 
 
 
 
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
 
1
  import gradio as gr
2
 
3
+ gr.Interface.load("huggingface/EleutherAI/gpt-j-6B",
4
+ inputs=gr.inputs.Textbox(lines=5, label="Input Text") # customizes the input component
5
+ ).launch()
6
+
7
  def greet(name):
8
  return "Hello " + name + "!!"
9