aiqtech commited on
Commit
0d029b9
ยท
verified ยท
1 Parent(s): 9490797

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -462,6 +462,7 @@ class LLMCollaborativeSystem:
462
 
463
  if self.test_mode:
464
  logger.info(f"ํ…Œ์ŠคํŠธ ๋ชจ๋“œ ์ŠคํŠธ๋ฆฌ๋ฐ - Role: {role}")
 
465
  test_responses = {
466
  "supervisor_initial": """์ด ์งˆ๋ฌธ์— ๋Œ€ํ•œ ๊ฑฐ์‹œ์  ๋ถ„์„์„ ์ œ์‹œํ•˜๊ฒ ์Šต๋‹ˆ๋‹ค.
467
 
@@ -1078,7 +1079,7 @@ kpi_metrics = {
1078
 
1079
  # ์ž๋™ ๋ณด๊ณ ์„œ ์ƒ์„ฑ
1080
  def generate_weekly_report():
1081
- report = f"""
1082
  # ์ฃผ๊ฐ„ ์„ฑ๊ณผ ๋ณด๊ณ ์„œ - {datetime.now().strftime('%Y-%m-%d')}
1083
 
1084
  ## ํ•ต์‹ฌ ์„ฑ๊ณผ
@@ -1092,7 +1093,7 @@ def generate_weekly_report():
1092
 
1093
  ## ๋‹ค์Œ ์ฃผ ๊ณ„ํš
1094
  {get_next_week_plan()}
1095
- """
1096
  return report
1097
  ```
1098
 
 
462
 
463
  if self.test_mode:
464
  logger.info(f"ํ…Œ์ŠคํŠธ ๋ชจ๋“œ ์ŠคํŠธ๋ฆฌ๋ฐ - Role: {role}")
465
+ # test_responses ๋”•์…”๋„ˆ๋ฆฌ๋ฅผ ๋ฉ”์„œ๋“œ ๋‚ด๋ถ€์— ์ •์˜
466
  test_responses = {
467
  "supervisor_initial": """์ด ์งˆ๋ฌธ์— ๋Œ€ํ•œ ๊ฑฐ์‹œ์  ๋ถ„์„์„ ์ œ์‹œํ•˜๊ฒ ์Šต๋‹ˆ๋‹ค.
468
 
 
1079
 
1080
  # ์ž๋™ ๋ณด๊ณ ์„œ ์ƒ์„ฑ
1081
  def generate_weekly_report():
1082
+ report = f\"\"\"
1083
  # ์ฃผ๊ฐ„ ์„ฑ๊ณผ ๋ณด๊ณ ์„œ - {datetime.now().strftime('%Y-%m-%d')}
1084
 
1085
  ## ํ•ต์‹ฌ ์„ฑ๊ณผ
 
1093
 
1094
  ## ๋‹ค์Œ ์ฃผ ๊ณ„ํš
1095
  {get_next_week_plan()}
1096
+ \"\"\"
1097
  return report
1098
  ```
1099