soojeongcrystal commited on
Commit
ad078b6
·
verified ·
1 Parent(s): 076fda8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -99,6 +99,9 @@ with st.sidebar:
99
  if not api_key:
100
  api_key = os.environ.get("ANTHROPIC_API_KEY")
101
 
 
 
 
102
  # 불용어 설정
103
  stop_words_input = st.text_area("불용어 목록 (쉼표로 구분)", ', '.join(default_stop_words))
104
  stop_words = [word.strip() for word in stop_words_input.split(',') if word.strip()]
 
99
  if not api_key:
100
  api_key = os.environ.get("ANTHROPIC_API_KEY")
101
 
102
+ # API 키에 대한 추가 설명
103
+ st.caption("Claude API가 있으면 토픽 종합 해석까지 가능합니다.")
104
+
105
  # 불용어 설정
106
  stop_words_input = st.text_area("불용어 목록 (쉼표로 구분)", ', '.join(default_stop_words))
107
  stop_words = [word.strip() for word in stop_words_input.split(',') if word.strip()]