Update app.py
Browse files
app.py
CHANGED
@@ -1,23 +1,21 @@
|
|
1 |
-
import os
|
2 |
-
os.system("pip install gradio --upgrade")
|
3 |
-
|
4 |
import gradio as gr
|
|
|
5 |
from pyjosa.josa import Josa
|
6 |
import random
|
7 |
import json
|
8 |
|
9 |
with open('pokemon.json', 'r') as f:
|
10 |
pokemons = json.load(f)
|
11 |
-
|
12 |
QUESTION_TEMPLATE = {"question": "λ€μ ν¬μΌλͺ¬μ μ΄λ¦μ λκΉμ?![]({img_url})", "answer": "{name}"}
|
13 |
with gr.Blocks() as demo:
|
14 |
quiz_start = gr.State(value=False)
|
15 |
answer = gr.State(value="")
|
16 |
chatbot = gr.Chatbot(bubble_full_width=False)
|
17 |
-
msg = gr.Textbox()
|
18 |
clear = gr.ClearButton([msg, chatbot])
|
19 |
-
|
20 |
-
|
21 |
def respond(message, chat_history):
|
22 |
if not quiz_start.value:
|
23 |
chosen = random.choice(pokemons)
|
@@ -31,21 +29,24 @@ with gr.Blocks() as demo:
|
|
31 |
else:
|
32 |
bot_message = "ν΄μ¦λ₯Ό μμνκ³ μΆμΌμλ©΄, **ν΄μ¦ μμ**μ΄λΌκ³ λ§μν΄μ£ΌμΈμ."
|
33 |
else:
|
34 |
-
trial = Josa.get_full_string(message, "λ")
|
35 |
if answer.value == message:
|
36 |
chosen = random.choice(pokemons)
|
37 |
name = chosen['name']
|
38 |
image_path = chosen['image_path']
|
39 |
answer.value = QUESTION_TEMPLATE['answer'].format(name=name)
|
40 |
img_url = f"https://huggingface.co/spaces/yoon-gu/pokemon/resolve/main/{image_path}"
|
41 |
-
bot_message = "
|
42 |
else:
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
45 |
chat_history.append((message, bot_message))
|
46 |
return "", chat_history
|
47 |
-
|
48 |
msg.submit(respond, [msg, chatbot], [msg, chatbot])
|
49 |
|
50 |
-
demo.
|
51 |
-
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
import pyjosa
|
3 |
from pyjosa.josa import Josa
|
4 |
import random
|
5 |
import json
|
6 |
|
7 |
with open('pokemon.json', 'r') as f:
|
8 |
pokemons = json.load(f)
|
9 |
+
|
10 |
QUESTION_TEMPLATE = {"question": "λ€μ ν¬μΌλͺ¬μ μ΄λ¦μ λκΉμ?![]({img_url})", "answer": "{name}"}
|
11 |
with gr.Blocks() as demo:
|
12 |
quiz_start = gr.State(value=False)
|
13 |
answer = gr.State(value="")
|
14 |
chatbot = gr.Chatbot(bubble_full_width=False)
|
15 |
+
msg = gr.Textbox(value="ν΄μ¦ μμ")
|
16 |
clear = gr.ClearButton([msg, chatbot])
|
17 |
+
|
18 |
+
|
19 |
def respond(message, chat_history):
|
20 |
if not quiz_start.value:
|
21 |
chosen = random.choice(pokemons)
|
|
|
29 |
else:
|
30 |
bot_message = "ν΄μ¦λ₯Ό μμνκ³ μΆμΌμλ©΄, **ν΄μ¦ μμ**μ΄λΌκ³ λ§μν΄μ£ΌμΈμ."
|
31 |
else:
|
|
|
32 |
if answer.value == message:
|
33 |
chosen = random.choice(pokemons)
|
34 |
name = chosen['name']
|
35 |
image_path = chosen['image_path']
|
36 |
answer.value = QUESTION_TEMPLATE['answer'].format(name=name)
|
37 |
img_url = f"https://huggingface.co/spaces/yoon-gu/pokemon/resolve/main/{image_path}"
|
38 |
+
bot_message = "πμ λ΅μ
λλ€! λ€μ λ¬Έμ μ
λλ€." + QUESTION_TEMPLATE["question"].format(img_url=img_url)
|
39 |
else:
|
40 |
+
try:
|
41 |
+
trial = Josa.get_full_string(message, "λ")
|
42 |
+
except pyjosa.exceptions.NotHangleException:
|
43 |
+
trial = f"{message}!?"
|
44 |
+
bot_message = f"***{trial}*** μ λ΅μΌκΉμ? π§ λ€μ νλ² μκ°ν΄λ³΄μΈμ."
|
45 |
+
|
46 |
chat_history.append((message, bot_message))
|
47 |
return "", chat_history
|
48 |
+
|
49 |
msg.submit(respond, [msg, chatbot], [msg, chatbot])
|
50 |
|
51 |
+
demo.queue(concurrency_count=3)
|
52 |
+
demo.launch()
|