Jezia commited on
Commit
9115b35
·
1 Parent(s): d04f7a6

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -12
app.py DELETED
@@ -1,12 +0,0 @@
1
- import gradio as gr
2
- from gradio import inputs
3
- description = "Text generation with a miniature GPT"
4
- interface = gr.Interface.load("huggingface/keras-io/text-generation-miniature-gpt",
5
- title = "Text Generation with a miniature GPT",
6
- inputs = [
7
- gr.inputs.Textbox(lines=2, label="Text"),
8
- ],
9
- description=description,
10
- examples=[["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
11
- )
12
- interface.launch()