Spaces:
Running
on
Zero
Running
on
Zero
test
Browse files- routers/webhook.py +2 -2
routers/webhook.py
CHANGED
@@ -154,14 +154,14 @@ async def webhook(request: Request):
|
|
154 |
#########################################################################
|
155 |
print("mesage is ------------------------------"+message)
|
156 |
#if any(keyword in message for keyword in ["買取方法", "取扱商品", "本日の金価格"]):
|
157 |
-
if "金価格" in
|
158 |
print("start reply -----------------------------------------------"+reply_token)
|
159 |
first_line = text.split('\n')[0]
|
160 |
# test_prompt
|
161 |
line_bot_api = LineBotApi(ChannelAccessToken)
|
162 |
line_bot_api.reply_message(
|
163 |
reply_token,
|
164 |
-
TextSendMessage(text="買取方法、取扱商品、または本日の金価格に関連するメッセージです 固定メッセージです クレジットは消費しません")
|
165 |
)
|
166 |
print("End replay -----------------------------------------------")
|
167 |
exit
|
|
|
154 |
#########################################################################
|
155 |
print("mesage is ------------------------------"+message)
|
156 |
#if any(keyword in message for keyword in ["買取方法", "取扱商品", "本日の金価格"]):
|
157 |
+
if "金価格" in message_text or "買取方法" in message_text:
|
158 |
print("start reply -----------------------------------------------"+reply_token)
|
159 |
first_line = text.split('\n')[0]
|
160 |
# test_prompt
|
161 |
line_bot_api = LineBotApi(ChannelAccessToken)
|
162 |
line_bot_api.reply_message(
|
163 |
reply_token,
|
164 |
+
TextSendMessage(text=message_text+"買取方法、取扱商品、または本日の金価格に関連するメッセージです 固定メッセージです クレジットは消費しません")
|
165 |
)
|
166 |
print("End replay -----------------------------------------------")
|
167 |
exit
|