Spaces:
Running
Running
Commit
Β·
42fabaa
1
Parent(s):
37f0f41
Update app.py
Browse files
app.py
CHANGED
@@ -50,13 +50,13 @@ def get_json_file(docs):
|
|
50 |
text_list = []
|
51 |
|
52 |
for file in docs:
|
53 |
-
# Use
|
54 |
-
file_extension =
|
55 |
-
|
56 |
-
if file_extension == '
|
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):
|