Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,8 @@ if st.button("ํ๊ฐ ์์ฑ"):
|
|
67 |
sentences = []
|
68 |
for line in result_lines:
|
69 |
if line.strip().startswith('("'):
|
70 |
-
|
|
|
71 |
sentences.append(sentence)
|
72 |
|
73 |
# ๋ฌธ์ฅ์ ๋ผ๋์ค ๋ฒํผ์ผ๋ก ํ์
|
|
|
67 |
sentences = []
|
68 |
for line in result_lines:
|
69 |
if line.strip().startswith('("'):
|
70 |
+
# ("๋ก ์์ํ๋ ๋ถ๋ถ์ ์ ๊ฑฐํ๊ณ ๋ฌธ์ฅ๋ง ์ถ์ถ
|
71 |
+
sentence = line.split('",')[0].lstrip('("').strip()
|
72 |
sentences.append(sentence)
|
73 |
|
74 |
# ๋ฌธ์ฅ์ ๋ผ๋์ค ๋ฒํผ์ผ๋ก ํ์
|