namkwonwoo commited on
Commit
59308b6
Β·
1 Parent(s): ead8288

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py CHANGED
@@ -63,6 +63,18 @@ def get_json_file(docs):
63
 
64
  return text_list
65
 
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
 
68
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.
 
63
 
64
  return text_list
65
 
66
+ def get_vectorstore(text_chunks):
67
+ # OpenAI μž„λ² λ”© λͺ¨λΈμ„ λ‘œλ“œν•©λ‹ˆλ‹€. (Embedding models - Ada v2)
68
+ embeddings = OpenAIEmbeddings()
69
+
70
+ # Check if there are any text chunks before creating the vector store
71
+ if not text_chunks:
72
+ return None
73
+
74
+ vectorstore = FAISS.from_documents(text_chunks, embeddings) # FAISS 벑터 μŠ€ν† μ–΄λ₯Ό μƒμ„±ν•©λ‹ˆλ‹€.
75
+ return vectorstore # μƒμ„±λœ 벑터 μŠ€ν† μ–΄λ₯Ό λ°˜ν™˜ν•©λ‹ˆλ‹€.
76
+
77
+
78
 
79
 
80
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.