Spaces:
Running
Running
| def breakdown_txt_to_satisfy_token_limit(txt, get_token_fn, limit): | |
| def cut(txt_tocut, must_break_at_empty_line): # ιε½ | |
| if get_token_fn(txt_tocut) <= limit: | |
| return [txt_tocut] | |
| else: | |
| lines = txt_tocut.split('\n') | |
| estimated_line_cut = limit / get_token_fn(txt_tocut) * len(lines) | |
| estimated_line_cut = int(estimated_line_cut) | |
| for cnt in reversed(range(estimated_line_cut)): | |
| if must_break_at_empty_line: | |
| if lines[cnt] != "": continue | |
| print(cnt) | |
| prev = "\n".join(lines[:cnt]) | |
| post = "\n".join(lines[cnt:]) | |
| if get_token_fn(prev) < limit: break | |
| if cnt == 0: | |
| print('what the fuck ?') | |
| raise RuntimeError("εε¨δΈθ‘ζιΏηζζ¬οΌ") | |
| # print(len(post)) | |
| # ε葨ιε½ζ₯ιΎ | |
| result = [prev] | |
| result.extend(cut(post, must_break_at_empty_line)) | |
| return result | |
| try: | |
| return cut(txt, must_break_at_empty_line=True) | |
| except RuntimeError: | |
| return cut(txt, must_break_at_empty_line=False) | |
| def breakdown_txt_to_satisfy_token_limit_for_pdf(txt, get_token_fn, limit): | |
| def cut(txt_tocut, must_break_at_empty_line): # ιε½ | |
| if get_token_fn(txt_tocut) <= limit: | |
| return [txt_tocut] | |
| else: | |
| lines = txt_tocut.split('\n') | |
| estimated_line_cut = limit / get_token_fn(txt_tocut) * len(lines) | |
| estimated_line_cut = int(estimated_line_cut) | |
| for cnt in reversed(range(estimated_line_cut)): | |
| if must_break_at_empty_line: | |
| if lines[cnt] != "": continue | |
| print(cnt) | |
| prev = "\n".join(lines[:cnt]) | |
| post = "\n".join(lines[cnt:]) | |
| if get_token_fn(prev) < limit: break | |
| if cnt == 0: | |
| print('what the fuck ?') | |
| raise RuntimeError("εε¨δΈθ‘ζιΏηζζ¬οΌ") | |
| # print(len(post)) | |
| # ε葨ιε½ζ₯ιΎ | |
| result = [prev] | |
| result.extend(cut(post, must_break_at_empty_line)) | |
| return result | |
| try: | |
| return cut(txt, must_break_at_empty_line=True) | |
| except RuntimeError: | |
| return cut(txt, must_break_at_empty_line=False) | |