Spaces:
Sleeping
Sleeping
Samuel L Meyers commited on
Commit ·
3478db7
1
Parent(s): 4b213c1
Fix text
Browse files- code/app.py +6 -6
code/app.py
CHANGED
|
@@ -44,13 +44,13 @@ def main():
|
|
| 44 |
|
| 45 |
with gr.Blocks() as demo:
|
| 46 |
with gr.Row(variant="panel"):
|
| 47 |
-
gr.Markdown("## Talk to
|
| 48 |
with gr.Row(variant="panel"):
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
|
| 55 |
m3b_talk_btn.click(m3b_talk, inputs=m3b_talk_input, outputs=m3b_talk_output, api_name="talk_m3b")
|
| 56 |
|
|
|
|
| 44 |
|
| 45 |
with gr.Blocks() as demo:
|
| 46 |
with gr.Row(variant="panel"):
|
| 47 |
+
gr.Markdown("## Talk to Starling 7B\n")
|
| 48 |
with gr.Row(variant="panel"):
|
| 49 |
+
m3b_talk_input = gr.Textbox(label="Message", placeholder="Type something here...")
|
| 50 |
+
with gr.Row(variant="panel"):
|
| 51 |
+
m3b_talk_output = gr.Textbox()
|
| 52 |
+
with gr.Row(variant="panel"):
|
| 53 |
+
m3b_talk_btn = gr.Button("Send")
|
| 54 |
|
| 55 |
m3b_talk_btn.click(m3b_talk, inputs=m3b_talk_input, outputs=m3b_talk_output, api_name="talk_m3b")
|
| 56 |
|