TSA / textInput.py
QINGCHE's picture
fix UI bug
2fcd7a2
raw
history blame
337 Bytes
import run
def text_dump_to_json(text,topic_num,max_length):
lines = [x.strip() for x in text.split("\n") if x.strip()!='']
data = {"text":lines}
sentences = run.texClear(lines)
keys, output = run.textToAb(sentences,lines,topic_num,max_length)
return keys, output
def file_dump_to_json(file):
return