kenken999 commited on
Commit
b053bd1
1 Parent(s): cbc9145
babyagi/prompt.txt CHANGED
@@ -1,2 +1 @@
1
- 承知しました。
2
- 今週中に返信いただければ幸いです。お待ちしています。の質問 についてチャットボットでよりよく対応するプランを日本語で作成して
 
1
+ 【リッチメニュー】取扱商材の質問 についてチャットボットでよりよく対応するプランを日本語で作成して
 
chat_history.db CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:623517b3a31f50fe6b4ea060f17025013650eec8d9cec6bbe17e3b042098fdc9
3
- size 2256896
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9d3b5e88ba1042805247664f20fbaf23369c8aa2ab8437e50d38fd80f01cbae
3
+ size 2269184
controllers/gpt_enginner20240626125910 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 2f6d8e27fc33fa31623c51e6f5a8b61f82cb4020
routers/webhook.py CHANGED
@@ -22,6 +22,7 @@ from prompts.promps import prompt_for_create_system,prompt,get_prompt
22
  from command.line_get_user_profile import get_user_profile
23
  from command.n8n import post_data,post_data_line
24
  import time
 
25
  logger = logging.getLogger(__name__)
26
 
27
  #router = APIRouter()
@@ -252,12 +253,18 @@ async def webhook(request: Request):
252
  error_file = os.path.basename(__file__) # ファイル名を取得
253
  error_line = sys._getframe(1).f_lineno # 行番号を取得
254
  print(f"Error occurred at file {error_file} on line {error_line}: {str(e)}")
 
 
 
 
 
 
255
  #エラー内容の分析
256
  promps,res = prompt_genalate(str(e))
257
  #test_set_lide(text,"a1")
258
  #no_process_file(text, "ai")
259
  custormer_supportpage = "\r\n カスタマーサポートはこちらから \r\n https://bpmboxesscom-46463613.hubspotpagebuilder.com/ja \r\n "
260
- title = f"""エラーが起こりました -+errer file is {error_file} error line is {error_line} {str(e)} 自動修復の開始 """
261
  subtitle = custormer_supportpage+res
262
  link_text = "test"
263
  link_url = "url"
 
22
  from command.line_get_user_profile import get_user_profile
23
  from command.n8n import post_data,post_data_line
24
  import time
25
+ import traceback
26
  logger = logging.getLogger(__name__)
27
 
28
  #router = APIRouter()
 
253
  error_file = os.path.basename(__file__) # ファイル名を取得
254
  error_line = sys._getframe(1).f_lineno # 行番号を取得
255
  print(f"Error occurred at file {error_file} on line {error_line}: {str(e)}")
256
+ # スタックトレースの詳細を取得
257
+ exc_type, exc_value, exc_tb = sys.exc_info()
258
+ tb_info = traceback.extract_tb(exc_tb)[-1] # 最後のトレースバック情報を取得
259
+ error_file = tb_info.filename # エラーが発生したファイル
260
+ error_line = tb_info.lineno # エラーが発生した行
261
+ error_trace = traceback.format_exc() # スタックトレース全体を取得
262
  #エラー内容の分析
263
  promps,res = prompt_genalate(str(e))
264
  #test_set_lide(text,"a1")
265
  #no_process_file(text, "ai")
266
  custormer_supportpage = "\r\n カスタマーサポートはこちらから \r\n https://bpmboxesscom-46463613.hubspotpagebuilder.com/ja \r\n "
267
+ 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)} 自動修復の開始 """
268
  subtitle = custormer_supportpage+res
269
  link_text = "test"
270
  link_url = "url"