File size: 281 Bytes
47760d4
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

component = gr.Textbox(lines=5, label="Text")
api = gr.load("huggingface/gpt2-xl")

demo = gr.Interface(
    fn=lambda x: x[:-50] + api(x[-50:]),
    inputs=component,
    outputs=component,
    title="gpt2-xl",
)

if __name__ == "__main__":
    demo.launch()