hyonee commited on
Commit
1d93e3a
β€’
1 Parent(s): b114f08
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -84,8 +84,9 @@ def get_vectorstore(text_chunks):
84
  # OpenAI μž„λ² λ”© λͺ¨λΈμ„ λ‘œλ“œν•©λ‹ˆλ‹€. (Embedding models - Ada v2)
85
 
86
  embeddings = OpenAIEmbeddings()
 
87
 
88
- # ν…μŠ€νŠΈ 청크가 λΉ„μ–΄ μžˆλŠ” κ²½μš°μ— λŒ€ν•œ 처리
89
  if not text_chunks or not text_chunks[0]:
90
  return None
91
 
 
84
  # OpenAI μž„λ² λ”© λͺ¨λΈμ„ λ‘œλ“œν•©λ‹ˆλ‹€. (Embedding models - Ada v2)
85
 
86
  embeddings = OpenAIEmbeddings()
87
+ print("Embeddings:", embeddings)
88
 
89
+ # ν…μŠ€νŠΈ 청크가 λΉ„μ–΄ μžˆλŠ” κ²½μš°μ— λŒ€ν•œ 처리
90
  if not text_chunks or not text_chunks[0]:
91
  return None
92