Update app.py
Browse files
app.py
CHANGED
@@ -236,7 +236,7 @@ def create_app():
|
|
236 |
with gr.Blocks() as demo:
|
237 |
chatbot = gr.Chatbot()
|
238 |
chat_state = gr.State({"history": [], "stage": "EMPATHY", "turn": 0, "hints": []})
|
239 |
-
txt = gr.Textbox(show_label=False, placeholder="
|
240 |
|
241 |
# outputs에 txt를 추가 + 콜백에서 세 번째 값을 ""로 리턴
|
242 |
txt.submit(
|
|
|
236 |
with gr.Blocks() as demo:
|
237 |
chatbot = gr.Chatbot()
|
238 |
chat_state = gr.State({"history": [], "stage": "EMPATHY", "turn": 0, "hints": []})
|
239 |
+
txt = gr.Textbox(show_label=False, placeholder="혹시 잠을 이루지 못하고 계신가요? 당신의 이야기를 듣고 싶어요! 걱정이 있으시면 편하게 말씀해주세요 :D")
|
240 |
|
241 |
# outputs에 txt를 추가 + 콜백에서 세 번째 값을 ""로 리턴
|
242 |
txt.submit(
|