Spaces:
Sleeping
Sleeping
Add application file
Browse files
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
|
2 |
import gradio as gr
|
3 |
import random
|
4 |
import time
|
@@ -32,6 +31,7 @@ responses_02_all = [
|
|
32 |
responses_90_all = [
|
33 |
"ความปรารถนาของคุณ จะเป็นจริงในเร็ววัน",
|
34 |
"ความดีของคุณจะทำให้ทุกสิ่งสมหวัง",
|
|
|
35 |
]
|
36 |
|
37 |
# Set all responses
|
@@ -73,7 +73,7 @@ css="""
|
|
73 |
title = """
|
74 |
<center><div style="text-align: center;max-width: 700px;">
|
75 |
<h1>เจ้าแม่กวนอิมให้พร</h1>
|
76 |
-
<h2>"
|
77 |
</div>
|
78 |
</center>
|
79 |
"""
|
@@ -90,13 +90,13 @@ with gr.Blocks(css=css) as demo:
|
|
90 |
gr.HTML(title)
|
91 |
gr.HTML('<center><img src="https://huggingface.co/spaces/jingwora/Guan-Yin-Bless-You/resolve/main/guan-yin-01.jpg" alt="guan-yin-01.jpg" style="width:400px;"></center>')
|
92 |
|
93 |
-
wish = gr.Textbox(label="ความปรารถนา", placeholder="
|
94 |
-
submit_btn = gr.Button("
|
95 |
chatbot = gr.Chatbot([], elem_id="chatbot")
|
96 |
gr.HTML(version)
|
97 |
|
98 |
submit_btn.click(add_text, [chatbot, wish], [chatbot, wish]).then(
|
99 |
bot, chatbot, chatbot)
|
100 |
-
|
101 |
|
102 |
demo.queue(concurrency_count=5, max_size=20).launch(debug=True)
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import random
|
3 |
import time
|
|
|
31 |
responses_90_all = [
|
32 |
"ความปรารถนาของคุณ จะเป็นจริงในเร็ววัน",
|
33 |
"ความดีของคุณจะทำให้ทุกสิ่งสมหวัง",
|
34 |
+
"ความกตัญญูของคุณจะทำให้ทุกอย่างสมหวัง",
|
35 |
]
|
36 |
|
37 |
# Set all responses
|
|
|
73 |
title = """
|
74 |
<center><div style="text-align: center;max-width: 700px;">
|
75 |
<h1>เจ้าแม่กวนอิมให้พร</h1>
|
76 |
+
<h2>"โปรดบอกความปรารถนาของท่าน"</h2>
|
77 |
</div>
|
78 |
</center>
|
79 |
"""
|
|
|
90 |
gr.HTML(title)
|
91 |
gr.HTML('<center><img src="https://huggingface.co/spaces/jingwora/Guan-Yin-Bless-You/resolve/main/guan-yin-01.jpg" alt="guan-yin-01.jpg" style="width:400px;"></center>')
|
92 |
|
93 |
+
wish = gr.Textbox(label="ความปรารถนา", placeholder="บอกความปรารถนาของท่าน")
|
94 |
+
submit_btn = gr.Button("ส่ง")
|
95 |
chatbot = gr.Chatbot([], elem_id="chatbot")
|
96 |
gr.HTML(version)
|
97 |
|
98 |
submit_btn.click(add_text, [chatbot, wish], [chatbot, wish]).then(
|
99 |
bot, chatbot, chatbot)
|
100 |
+
|
101 |
|
102 |
demo.queue(concurrency_count=5, max_size=20).launch(debug=True)
|