diff --git a/troubleshooting/250914_happybell80_IntentAnalyzer_미사용_문제.md b/troubleshooting/250914_happybell80_IntentAnalyzer_미사용_문제.md index 094c2cd..e9c329a 100644 --- a/troubleshooting/250914_happybell80_IntentAnalyzer_미사용_문제.md +++ b/troubleshooting/250914_happybell80_IntentAnalyzer_미사용_문제.md @@ -60,11 +60,10 @@ if event_type == "app_mention" or (event_type == "message" and is_dm) or is_sear # 검색 키워드 포함 시 멘션 없이도 처리 ``` -### 3. 응답 포맷 변환 +### 3. 응답 포맷 변환 ✅ (해결됨) ```python -# slack_handler.py:90 근처 -content = result.get("content", "") -content = content.replace("**", "*") # Slack 포맷 변환 +# slack_handler.py:100-101 (적용 완료) +response_text = response_text.replace("**", "*") # Slack 포맷 변환 ``` ## 교훈