namkwonwoo commited on
Commit
e9d10b3
ยท
1 Parent(s): 59308b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -12
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
- if file.type == 'application/json':
 
 
53
  # Read the JSON content from the file
54
- json_content = json.load(file)
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