瀏覽代碼

fix: is readable - zero division error (#383)

cachho 2 年之前
父節點
當前提交
65011a67d4
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      embedchain/utils.py

+ 6 - 1
embedchain/utils.py

@@ -1,3 +1,4 @@
+import logging
 import re
 import string
 
@@ -43,7 +44,11 @@ def is_readable(s):
     :param s: string
     :return: True if the string is more than 95% printable.
     """
-    printable_ratio = sum(c in string.printable for c in s) / len(s)
+    try:
+        printable_ratio = sum(c in string.printable for c in s) / len(s)
+    except ZeroDivisionError:
+        logging.warning("Empty string processed as unreadable")
+        printable_ratio = 0
     return printable_ratio > 0.95  # 95% of characters are printable