namkwonwoo commited on
Commit
42fabaa
Β·
1 Parent(s): 37f0f41

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -50,13 +50,13 @@ def get_json_file(docs):
50
  text_list = []
51
 
52
  for file in docs:
53
- # Use mimetypes to guess the type based on the file name
54
- file_extension = mimetypes.guess_extension(file.name)
55
-
56
- if file_extension == '.json':
57
  # Read the JSON content from the file
58
  json_content = json.loads(file.getvalue().decode('utf-8'))
59
-
60
  # Extract text from the JSON content
61
  if isinstance(json_content, dict):
62
  text = ' '.join(str(value) for value in json_content.values())
@@ -67,6 +67,7 @@ def get_json_file(docs):
67
 
68
  return text_list
69
 
 
70
 
71
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.
72
  def get_text_chunks(documents):
 
50
  text_list = []
51
 
52
  for file in docs:
53
+ # Use file extension to identify JSON files
54
+ file_extension = file.name.split('.')[-1].lower()
55
+
56
+ if file_extension == 'json':
57
  # Read the JSON content from the file
58
  json_content = json.loads(file.getvalue().decode('utf-8'))
59
+
60
  # Extract text from the JSON content
61
  if isinstance(json_content, dict):
62
  text = ' '.join(str(value) for value in json_content.values())
 
67
 
68
  return text_list
69
 
70
+
71
 
72
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.
73
  def get_text_chunks(documents):