Fix/dont print the entire text when data type is text (#605)
This commit is contained in:
@@ -284,7 +284,10 @@ class EmbedChain(JSONSerializable):
|
|||||||
data_dict = {id: value for id, value in data_dict.items() if id not in existing_ids}
|
data_dict = {id: value for id, value in data_dict.items() if id not in existing_ids}
|
||||||
|
|
||||||
if not data_dict:
|
if not data_dict:
|
||||||
print(f"All data from {src} already exists in the database.")
|
src_copy = src
|
||||||
|
if len(src_copy) > 50:
|
||||||
|
src_copy = src[:50] + "..."
|
||||||
|
print(f"All data from {src_copy} already exists in the database.")
|
||||||
# Make sure to return a matching return type
|
# Make sure to return a matching return type
|
||||||
return [], [], [], 0
|
return [], [], [], 0
|
||||||
|
|
||||||
@@ -418,7 +421,10 @@ class EmbedChain(JSONSerializable):
|
|||||||
data_dict = {id: value for id, value in data_dict.items() if id not in existing_ids}
|
data_dict = {id: value for id, value in data_dict.items() if id not in existing_ids}
|
||||||
|
|
||||||
if not data_dict:
|
if not data_dict:
|
||||||
print(f"All data from {src} already exists in the database.")
|
src_copy = src
|
||||||
|
if len(src_copy) > 50:
|
||||||
|
src_copy = src[:50] + "..."
|
||||||
|
print(f"All data from {src_copy} already exists in the database.")
|
||||||
# Make sure to return a matching return type
|
# Make sure to return a matching return type
|
||||||
return [], [], [], 0
|
return [], [], [], 0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user