Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,6 @@ with gr.Blocks() as demo:
|
|
19 |
def respond(message, chat_history, request: gr.Request):
|
20 |
print(request.client.host)
|
21 |
if "퀴즈 시작" == message:
|
22 |
-
bot_message = "퀴즈를 시작합니다.\n" + QUESTION_TEMPLATE["question"].format(img_url=img_url)
|
23 |
quiz_start.value = True
|
24 |
if not quiz_start.value:
|
25 |
chosen = random.choice(pokemons)
|
|
|
19 |
def respond(message, chat_history, request: gr.Request):
|
20 |
print(request.client.host)
|
21 |
if "퀴즈 시작" == message:
|
|
|
22 |
quiz_start.value = True
|
23 |
if not quiz_start.value:
|
24 |
chosen = random.choice(pokemons)
|