vaariis commited on
Commit
0559eba
1 Parent(s): 450ee50

app.py test

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ description = "Story generation with GPT"
3
+ examples = [["An adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
4
+ demo = gr.Interface.load("models/EleutherAI/gpt-neo-1.3B", description=description, examples=examples)
5
+ demo.launch()