parkkyujin commited on
Commit
d40349c
Β·
verified Β·
1 Parent(s): 06c6c1e

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -108,7 +108,7 @@ def load_system():
108
  # 4단계: μž„λ² λ”© 데이터 λ‘œλ“œ (90%) - 이게 핡심!
109
  status_text.text("πŸ” 벑터 μž„λ² λ”© λ‘œλ”© 쀑... (RAG μ‹œμŠ€ν…œ 핡심)")
110
  try:
111
- with open('copy_embeddings.pkl', 'rb') as f:
112
  embeddings_data = pickle.load(f)
113
  embeddings = embeddings_data['embeddings']
114
  total_progress.progress(90)
 
108
  # 4단계: μž„λ² λ”© 데이터 λ‘œλ“œ (90%) - 이게 핡심!
109
  status_text.text("πŸ” 벑터 μž„λ² λ”© λ‘œλ”© 쀑... (RAG μ‹œμŠ€ν…œ 핡심)")
110
  try:
111
+ with open('../copy_embeddings.pkl', 'rb') as f:
112
  embeddings_data = pickle.load(f)
113
  embeddings = embeddings_data['embeddings']
114
  total_progress.progress(90)