Spaces:
Build error
Build error
derek-thomas
commited on
Commit
·
e5be074
1
Parent(s):
f54d972
Removing Cache
Browse files
app.py
CHANGED
@@ -114,7 +114,7 @@ with gr.Blocks() as demo:
|
|
114 |
)
|
115 |
txt_btn = gr.Button(value="Submit text", scale=1)
|
116 |
|
117 |
-
gr.Examples(examples, txt
|
118 |
prompt_html = gr.HTML()
|
119 |
# Turn off interactivity while generating if you click
|
120 |
txt_msg = txt_btn.click(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
|
@@ -150,7 +150,7 @@ with gr.Blocks() as demo:
|
|
150 |
)
|
151 |
hyde_txt_btn = gr.Button(value="Submit text", scale=1)
|
152 |
|
153 |
-
gr.Examples(examples, hyde_txt
|
154 |
hyde_prompt_html = gr.HTML()
|
155 |
# Turn off interactivity while generating if you click
|
156 |
hyde_txt_msg = hyde_txt_btn.click(add_text, [hyde_chatbot, hyde_txt], [hyde_chatbot, hyde_txt],
|
|
|
114 |
)
|
115 |
txt_btn = gr.Button(value="Submit text", scale=1)
|
116 |
|
117 |
+
gr.Examples(examples, txt)
|
118 |
prompt_html = gr.HTML()
|
119 |
# Turn off interactivity while generating if you click
|
120 |
txt_msg = txt_btn.click(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
|
|
|
150 |
)
|
151 |
hyde_txt_btn = gr.Button(value="Submit text", scale=1)
|
152 |
|
153 |
+
gr.Examples(examples, hyde_txt)
|
154 |
hyde_prompt_html = gr.HTML()
|
155 |
# Turn off interactivity while generating if you click
|
156 |
hyde_txt_msg = hyde_txt_btn.click(add_text, [hyde_chatbot, hyde_txt], [hyde_chatbot, hyde_txt],
|