lucylol commited on
Commit
d37ee62
·
1 Parent(s): 2859ffe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -7
app.py CHANGED
@@ -1,11 +1,15 @@
1
  import gradio as gr
2
- from gradio.mix import Parallel
3
 
4
- title="my First Text Generator"
5
- description="input text."
6
 
7
- model1=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
8
- model2=gr.Interface.load("huggingface/gpt2")
9
- model3=gr.Interface.load("huggingface/EleutherAI/gpt-neo-125M")
10
 
11
- gr.Parallel(model1, model2, model3, title=title, description=description).launch()
 
 
 
 
 
 
 
 
1
  import gradio as gr
 
2
 
3
+ api = gr.interface.load("huggigngface/EleutherAI/gpt-neo-2.7B")
 
4
 
5
+ def complete_with_gpt(text):
6
+ return text [:-50] + api(text[-50:])
 
7
 
8
+ with gr.Blocks() as demo:
9
+ with gr.Row():
10
+ textbox = gr.Textbox(placeholder="Type here and press enter...", lines=8)
11
+ with gr.Column():
12
+ btn gr.Butto("Generate")
13
+
14
+ btn.click(complete_with_gpt, textbox, textbox)
15
+ demo.launch()