Spaces:
Sleeping
Sleeping
Commit
ยท
e9d10b3
1
Parent(s):
59308b6
Update app.py
Browse files
app.py
CHANGED
@@ -44,14 +44,17 @@ def get_csv_file(csv_docs):
|
|
44 |
return csv_doc
|
45 |
|
46 |
import json
|
|
|
47 |
|
48 |
def get_json_file(docs):
|
49 |
text_list = []
|
50 |
|
51 |
for file in docs:
|
52 |
-
|
|
|
|
|
53 |
# Read the JSON content from the file
|
54 |
-
json_content = json.
|
55 |
|
56 |
# Extract text from the JSON content
|
57 |
if isinstance(json_content, dict):
|
@@ -63,16 +66,6 @@ def get_json_file(docs):
|
|
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 |
|
|
|
44 |
return csv_doc
|
45 |
|
46 |
import json
|
47 |
+
import mimetypes
|
48 |
|
49 |
def get_json_file(docs):
|
50 |
text_list = []
|
51 |
|
52 |
for file in docs:
|
53 |
+
# Check the file extension instead of 'type'
|
54 |
+
file_extension = mimetypes.guess_extension(file.content_type)
|
55 |
+
if file_extension == '.json':
|
56 |
# Read the JSON content from the file
|
57 |
+
json_content = json.loads(file.getvalue().decode('utf-8'))
|
58 |
|
59 |
# Extract text from the JSON content
|
60 |
if isinstance(json_content, dict):
|
|
|
66 |
|
67 |
return text_list
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
|
71 |
|