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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -50,8 +50,9 @@ 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'))
@@ -66,9 +67,6 @@ def get_json_file(docs):
66
 
67
  return text_list
68
 
69
-
70
-
71
-
72
 
73
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.
74
  def get_text_chunks(documents):
 
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'))
 
67
 
68
  return text_list
69
 
 
 
 
70
 
71
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.
72
  def get_text_chunks(documents):