Spaces:
Running
on
Zero
Running
on
Zero
df
Browse files- routers/webhook.py +0 -25
routers/webhook.py
CHANGED
@@ -175,31 +175,6 @@ async def webhook(request: Request):
|
|
175 |
return {"status": "success", "response_content": response.text}#, response.status_code
|
176 |
|
177 |
except Exception as e:
|
178 |
-
error_file = os.path.basename(__file__) # ファイル名を取得
|
179 |
-
error_line = sys._getframe(1).f_lineno # 行番号を取得
|
180 |
-
print(f"Error occurred at file {error_file} on line {error_line}: {str(e)}")
|
181 |
-
# スタックトレースの詳細を取得
|
182 |
-
exc_type, exc_value, exc_tb = sys.exc_info()
|
183 |
-
tb_info = traceback.extract_tb(exc_tb)[-1] # 最後のトレースバック情報を取得
|
184 |
-
error_file = tb_info.filename # エラーが発生したファイル
|
185 |
-
error_line = tb_info.lineno # エラーが発生した行
|
186 |
-
error_trace = traceback.format_exc() # スタックトレース全体を取得
|
187 |
-
#エラー内容の分析
|
188 |
-
promps,res = prompt_genalate(str(e))
|
189 |
-
#test_set_lide(text,"a1")
|
190 |
-
#no_process_file(text, "ai")
|
191 |
-
custormer_supportpage = "\r\n カスタマーサポートはこちらから \r\n https://bpmboxesscom-46463613.hubspotpagebuilder.com/ja \r\n "
|
192 |
-
title = f"""Error occurred at file {error_file} on line {error_line}: {str(e)}\n{error_trace}エラーが起こりました -+errer file is {error_file} error line is {error_line} {str(e)} 自動修復の開始 """
|
193 |
-
subtitle = custormer_supportpage+res
|
194 |
-
link_text = "test"
|
195 |
-
link_url = "url"
|
196 |
-
#test_set_lide(subtitle, text)
|
197 |
-
logger.error(res)
|
198 |
-
#send error to google chat
|
199 |
-
###
|
200 |
-
#send_google_chat_card_thread(webhook_url, title, subtitle, link_text, link_url,thread_name)
|
201 |
-
|
202 |
-
logger.error("Error: %s", str(e))
|
203 |
#raise するとシステムとまるのでアンコメント
|
204 |
#raise HTTPException(status_code=500, detail=str(e))
|
205 |
return {"status": "success", "response_content": str(e)}#, response.status_code
|
|
|
175 |
return {"status": "success", "response_content": response.text}#, response.status_code
|
176 |
|
177 |
except Exception as e:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
#raise するとシステムとまるのでアンコメント
|
179 |
#raise HTTPException(status_code=500, detail=str(e))
|
180 |
return {"status": "success", "response_content": str(e)}#, response.status_code
|