namkwonwoo commited on
Commit
ead8288
Β·
1 Parent(s): 9abc8de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -19
app.py CHANGED
@@ -46,25 +46,23 @@ def get_csv_file(csv_docs):
46
  import json
47
 
48
  def get_json_file(docs):
49
- # 파일 μœ ν˜•μ΄ JSON인지 ν™•μΈν•©λ‹ˆλ‹€.
50
- if docs.type == 'application/json':
51
- # JSON 파일의 λ‚΄μš©μ„ μ½μŠ΅λ‹ˆλ‹€.
52
- json_content = docs.getvalue().decode('utf-8')
53
-
54
- # JSON λ‚΄μš©μ„ νŒŒμ‹±ν•©λ‹ˆλ‹€.
55
- try:
56
- json_data = json.loads(json_content)
57
- except json.JSONDecodeError:
58
- st.error("JSON 파일 λ””μ½”λ”© 쀑 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€.")
59
- return []
60
-
61
- # JSON λ°μ΄ν„°μ—μ„œ ν…μŠ€νŠΈλ₯Ό μΆ”μΆœν•©λ‹ˆλ‹€ (μ‹€μ œ JSON ꡬ쑰에 따라 μˆ˜μ • ν•„μš”).
62
- text_list = []
63
- for item in json_data:
64
- if 'text' in item:
65
- text_list.append(item['text'])
66
-
67
- return text_list
68
 
69
 
70
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.
 
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):
58
+ text = ' '.join(str(value) for value in json_content.values())
59
+ text_list.append(text)
60
+ elif isinstance(json_content, list):
61
+ text = ' '.join(str(item) for item in json_content)
62
+ text_list.append(text)
63
+
64
+ return text_list
65
+
 
 
66
 
67
 
68
  # λ¬Έμ„œλ“€μ„ μ²˜λ¦¬ν•˜μ—¬ ν…μŠ€νŠΈ 청크둜 λ‚˜λˆ„λŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€.