Adrian J W Thompson
commited on
Commit
·
c0008a2
1
Parent(s):
e5baace
added new examples
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ with block:
|
|
62 |
|
63 |
with gr.Row():
|
64 |
gr.Markdown(
|
65 |
-
"<h2><center>The Bot Forge</h2></center><h3> <center
|
66 |
|
67 |
openai_api_key_textbox = gr.Textbox(
|
68 |
placeholder="Paste your OpenAI API key (sk-...)",
|
@@ -76,16 +76,22 @@ with block:
|
|
76 |
with gr.Row():
|
77 |
message = gr.Textbox(
|
78 |
label="What's your question?",
|
79 |
-
placeholder="Ask questions about the
|
80 |
lines=1,
|
81 |
)
|
82 |
submit = gr.Button(value="Send", variant="secondary").style(full_width=False)
|
83 |
|
84 |
gr.Examples(
|
85 |
examples=[
|
86 |
-
"
|
87 |
-
"
|
88 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
],
|
90 |
inputs=message,
|
91 |
)
|
|
|
62 |
|
63 |
with gr.Row():
|
64 |
gr.Markdown(
|
65 |
+
"<h2><center>The Bot Forge</h2></center><h3> <center></center></h3>")
|
66 |
|
67 |
openai_api_key_textbox = gr.Textbox(
|
68 |
placeholder="Paste your OpenAI API key (sk-...)",
|
|
|
76 |
with gr.Row():
|
77 |
message = gr.Textbox(
|
78 |
label="What's your question?",
|
79 |
+
placeholder="Ask questions about the conversational AI and The Bot Forge",
|
80 |
lines=1,
|
81 |
)
|
82 |
submit = gr.Button(value="Send", variant="secondary").style(full_width=False)
|
83 |
|
84 |
gr.Examples(
|
85 |
examples=[
|
86 |
+
"what is a chatbot",
|
87 |
+
"what is conversation design",
|
88 |
+
"does the bot forge have expertise in this",
|
89 |
+
"how much does it cost to create a chatbot",
|
90 |
+
"what are some of the channels you can deploy to?",
|
91 |
+
"explain nlu",
|
92 |
+
"does the bot forge have experience using dialogflow",
|
93 |
+
"can a chatbot be used as a sales assistant"
|
94 |
+
|
95 |
],
|
96 |
inputs=message,
|
97 |
)
|