Spaces:
Runtime error
Runtime error
Jay Silverman commited on
Commit ·
35a95ea
1
Parent(s): 769f5bf
story completion
Browse files- .gitignore +1 -0
- app.py +8 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.venv
|
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
gr.Interface.load(
|
| 4 |
+
"huggingface/EleutherAI/gpt-j-6B",
|
| 5 |
+
inputs=gr.Textbox(lines=5, label="Start typing your story."),
|
| 6 |
+
title="Goos complete bot.",
|
| 7 |
+
description="This chatbot will complete any story you wish."
|
| 8 |
+
).launch()
|