freemt
commited on
Commit
·
d686cc9
1
Parent(s):
d562426
Update app
Browse files
app.py
CHANGED
@@ -43,8 +43,8 @@ def process(command):
|
|
43 |
return out
|
44 |
|
45 |
# not is_command: text, do seg_text
|
46 |
-
_ = "\n".join(seg_text(command.strip()))
|
47 |
-
_ = seg_text(command.strip())
|
48 |
return cleandoc(
|
49 |
f"""seg_text output (segmented sents):
|
50 |
{_}
|
|
|
43 |
return out
|
44 |
|
45 |
# not is_command: text, do seg_text
|
46 |
+
_ = "\n\n".join(seg_text(command.strip()))
|
47 |
+
# _ = seg_text(command.strip())
|
48 |
return cleandoc(
|
49 |
f"""seg_text output (segmented sents):
|
50 |
{_}
|