please
Browse files
app.py
CHANGED
@@ -84,8 +84,19 @@ def get_vectorstore(text_chunks):
|
|
84 |
# OpenAI ์๋ฒ ๋ฉ ๋ชจ๋ธ์ ๋ก๋ํฉ๋๋ค. (Embedding models - Ada v2)
|
85 |
|
86 |
embeddings = OpenAIEmbeddings()
|
87 |
-
vectorstore = FAISS.from_documents(text_chunks, embeddings) # FAISS ๋ฒกํฐ ์คํ ์ด๋ฅผ ์์ฑํฉ๋๋ค.
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
return vectorstore # ์์ฑ๋ ๋ฒกํฐ ์คํ ์ด๋ฅผ ๋ฐํํฉ๋๋ค.
|
90 |
|
91 |
|
|
|
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 |
+
|
92 |
+
# ์ฒซ ๋ฒ์งธ ํ
์คํธ ์ฒญํฌ์ ๊ธธ์ด ํ์ธ
|
93 |
+
first_chunk_length = len(text_chunks[0])
|
94 |
+
|
95 |
+
# ์ฒซ ๋ฒ์งธ ํ
์คํธ ์ฒญํฌ๊ฐ ๋น์ด ์๋ ๊ฒฝ์ฐ์ ๋ํ ์ฒ๋ฆฌ
|
96 |
+
if first_chunk_length == 0:
|
97 |
+
return None
|
98 |
+
|
99 |
+
vectorstore = FAISS.from_documents(text_chunks, embeddings) # FAISS ๋ฒกํฐ ์คํ ์ด๋ฅผ ์์ฑํฉ๋๋ค.
|
100 |
return vectorstore # ์์ฑ๋ ๋ฒกํฐ ์คํ ์ด๋ฅผ ๋ฐํํฉ๋๋ค.
|
101 |
|
102 |
|