Update app.py
Browse files
app.py
CHANGED
@@ -26,10 +26,11 @@ demo = gr.Interface(
|
|
26 |
fn=generate,
|
27 |
inputs=[gr.Textbox(lines=8, placeholder="Paragraph Here..."),"number"],
|
28 |
outputs="text",title="Text generation app with GPT2",
|
29 |
-
description="This is a text generation app, it can prove useful when you want to generate texts. All you need to do is copy and paste a short prompt
|
30 |
examples=[
|
31 |
["During its construction, the Eiffel Tower surpassed the Washington Monument to become the tallest man-made structure in"
|
32 |
-
],["
|
|
|
33 |
],
|
34 |
)
|
35 |
demo.launch()
|
|
|
26 |
fn=generate,
|
27 |
inputs=[gr.Textbox(lines=8, placeholder="Paragraph Here..."),"number"],
|
28 |
outputs="text",title="Text generation app with GPT2",
|
29 |
+
description="This is a text generation app, it can prove useful when you want to generate texts. All you need to do is copy and paste a short prompt. The potential of this app is limitless especially for writers, you are only limited by your prompt engineering skills",
|
30 |
examples=[
|
31 |
["During its construction, the Eiffel Tower surpassed the Washington Monument to become the tallest man-made structure in"
|
32 |
+
],["Question: What hurdles or challenges are you facing as you move through your career journey? Please share a specific example?
|
33 |
+
answer:I have been"]
|
34 |
],
|
35 |
)
|
36 |
demo.launch()
|